X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftst_record_conv.c;h=c08b9378677816f490a001e0a137fc940fc65295;hp=2b414c67dafb7cdc61bb8cb84aab61b63735f59e;hb=4f8ea8cfaf2f3d95e4efcf9494526c2b4be43eb8;hpb=e70cbdfde382dd605d58fc112cc2458cfce37382 diff --git a/test/tst_record_conv.c b/test/tst_record_conv.c index 2b414c6..c08b937 100644 --- a/test/tst_record_conv.c +++ b/test/tst_record_conv.c @@ -1,16 +1,22 @@ /* - * Copyright (C) 2005-2006, Index Data ApS + * Copyright (C) 2005-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: tst_record_conv.c,v 1.2 2006-05-03 13:04:46 adam Exp $ + * $Id: tst_record_conv.c,v 1.13 2007-01-03 08:42:16 adam Exp $ * */ #include #include #include #include +#include +#include -#if HAVE_XML2 +#if HAVE_CONFIG_H +#include +#endif + +#if YAZ_HAVE_XML2 #include #include @@ -46,6 +52,8 @@ yaz_record_conv_t conv_configure(const char *xmlstring, WRBUF w) } else { + + int r = yaz_record_conv_configure(p, ptr); if (r) @@ -81,49 +89,66 @@ int conv_configure_test(const char *xmlstring, const char *expect_error, else { if (expect_error) - { ret = 0; - yaz_record_conv_destroy(p); - } else - { - if (pt) - *pt = p; - else - yaz_record_conv_destroy(p); ret = 1; - } } + + if (pt) + *pt = p; + else + if (p) + yaz_record_conv_destroy(p); + wrbuf_free(w, 1); return ret; } -static void tst_configure() +static void tst_configure(void) { + + + YAZ_CHECK(conv_configure_test("", "Missing 'convert' element", 0)); - YAZ_CHECK(conv_configure_test("", 0, 0)); - YAZ_CHECK(conv_configure_test("", - "Bad element 'bad'." - "Expected marc, xslt, ..", 0)); - YAZ_CHECK(conv_configure_test("" + + + YAZ_CHECK(conv_configure_test("" + "", + "Element : expected or " + " element, got ", 0)); + +#if YAZ_HAVE_XSLT + YAZ_CHECK(conv_configure_test("" "" "" - "", - "Attribute 'inputformat' required", 0)); - YAZ_CHECK(conv_configure_test("" - "" + "", + "Element : attribute 'inputformat' " + "required", 0)); + YAZ_CHECK(conv_configure_test("" + "" + "", + "Element : attribute 'stylesheet' " + "expected", 0)); + YAZ_CHECK(conv_configure_test("" "" - "", + "" + "", 0, 0)); +#else + YAZ_CHECK(conv_configure_test("" + "" + "", + "xslt unsupported." + " YAZ compiled without XSLT support", 0)); +#endif } static int conv_convert_test(yaz_record_conv_t p, @@ -138,7 +163,8 @@ static int conv_convert_test(yaz_record_conv_t p, else { WRBUF output_record = wrbuf_alloc(); - int r = yaz_record_conv_record(p, input_record, output_record); + int r = yaz_record_conv_record(p, input_record, strlen(input_record), + output_record); if (r) { if (output_expect_record) @@ -186,7 +212,7 @@ static int conv_convert_test(yaz_record_conv_t p, return ret; } -static void tst_convert() +static void tst_convert1(void) { yaz_record_conv_t p = 0; const char *marcxml_rec = @@ -204,30 +230,32 @@ static void tst_convert() "\x1E\x20\x20\x20\x31\x31\x32\x32\x34\x34\x36\x36\x20\x1E\x20\x20" "\x1F\x61\x20\x20\x20\x31\x31\x32\x32\x34\x34\x36\x36\x20\x1E\x1D"; - YAZ_CHECK(conv_configure_test("" + YAZ_CHECK(conv_configure_test("" "" - "", + "", 0, &p)); YAZ_CHECK(conv_convert_test(p, marcxml_rec, iso2709_rec)); + yaz_record_conv_destroy(p); - YAZ_CHECK(conv_configure_test("" + YAZ_CHECK(conv_configure_test("" "" - "", + "", 0, &p)); YAZ_CHECK(conv_convert_test(p, iso2709_rec, marcxml_rec)); + yaz_record_conv_destroy(p); - YAZ_CHECK(conv_configure_test("" + YAZ_CHECK(conv_configure_test("" "" "" "" - "", + "", 0, &p)); YAZ_CHECK(conv_convert_test(p, marcxml_rec, marcxml_rec)); + yaz_record_conv_destroy(p); - - YAZ_CHECK(conv_configure_test("" + YAZ_CHECK(conv_configure_test("" "" "" "" - "", + "", 0, &p)); YAZ_CHECK(conv_convert_test(p, marcxml_rec, marcxml_rec)); + yaz_record_conv_destroy(p); +} + +static void tst_convert2(void) +{ + yaz_record_conv_t p = 0; + const char *marcxml_rec = + "\n" + " 00080nam a22000498a 4500\n" + " 11224466 \n" + " \n" + " københavn\n" + " \n" + "\n"; + const char *iso2709_rec = + "\x30\x30\x30\x37\x37\x6E\x61\x6D\x20\x61\x32\x32\x30\x30\x30\x34" + "\x39\x38\x61\x20\x34\x35\x30\x30\x30\x30\x31\x30\x30\x31\x33\x30" + "\x30\x30\x30\x30\x30\x31\x30\x30\x30\x31\x34\x30\x30\x30\x31\x33" + "\x1E\x20\x20\x20\x31\x31\x32\x32\x34\x34\x36\x36\x20\x1E\x20\x20" + "\x1F\x61\x6b\xb2\x62\x65\x6e\x68\x61\x76\x6e\x1E\x1D"; + YAZ_CHECK(conv_configure_test("" + "" + "", + 0, &p)); + YAZ_CHECK(conv_convert_test(p, marcxml_rec, iso2709_rec)); + yaz_record_conv_destroy(p); } #endif @@ -272,9 +331,13 @@ static void tst_convert() int main(int argc, char **argv) { YAZ_CHECK_INIT(argc, argv); -#if HAVE_XML2 + libxml2_error_to_yazlog(0 /* disable log */, 0); +#if YAZ_HAVE_XML2 tst_configure(); - tst_convert(); +#endif +#if YAZ_HAVE_XSLT + tst_convert1(); + tst_convert2(); #endif YAZ_CHECK_TERM; }