Skip to content

Commit

Permalink
Merge r1877441 from apr/trunk:
Browse files Browse the repository at this point in the history
* Added support for recording skipped test cases.

git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.7.x@1920386 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Ivan Zhakov committed Sep 2, 2024
1 parent 37741d8 commit c58276b
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 7 deletions.
66 changes: 59 additions & 7 deletions test/abts.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ static void end_suite(abts_suite *suite)
fprintf(stdout, "\b");
fflush(stdout);
}
if (last->skipped > 0) {
fprintf(stdout, "SKIPPED %d of %d\n", last->skipped, last->num_test);
fflush(stdout);
}
if (last->failed == 0) {
fprintf(stdout, "SUCCESS\n");
fflush(stdout);
Expand All @@ -102,6 +106,7 @@ abts_suite *abts_add_suite(abts_suite *suite, const char *suite_name_full)
subsuite = malloc(sizeof(*subsuite));
subsuite->num_test = 0;
subsuite->failed = 0;
subsuite->skipped = 0;
subsuite->next = NULL;
/* suite_name_full may be an absolute path depending on __FILE__
* expansion */
Expand Down Expand Up @@ -164,6 +169,7 @@ void abts_run_test(abts_suite *ts, test_func f, void *value)

tc = malloc(sizeof(*tc));
tc->failed = 0;
tc->skipped = 0;
tc->suite = ss;

ss->num_test++;
Expand All @@ -174,38 +180,72 @@ void abts_run_test(abts_suite *ts, test_func f, void *value)
if (tc->failed) {
ss->failed++;
}
if (tc->skipped) {
ss->skipped++;
}
free(tc);
}

static void report_summary(const char *kind_header,
const char *name_header,
const char *percent_header)
{
fprintf(stdout, "%-15s\t\tTotal\t%s\t%s\n",
kind_header, name_header, percent_header);
fprintf(stdout, "===================================================\n");
}

static int report(abts_suite *suite)
{
int count = 0;
int failed_count = 0;
int skipped_count = 0;
sub_suite *dptr;

if (suite && suite->tail &&!suite->tail->not_run) {
end_suite(suite);
}

for (dptr = suite->head; dptr; dptr = dptr->next) {
count += dptr->failed;
failed_count += dptr->failed;
}

for (dptr = suite->head; dptr; dptr = dptr->next) {
skipped_count += dptr->skipped;
}

if (list_tests) {
return 0;
}

if (count == 0) {
/* Report skipped tests */
if (skipped_count > 0) {
dptr = suite->head;
report_summary("Skipped Tests", "Skip", "Skipped %");
while (dptr != NULL) {
if (dptr->skipped != 0) {
float percent = ((float)dptr->skipped / (float)dptr->num_test);
fprintf(stdout, "%-15s\t\t%5d\t%4d\t%8.2f%%\n", dptr->name,
dptr->num_test, dptr->skipped, percent * 100);
}
dptr = dptr->next;
}
}

if (failed_count == 0) {
printf("All tests passed.\n");
return 0;
}

/* Report failed tests */
dptr = suite->head;
fprintf(stdout, "%-15s\t\tTotal\tFail\tFailed %%\n", "Failed Tests");
fprintf(stdout, "===================================================\n");
if (skipped_count > 0) {
fprintf(stdout, "\n");
}
report_summary("Failed Tests", "Fail", " Failed %");
while (dptr != NULL) {
if (dptr->failed != 0) {
float percent = ((float)dptr->failed / (float)dptr->num_test);
fprintf(stdout, "%-15s\t\t%5d\t%4d\t%6.2f%%\n", dptr->name,
fprintf(stdout, "%-15s\t\t%5d\t%4d\t%8.2f%%\n", dptr->name,
dptr->num_test, dptr->failed, percent * 100);
}
dptr = dptr->next;
Expand Down Expand Up @@ -328,7 +368,19 @@ void abts_fail(abts_case *tc, const char *message, int lineno)
fflush(stderr);
}
}


void abts_skip(abts_case *tc, const char *message, int lineno)
{
update_status();
if (tc->skipped) return;

tc->skipped = TRUE;
if (verbose) {
fprintf(stderr, "\bSKIP: Line %d: %s\n", lineno, message);
fflush(stderr);
}
}

void abts_assert(abts_case *tc, const char *message, int condition, int lineno)
{
update_status();
Expand Down
10 changes: 10 additions & 0 deletions test/abts.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ struct sub_suite {
const char *name;
int num_test;
int failed;
int skipped;
int not_run;
int not_impl;
struct sub_suite *next;
Expand All @@ -57,6 +58,7 @@ typedef struct abts_suite abts_suite;

struct abts_case {
int failed;
int skipped;
sub_suite *suite;
};
typedef struct abts_case abts_case;
Expand All @@ -78,6 +80,7 @@ void abts_ptr_notnull(abts_case *tc, const void *ptr, int lineno);
void abts_ptr_equal(abts_case *tc, const void *expected, const void *actual, int lineno);
void abts_true(abts_case *tc, int condition, int lineno);
void abts_fail(abts_case *tc, const char *message, int lineno);
void abts_skip(abts_case *tc, const char *message, int lineno);
void abts_not_impl(abts_case *tc, const char *message, int lineno);
void abts_assert(abts_case *tc, const char *message, int condition, int lineno);

Expand All @@ -93,6 +96,13 @@ void abts_assert(abts_case *tc, const char *message, int condition, int lineno);
#define ABTS_NOT_IMPL(a, b) abts_not_impl(a, b, __LINE__);
#define ABTS_ASSERT(a, b, c) abts_assert(a, b, c, __LINE__);

/* When skipping tests, make a reference to the test data parameter
to avoid unused variable warnings. */
#define ABTS_SKIP(tc, data, msg) do { \
((void)(data)); \
abts_skip((tc), (msg), __LINE__); \
} while (0)

#endif

#ifdef __cplusplus
Expand Down

0 comments on commit c58276b

Please sign in to comment.