X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Ftest.c;h=c186bc5c11627eac5be5564061ad3b3e218ca3d3;hp=967b53b2a28cb99305375291f3cc5a13f40c7fe3;hb=8be4cad726760fbc18b83b1ae8af3790dcf31c81;hpb=06ae818deffa84ec4bc1308051ef411845dd4ce5 diff --git a/src/test.c b/src/test.c index 967b53b..c186bc5 100644 --- a/src/test.c +++ b/src/test.c @@ -1,9 +1,12 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2009 Index Data * See the file LICENSE for details. - * - * $Id: test.c,v 1.3 2006-01-29 21:59:13 adam Exp $ */ + +/** \file test.c + \brief Unit Test for YAZ +*/ + #if HAVE_CONFIG_H #include #endif @@ -11,25 +14,31 @@ #include #include #include +#if HAVE_UNISTSD_H +#include +#endif #include +#include static FILE *test_fout = 0; /* can't use '= stdout' on some systems */ static int test_total = 0; static int test_failed = 0; +static int test_todo = 0; static int test_verbose = 1; -static char *test_prog = 0; +static const char *test_prog = 0; +static int log_tests = 0; -static FILE *get_file() +static FILE *get_file(void) { if (test_fout) return test_fout; return stdout; } -static char *progname(char *argv0) +static const char *progname(const char *argv0) { - char *cp = strrchr(argv0, '/'); + const char *cp = strrchr(argv0, '/'); if (cp) return cp+1; cp = strrchr(argv0, '\\'); @@ -75,6 +84,7 @@ void yaz_check_init1(int *argc_p, char ***argv_p) " 1=Report+Summary only if tests fail.\n" " 2=Report failures. Print summary always\n" " 3=Report + summary always\n" + " 4=Report + summary + extra prints from tests\n" ); exit(0); } @@ -96,20 +106,48 @@ void yaz_check_init1(int *argc_p, char ***argv_p) *argv_p += i; } +/** \brief Initialize the log system */ +void yaz_check_init_log(const char *argv0) +{ + char logfilename[2048]; + log_tests = 1; + sprintf(logfilename,"%s.log", progname(argv0) ); + yaz_log_init_file(logfilename); + yaz_log_trunc(); + +} + +void yaz_check_inc_todo(void) +{ + test_todo++; +} + void yaz_check_term1(void) { /* summary */ if (test_failed) { - if (test_verbose >= 1) - fprintf(get_file(), "%d out of %d tests failed for program %s\n", + if (test_verbose >= 1) { + if (test_todo) + fprintf(get_file(), "%d out of %d tests failed for program %s" + " (%d TODO's remaining)\n", + test_failed, test_total, test_prog,test_todo); + else + fprintf(get_file(), "%d out of %d tests failed for program %s\n", test_failed, test_total, test_prog); + } } else { - if (test_verbose >= 2) - fprintf(get_file(), "%d tests passed for program %s\n", + if (test_verbose >= 2) { + if (test_todo) + fprintf(get_file(), "%d tests passed for program %s" + " (%d TODO's remaining)\n", + test_total, test_prog,test_todo); + else + fprintf(get_file(), "%d tests passed for program %s\n", test_total, test_prog); + } } if (test_fout) fclose(test_fout); @@ -118,32 +156,61 @@ void yaz_check_term1(void) exit(0); } -void yaz_check_print1(int type, const char *file, int line, const char *expr) +void yaz_check_eq1(int type, const char *file, int line, + const char *left, const char *right, int lval, int rval) +{ + char formstr[2048]; + + if (type == YAZ_TEST_TYPE_OK) + sprintf(formstr, "%.500s == %.500s ", left, right); + else + sprintf(formstr, "%.500s != %.500s\n %d != %d", left, right, lval,rval); + yaz_check_print1(type, file, line, formstr); +} + +void yaz_check_print1(int type, const char *file, int line, + const char *expr) { const char *msg = "unknown"; + int printit = 1; test_total++; switch(type) { case YAZ_TEST_TYPE_FAIL: test_failed++; - msg = "failed"; + msg = "FAILED"; if (test_verbose < 1) - return; + printit = 0; break; case YAZ_TEST_TYPE_OK: - msg = "OK"; + msg = "ok"; if (test_verbose < 3) - return; + printit = 0; break; } - fprintf(get_file(), "%s:%d %s: %s\n", file, line, msg, expr); + if (printit) + { + fprintf(get_file(), "%s:%d: %s: ", file, line, msg); + fprintf(get_file(), "%s\n", expr); + } + if (log_tests) + { + yaz_log(YLOG_LOG, "%s:%d %s: ", file, line, msg); + yaz_log(YLOG_LOG, "%s", expr); + } } +int yaz_test_get_verbosity() +{ + return test_verbose; +} + /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab