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
|
#include <cgreen/reporter.h>
#include <cgreen/breadcrumb.h>
#include <stdio.h>
#include "xml_reporter.h"
static void xml_reporter_start_suite(TestReporter *reporter, const char *name, int count) {
printf("<suite name=\"%s\">\n", name);
reporter_start_suite(reporter, name, count);
}
static void xml_reporter_start_test(TestReporter *reporter, const char *name) {
printf("<test name=\"%s\">\n", name);
reporter_start_test(reporter, name);
}
static void xml_show_fail(TestReporter *reporter, const char *file, int line, const char *message, va_list arguments) {
printf("<fail>\n");
printf("\t<message>");
vprintf(message, arguments);
printf("</message>\n");
printf("\t<location file=\"%s\" line=\"%d\"/>\n", file, line);
printf("</fail>\n");
}
static void xml_show_incomplete(TestReporter *reporter, const char *file, int line, const char *message, va_list arguments) {
printf("<fail>\n");
printf("\t<message>Failed to complete</message>\n");
printf("</fail>\n");
}
static void xml_reporter_finish_test(TestReporter *reporter, const char *filename, int line, const char *message) {
reporter_finish_test(reporter, filename, line, message);
printf("</test>\n");
}
static void xml_reporter_finish_suite(TestReporter *reporter, const char *filename, int line) {
reporter_finish_suite(reporter, filename, line);
printf("</suite>\n");
}
TestReporter *create_xml_reporter() {
TestReporter *reporter = create_reporter();
reporter->start_suite = &xml_reporter_start_suite;
reporter->start_test = &xml_reporter_start_test;
reporter->show_fail = &xml_show_fail;
reporter->show_incomplete = &xml_show_incomplete;
reporter->finish_test = &xml_reporter_finish_test;
reporter->finish_suite = &xml_reporter_finish_suite;
return reporter;
}
|