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
|
/*
* The MIT License (MIT)
*
* Copyright © 2015-2016 Franklin "Snaipe" Mathieu <http://snai.pe/>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "criterion/stats.h"
#include "criterion/options.h"
#include "compat/posix.h"
#include "compat/strtok.h"
#include "compat/time.h"
#include "config.h"
#include "common.h"
static void print_prelude(FILE *f, struct criterion_global_stats *stats)
{
fprintf(f, "TAP version 13\n1..%" CRI_PRIuSIZE "\n", stats->nb_tests);
fprintf(f, "# Criterion %s\n", VERSION);
}
static void print_pre_suite(FILE *f, struct criterion_suite_stats *stats)
{
fprintf(f, "#\n# Running %" CRI_PRIuSIZE " tests from %s\n",
stats->nb_tests,
stats->suite->name);
}
static void print_test_normal(FILE *f, struct criterion_test_stats *stats)
{
const char *format = "%s - %s::%s %s (%3.2fs)\n";
if (!criterion_options.measure_time) {
format = "%s - %s::%s %s\n";
}
fprintf(f, format,
stats->test_status == CR_STATUS_FAILED ? "not ok" : "ok",
stats->test->category,
stats->test->name,
DEF(stats->test->data->description, ""),
stats->elapsed_time);
if (stats->test_status == CR_STATUS_FAILED) {
fprintf(f, " ---\n");
fprintf(f, " assertions: %" CRI_PRIuSIZE "\n",
(size_t) (stats->passed_asserts + stats->failed_asserts));
fprintf(f, " failures:\n");
for (struct criterion_assert_stats *asrt = stats->asserts; asrt; asrt = asrt->next) {
if (!asrt->passed) {
char *dup = strdup(*asrt->message ? asrt->message : "");
char *saveptr = NULL;
char *line = strtok_r(dup, "\n", &saveptr);
bool sf = criterion_options.short_filename;
fprintf(f, " - %s:%u: |+\n Assertion failed: %s\n",
sf ? basename_compat(asrt->file) : asrt->file,
asrt->line,
line);
while ((line = strtok_r(NULL, "\n", &saveptr)))
fprintf(f, " %s\n", line);
free(dup);
}
}
fprintf(f, " ...\n");
}
}
static void print_test_crashed(FILE *f, struct criterion_test_stats *stats)
{
bool sf = criterion_options.short_filename;
fprintf(f, "not ok - %s::%s unexpected signal after %s:%u\n",
stats->test->category,
stats->test->name,
sf ? basename_compat(stats->file) : stats->file,
stats->progress);
}
static void print_test_timeout(FILE *f, struct criterion_test_stats *stats)
{
fprintf(f, "not ok - %s::%s timed out (%3.2fs)\n",
stats->test->category,
stats->test->name,
stats->elapsed_time);
}
static void print_test(FILE *f, struct criterion_test_stats *ts)
{
if (ts->test_status == CR_STATUS_SKIPPED) {
fprintf(f, "ok - %s::%s %s # SKIP %s\n",
ts->test->category,
ts->test->name,
DEF(ts->test->data->description, ""),
ts->message ? ts->message : "test was skipped");
} else if (ts->crashed) {
print_test_crashed(f, ts);
} else if (ts->timed_out) {
print_test_timeout(f, ts);
} else {
print_test_normal(f, ts);
}
}
void tap_report(FILE *f, struct criterion_global_stats *stats)
{
print_prelude(f, stats);
for (struct criterion_suite_stats *ss = stats->suites; ss; ss = ss->next) {
print_pre_suite(f, ss);
for (struct criterion_test_stats *ts = ss->tests; ts; ts = ts->next)
print_test(f, ts);
}
}
|