X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ftest_sort1.c;fp=test%2Fapi%2Ftest_sort1.c;h=cbe4ca3678e50ccd66eb359791d6e94e662711ba;hb=5a4d40ae6b8372f38c1871b493866e2848d125b4;hp=0000000000000000000000000000000000000000;hpb=965cbd297cf8de73cfe01d55983b8161ae7cf67e;p=idzebra-moved-to-github.git diff --git a/test/api/test_sort1.c b/test/api/test_sort1.c new file mode 100644 index 0000000..cbe4ca3 --- /dev/null +++ b/test/api/test_sort1.c @@ -0,0 +1,91 @@ +/* This file is part of the Zebra server. + Copyright (C) 1995-2008 Index Data + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#include "testlib.h" + +const char *myrec[] = { + "\n" + " first computer\n" + " 2\n" + " 2\n" + "\n" + , + "\n" + " second computer\n" + " 1\n" + " 21\n" + "\n" + , + "\n" + " 3rd computer\n" +" a^3\n" + " 15\n" + "\n" + , + "\n" + " fourth computer\n" + " 4\n" + " 11\n" + "\n" + , + 0 +}; + +static void tst(int argc, char **argv) +{ + ZebraService zs = tl_start_up("test_sort1.cfg", argc, argv); + ZebraHandle zh = zebra_open(zs, 0); + zint ids[5]; + + YAZ_CHECK(tl_init_data(zh, myrec)); + + ids[0] = 3; + ids[1] = 2; + ids[2] = 4; + ids[3] = 5; + YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=30 0", 4, ids)); + YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=Date 0", 4, ids)); + + ids[0] = 5; + ids[1] = 4; + ids[2] = 2; + ids[3] = 3; + YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=1021 0", 4, ids)); + YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=Bib-Level 0", 4, ids)); + + ids[0] = 2; + ids[1] = 5; + ids[2] = 4; + ids[3] = 3; + YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=1021 @attr 4=109 0", 4, ids)); + YAZ_CHECK(tl_sort(zh, "@or @attr 1=4 computer @attr 7=1 @attr 1=Bib-Level @attr 4=109 0", 4, ids)); + + YAZ_CHECK(tl_close_down(zh, zs)); +} + + +TL_MAIN +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +