X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft5.c;h=01772bff2e017fd59d30e99420cd11d8d0d75856;hb=9dbf16ff99472e07182dab1c7cf8796a4d357b0c;hp=df2eec6450ea4e09806b9ee0e9c4bbbfb1fed51a;hpb=6ba9698e88c0283e40fa5980a1a6b551fff2d597;p=idzebra-moved-to-github.git diff --git a/test/api/t5.c b/test/api/t5.c index df2eec6..01772bf 100644 --- a/test/api/t5.c +++ b/test/api/t5.c @@ -1,5 +1,5 @@ -/* $Id: t5.c,v 1.17 2006-05-19 13:49:35 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: t5.c,v 1.20 2007-01-15 15:10:20 adam Exp $ + Copyright (C) 1995-2007 Index Data ApS This file is part of the Zebra server. @@ -15,9 +15,9 @@ 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 Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ /** t5.c: proximity searches */ @@ -37,6 +37,32 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_init_data(zh, myrec)); + /* and searches */ + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 notfound @attr 1=4 x", 0)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 x @attr 1=4 notfound", 0)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 notfound @attr 1=4 notfound", 0)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 x @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 x @attr 1=4 my", 2)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 my @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@and @attr 1=4 my @attr 1=4 my", 3)); + + /* or searches */ + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 notfound @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 x @attr 1=4 notfound", 2)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 notfound @attr 1=4 notfound", 0)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 x @attr 1=4 x", 2)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 x @attr 1=4 my", 3)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 my @attr 1=4 x", 3)); + YAZ_CHECK(tl_query(zh, "@or @attr 1=4 my @attr 1=4 my", 3)); + + /* not searches */ + /* bug 619 */ + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 notfound @attr 1=4 x", 0)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 x @attr 1=4 x", 0)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 my @attr 1=4 x", 1)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 my @attr 1=4 notfound", 3)); + YAZ_CHECK(tl_query(zh, "@not @attr 1=4 notfound @attr 1=4 notfound", 0)); + /* phrase searches */ YAZ_CHECK(tl_query(zh, "@attr 1=4 my", 3)); YAZ_CHECK(tl_query(zh, "@attr 1=4 {my x}", 1)); @@ -59,8 +85,6 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=105 {e x}", 2)); YAZ_CHECK(tl_query(zh, "@attr 1=4 @attr 4=106 {e x}", 2)); - YAZ_CHECK(tl_query(zh, "@attr 1=4 @and x title", 2)); - /* exl=0 distance=2 order=1 relation=2 (<=), known, unit=word */ YAZ_CHECK(tl_query(zh, "@attr 1=4 @prox 0 2 1 2 k 2 my x", 2));