2020-05-29 14:26:04 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-08-30 08:54:33 +00:00
|
|
|
// -*- Mode: C++ -*-
|
|
|
|
//
|
2023-01-01 17:14:26 +00:00
|
|
|
// Copyright (C) 2013-2023 Red Hat, Inc.
|
2018-08-30 08:54:33 +00:00
|
|
|
//
|
|
|
|
// Author: Dodji Seketeli
|
|
|
|
|
|
|
|
/// @file
|
|
|
|
///
|
|
|
|
/// This test harness program runs a diff between the output of
|
|
|
|
/// abinilint on an ini file and a reference expected output.
|
|
|
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "abg-tools-utils.h"
|
|
|
|
#include "test-utils.h"
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::cerr;
|
2021-11-11 05:53:42 +00:00
|
|
|
using abigail::tests::emit_test_status_and_update_counters;
|
|
|
|
using abigail::tests::emit_test_summary;
|
2018-08-30 08:54:33 +00:00
|
|
|
|
|
|
|
/// This is an aggregate that specifies where a test shall get its
|
|
|
|
/// input from and where it shall write its ouput to.
|
|
|
|
struct InOutSpec
|
|
|
|
{
|
|
|
|
// Where to read the ini file from, with abinilint.
|
|
|
|
const char* in_ini_path;
|
|
|
|
// Where to get the expected output from abinilint.
|
|
|
|
const char* in_reference_output_path;
|
|
|
|
// Where to emit the output of abinilint to.
|
|
|
|
const char* out_init_path;
|
|
|
|
// The options to use with abinilint.
|
|
|
|
const char* abinilint_options;
|
|
|
|
}; // end struct InOutSpec;
|
|
|
|
|
|
|
|
// An array of test specifications listing the ini files to read and
|
|
|
|
// their expected output.
|
|
|
|
InOutSpec in_out_specs[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
"data/test-ini/test01-equal-in-property-string.abignore",
|
|
|
|
"data/test-ini/test01-equal-in-property-string.abignore.expected",
|
|
|
|
"output/test-ini/test01-equal-in-property-string.abignore",
|
|
|
|
""
|
2023-04-27 08:40:10 +00:00
|
|
|
},
|
2023-04-26 20:19:35 +00:00
|
|
|
{
|
|
|
|
"data/test-ini/test02-buggy-property-value.abignore",
|
|
|
|
"data/test-ini/test02-buggy-property-value.abignore.expected",
|
|
|
|
"output/test-ini/test02-buggy-property-value.abignore",
|
|
|
|
""
|
|
|
|
}
|
2018-08-30 08:54:33 +00:00
|
|
|
,
|
|
|
|
// This one must always remain the last one.
|
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// @return the test source directory.
|
|
|
|
static string
|
|
|
|
get_test_src_dir()
|
|
|
|
{
|
|
|
|
using abigail::tests::get_src_dir;
|
|
|
|
return string(get_src_dir()) + "/tests";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @return the test build directory.
|
|
|
|
static string
|
|
|
|
get_test_build_dir()
|
|
|
|
{
|
|
|
|
using abigail::tests::get_build_dir;
|
|
|
|
return string(get_build_dir()) + "/tests";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @return the tools directory under the build directory;
|
|
|
|
static string
|
|
|
|
get_tools_build_dir()
|
|
|
|
{
|
|
|
|
using abigail::tests::get_build_dir;
|
|
|
|
return string(get_build_dir()) + "/tools";
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
using abigail::tests::get_build_dir;
|
|
|
|
using abigail::tools_utils::ensure_parent_dir_created;
|
|
|
|
using abigail::tools_utils::abidiff_status;
|
|
|
|
|
2021-11-11 05:53:42 +00:00
|
|
|
unsigned int total_count = 0, passed_count = 0, failed_count = 0;
|
|
|
|
|
|
|
|
string in_ini_path, in_reference_output_path, out_ini_path, cmd, diff_cmd;
|
2018-08-30 08:54:33 +00:00
|
|
|
|
|
|
|
for (InOutSpec *s = in_out_specs; s->in_ini_path; ++s)
|
|
|
|
{
|
2021-11-11 05:53:42 +00:00
|
|
|
bool is_ok = true;
|
2018-08-30 08:54:33 +00:00
|
|
|
in_ini_path = get_test_src_dir() + "/" + s->in_ini_path;
|
|
|
|
in_reference_output_path =
|
|
|
|
get_test_src_dir() + "/" + s->in_reference_output_path;
|
|
|
|
out_ini_path = get_test_build_dir() + "/" + s->out_init_path;
|
|
|
|
|
|
|
|
if (!ensure_parent_dir_created(out_ini_path))
|
|
|
|
{
|
|
|
|
cerr << "could not create parent directory for "
|
|
|
|
<< out_ini_path;
|
|
|
|
is_ok = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = get_tools_build_dir() + "/abinilint";
|
|
|
|
if (s->abinilint_options && strcmp(s->abinilint_options, ""))
|
|
|
|
cmd += " " + string(s->abinilint_options);
|
|
|
|
|
|
|
|
cmd += " " + in_ini_path + " > " + out_ini_path;
|
|
|
|
|
|
|
|
bool cmd_is_ok = true;
|
|
|
|
int code = system(cmd.c_str());
|
|
|
|
if (!WIFEXITED(code))
|
|
|
|
cmd_is_ok = false;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
abigail::tools_utils::abidiff_status status =
|
|
|
|
static_cast<abidiff_status>(WEXITSTATUS(code));
|
|
|
|
if (abigail::tools_utils::abidiff_status_has_error(status))
|
|
|
|
cmd_is_ok = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd_is_ok)
|
|
|
|
{
|
2021-11-11 05:53:42 +00:00
|
|
|
diff_cmd = "diff -u " + in_reference_output_path + " " + out_ini_path;
|
|
|
|
if (system(diff_cmd.c_str()))
|
2018-08-30 08:54:33 +00:00
|
|
|
is_ok = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
is_ok = false;
|
2021-11-11 05:53:42 +00:00
|
|
|
|
|
|
|
emit_test_status_and_update_counters(is_ok, cmd, passed_count,
|
|
|
|
failed_count, total_count);
|
2018-08-30 08:54:33 +00:00
|
|
|
}
|
|
|
|
|
2021-11-11 05:53:42 +00:00
|
|
|
emit_test_summary(total_count, passed_count, failed_count);
|
|
|
|
|
|
|
|
return failed_count;
|
2018-08-30 08:54:33 +00:00
|
|
|
}
|