1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
#include "../lib/libcompat.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <check.h>
#include <assert.h>
#include "check_check.h"
TestResult **tr_fail_array;
TestResult **tr_all_array;
#define MAXSTR 300
typedef struct {
const char *tcname;
int failure_type;
const char *msg;
} master_test_t;
#define SIG_STR_LEN 128
static char signal_11_str[SIG_STR_LEN];
static char signal_11_8_str[SIG_STR_LEN];
static char signal_8_str[SIG_STR_LEN];
/* FIXME: all these line numbers are kind of hard to maintain */
static master_test_t master_tests[] = {
{ "Simple Tests", CK_FAILURE, "Failure expected" },
{ "Simple Tests", CK_ERROR, "Early exit with return value 1" },
{ "Simple Tests", CK_PASS, "Passed" },
{ "Simple Tests", CK_FAILURE, "This test should fail" },
{ "Simple Tests", CK_PASS, "Passed" },
{ "Simple Tests", CK_FAILURE, "This test should fail" },
{ "Simple Tests", CK_FAILURE, "Assertion '2 == 3' failed" },
{ "Simple Tests", CK_FAILURE, "Assertion '4 == 5' failed" },
{ "Simple Tests", CK_FAILURE, "Failure '2 != 3' occured" },
{ "Simple Tests", CK_FAILURE, "Failure '4 != 5' occured" },
{ "Simple Tests", CK_FAILURE, "3 != 4" },
{ "Simple Tests", CK_FAILURE, "5 != 6" },
{ "Simple Tests", CK_FAILURE, "7 == 7" },
{ "Simple Tests", CK_FAILURE, "Failed" },
{ "Simple Tests", CK_FAILURE, "Failed" },
{ "Simple Tests", CK_FAILURE, "Failure expected" },
{ "Simple Tests", CK_FAILURE, "Failed" },
{ "Simple Tests", CK_FAILURE, "Assertion 'x == y' failed" },
{ "Simple Tests", CK_FAILURE, "Assertion '0' failed" },
{ "Simple Tests", CK_FAILURE, "Assertion 'x==y' failed: x==3, y==4" },
{ "Simple Tests", CK_FAILURE, "Assertion 'x!=y' failed: x==3, y==3" },
{ "Simple Tests", CK_FAILURE, "Assertion '\"test1\"==s' failed: \"test1\"==\"test1\", s==\"test2\"" },
{ "Simple Tests", CK_FAILURE, "Assertion 't!=s' failed: t==\"test2\", s==\"test2\"" },
{ "Signal Tests", CK_ERROR, signal_11_str },
{ "Signal Tests", CK_PASS, "Passed" },
{ "Signal Tests", CK_ERROR, signal_11_8_str },
{ "Signal Tests", CK_FAILURE, "Early exit with return value 0" },
{ "Signal Tests", CK_FAILURE, "Early exit with return value 1" },
{ "Signal Tests", CK_ERROR, signal_8_str },
{ "Signal Tests", CK_ERROR, signal_8_str },
#if TIMEOUT_TESTS_ENABLED
#if HAVE_WORKING_SETENV
{ "Environment Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "Environment Timeout Tests", CK_PASS, "Passed" },
{ "Environment Timeout Tests", CK_PASS, "Passed" },
{ "Environment Timeout Tests", CK_ERROR, "Test timeout expired" },
#endif
{ "Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "Timeout Tests", CK_PASS, "Passed" },
{ "Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "User Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "User Timeout Tests", CK_PASS, "Passed" },
{ "User Timeout Tests", CK_PASS, "Passed" },
{ "User Timeout Tests", CK_ERROR, "Test timeout expired" },
/* Timeout tests are run twice , see check_check_sub.c:make_sub_suite() */
{ "Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "Timeout Tests", CK_PASS, "Passed" },
{ "Timeout Tests", CK_ERROR, "Test timeout expired" },
{ "Timeout Tests", CK_ERROR, "Test timeout expired" },
#if HAVE_WORKING_SETENV
{ "Environment Timeout Scaling Tests", CK_ERROR, "Test timeout expired" },
{ "Environment Timeout Scaling Tests", CK_PASS, "Passed" },
{ "Environment Timeout Scaling Tests", CK_PASS, "Passed" },
{ "Environment Timeout Scaling Tests", CK_ERROR, "Test timeout expired" },
{ "Timeout Scaling Tests", CK_ERROR, "Test timeout expired" },
{ "Timeout Scaling Tests", CK_PASS, "Passed" },
{ "Timeout Scaling Tests", CK_PASS, "Passed" },
{ "Timeout Scaling Tests", CK_ERROR, "Test timeout expired" },
{ "User Timeout Scaling Tests", CK_ERROR, "Test timeout expired" },
{ "User Timeout Scaling Tests", CK_PASS, "Passed" },
{ "User Timeout Scaling Tests", CK_PASS, "Passed" },
{ "User Timeout Scaling Tests", CK_ERROR, "Test timeout expired" },
#endif
#endif
{ "Limit Tests", CK_ERROR, "Early exit with return value 1" },
{ "Limit Tests", CK_FAILURE, "Completed properly" },
{ "Limit Tests", CK_FAILURE, "Completed properly" },
{ "Msg and fork Tests", CK_PASS, "Passed" },
{ "Msg and fork Tests", CK_FAILURE, "Expected fail" },
{ "Msg and fork Tests", CK_PASS, "Passed" },
{ "Msg and fork Tests", CK_FAILURE, "Expected fail" },
{ "Msg and fork Tests", CK_PASS, "Passed" },
{ "Msg and fork Tests", CK_FAILURE, "Expected fail" },
{ "Core", CK_PASS, "Passed" },
{ "Core", CK_FAILURE, "We failed" }
};
static int nr_of_master_tests = sizeof master_tests /sizeof master_tests[0];
int master_tests_lineno[sizeof master_tests /sizeof master_tests[0]];
START_TEST(test_check_nfailures)
{
int i;
int failed = 0;
for (i = 0; i < nr_of_master_tests; i++) {
if (master_tests[i].failure_type != CK_PASS) {
failed++;
}
}
fail_unless (sub_nfailed == failed,
"Unexpected number of failures received, %d, expected %d.",
sub_nfailed, failed);
}
END_TEST
START_TEST(test_check_ntests_run)
{
fail_unless (sub_ntests == nr_of_master_tests,
"Unexpected number of tests run, %d.", sub_ntests);
}
END_TEST
START_TEST(test_check_failure_msgs)
{
int i;
int passed = 0;
const char *got_msg;
const char *expected_msg;
TestResult *tr;
for (i = 0; i < sub_ntests; i++) {
if (master_tests[i].failure_type == CK_PASS) {
passed++;
continue;
}
fail_if(i - passed > sub_nfailed, NULL);
tr = tr_fail_array[i - passed];
fail_unless(tr != NULL, NULL);
got_msg = tr_msg(tr);
expected_msg = master_tests[i].msg;
if (strcmp(got_msg, expected_msg) != 0) {
char *emsg = malloc(MAXSTR);
snprintf(emsg, MAXSTR,"For test %d: Expected %s, got %s",
i, expected_msg, got_msg);
fail(emsg);
free(emsg);
}
}
}
END_TEST
START_TEST(test_check_failure_lnos)
{
int i;
int line_no;
int passed = 0;
TestResult *tr;
for (i = 0; i < sub_ntests; i++) {
if (master_tests[i].failure_type == CK_PASS) {
passed++;
continue;
}
fail_if(i - passed > sub_nfailed, NULL);
tr = tr_fail_array[i - passed];
fail_unless(tr != NULL, NULL);
line_no = master_tests_lineno[i];
if (line_no > 0 && tr_lno(tr) != line_no) {
char *emsg = malloc(MAXSTR);
snprintf(emsg, MAXSTR, "For test %d: Expected lno %d, got %d",
i, line_no, tr_lno(tr));
fail(emsg);
free(emsg);
}
}
}
END_TEST
START_TEST(test_check_failure_ftypes)
{
int i;
int passed = 0;
TestResult *tr;
for (i = 0; i < sub_ntests; i++) {
if (master_tests[i].failure_type == CK_PASS) {
passed++;
continue;
}
fail_if(i - passed > sub_nfailed, NULL);
tr = tr_fail_array[i - passed];
fail_unless(tr != NULL, NULL);
fail_unless(master_tests[i].failure_type == tr_rtype(tr),
"Failure type wrong for test %d", i);
}
}
END_TEST
START_TEST(test_check_failure_lfiles)
{
int i;
for (i = 0; i < sub_nfailed; i++) {
TestResult *tr = tr_fail_array[i];
fail_unless(tr != NULL, NULL);
fail_unless(tr_lfile(tr) != NULL, "Bad file name for test %d", i);
fail_unless(strstr(tr_lfile(tr), "check_check_sub.c") != 0,
"Bad file name for test %d", i);
}
}
END_TEST
START_TEST(test_check_tcnames)
{
const char *tcname;
tcname = tr_tcname(tr_all_array[_i]);
if (strcmp(tcname, master_tests[_i].tcname) != 0) {
char *emsg = malloc (MAXSTR);
snprintf(emsg, MAXSTR,"Expected %s, got %s",
master_tests[_i].tcname, tcname);
fail(emsg);
free(emsg);
}
}
END_TEST
START_TEST(test_check_all_msgs)
{
const char *msg;
msg = tr_msg(tr_all_array[_i]);
if (strcmp(msg, master_tests[_i].msg) != 0) {
char *emsg = malloc (MAXSTR);
snprintf(emsg, MAXSTR,"Expected %s, got %s",
master_tests[_i].msg, msg);
fail(emsg);
free(emsg);
}
}
END_TEST
START_TEST(test_check_all_ftypes)
{
fail_unless(master_tests[_i].failure_type == tr_rtype(tr_all_array[_i]),
"Failure type wrong for test %d", _i);
}
END_TEST
int test_fixture_val = 0;
static void test_fixture_setup(void)
{
test_fixture_val = 1;
}
START_TEST(test_setup)
{
fail_unless (test_fixture_val == 1,
"Value not setup or changed across tests correctly");
test_fixture_val = 2;
}
END_TEST
static void test_fixture_teardown (void)
{
test_fixture_val = 3;
}
START_TEST(test_teardown)
{
fail_unless (test_fixture_val == 3,
"Value not changed correctly in teardown");
}
END_TEST
Suite *make_master_suite (void)
{
Suite *s;
TCase *tc_core;
TCase *tc_fixture;
TCase *tc_post_teardown;
s = suite_create("Master");
tc_core = tcase_create("Core Tests");
tc_fixture = tcase_create("Fixture Setup Tests");
suite_add_tcase (s, tc_core);
tcase_add_test (tc_core, test_check_nfailures);
tcase_add_test (tc_core, test_check_ntests_run);
tcase_add_test (tc_core, test_check_failure_msgs);
tcase_add_test (tc_core, test_check_failure_ftypes);
tcase_add_test (tc_core, test_check_failure_lnos);
tcase_add_test (tc_core, test_check_failure_lfiles);
tcase_add_loop_test (tc_core, test_check_tcnames, 0, sub_ntests);
tcase_add_loop_test (tc_core, test_check_all_msgs, 0, sub_ntests);
tcase_add_loop_test (tc_core, test_check_all_ftypes, 0, nr_of_master_tests);
tcase_add_unchecked_fixture(tc_fixture, test_fixture_setup,
test_fixture_teardown);
/* add the test 3 times to make sure we adequately test
preservation of fixture values across tests, regardless
of the order in which tests are added to the test case */
tcase_add_test (tc_fixture, test_setup);
tcase_add_test (tc_fixture, test_setup);
tcase_add_test (tc_fixture, test_setup);
suite_add_tcase (s, tc_fixture);
tc_post_teardown = tcase_create ("Fixture Teardown Tests");
tcase_add_test (tc_post_teardown, test_teardown);
suite_add_tcase (s, tc_post_teardown);
return s;
}
static void init_signal_strings(void)
{
/* strsignal may overwrite the string returned by the previous call */
char *s8 = strdup(strsignal(8));
char *s11 = strdup(strsignal(11));
int n;
n = snprintf(signal_11_str, SIG_STR_LEN, "Received signal 11 (%s)", s11);
assert(n < SIG_STR_LEN);
n = snprintf(signal_11_8_str, SIG_STR_LEN, "Received signal 11 (%s), expected 8 (%s)", s11, s8);
assert(n < SIG_STR_LEN);
n = snprintf(signal_8_str, SIG_STR_LEN, "Received signal 8 (%s)", s8);
assert(n < SIG_STR_LEN);
free(s8);
free(s11);
}
void setup (void)
{
Suite *s = make_sub_suite();
SRunner *sr = srunner_create(s);
init_master_tests_lineno();
init_signal_strings();
srunner_add_suite(sr, make_sub2_suite());
srunner_run_all(sr, CK_VERBOSE);
tr_fail_array = srunner_failures(sr);
tr_all_array = srunner_results(sr);
sub_nfailed = srunner_ntests_failed(sr);
sub_ntests = srunner_ntests_run(sr);
}
void cleanup (void)
{
}
|