null+****@clear*****
null+****@clear*****
2010年 7月 20日 (火) 09:42:52 JST
Kouhei Sutou 2010-07-20 00:42:52 +0000 (Tue, 20 Jul 2010) New Revision: 0efa0f458a895979105b3551dab22f4a76a67ab3 Log: add a tests for prefix search expression. #358 Added files: test/unit/core/test-command-select-prefix-search.c Modified files: test/unit/core/Makefile.am Modified: test/unit/core/Makefile.am (+2 -0) =================================================================== --- test/unit/core/Makefile.am 2010-07-16 11:39:43 +0000 (829412a) +++ test/unit/core/Makefile.am 2010-07-20 00:42:52 +0000 (5368661) @@ -41,6 +41,7 @@ noinst_LTLIBRARIES = \ test-command-column-list.la \ test-command-select.la \ test-command-select-sort.la \ + test-command-select-prefix-search.la \ test-command-cache-limit.la \ test-command-delete.la endif @@ -107,5 +108,6 @@ test_command_load_la_SOURCES = test-command-load.c test_command_column_list_la_SOURCES = test-command-column-list.c test_command_select_la_SOURCES = test-command-select.c test_command_select_sort_la_SOURCES = test-command-select-sort.c +test_command_select_prefix_search_la_SOURCES = test-command-select-prefix-search.c test_command_cache_limit_la_SOURCES = test-command-cache-limit.c test_command_delete_la_SOURCES = test-command-delete.c Added: test/unit/core/test-command-select-prefix-search.c (+146 -0) 100644 =================================================================== --- /dev/null +++ test/unit/core/test-command-select-prefix-search.c 2010-07-20 00:42:52 +0000 (c6adbc6) @@ -0,0 +1,146 @@ +/* -*- c-basic-offset: 2; coding: utf-8 -*- */ +/* + Copyright (C) 2010 Kouhei Sutou <kou****@clear*****> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License version 2.1 as published by the Free Software Foundation. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ + +#include "str.h" +#include <stdio.h> + +#include <gcutter.h> + +#include "../lib/grn-assertions.h" + +void test_query(void); +void test_filter(void); + +static gchar *tmp_directory; + +static grn_ctx *context; +static grn_obj *database; + +void +cut_startup(void) +{ + tmp_directory = g_build_filename(grn_test_get_base_dir(), + "tmp", + "command-select-prefix-search", + NULL); +} + +void +cut_shutdown(void) +{ + g_free(tmp_directory); +} + +static void +remove_tmp_directory(void) +{ + cut_remove_path(tmp_directory, NULL); +} + +static void +setup_ddl(void) +{ + assert_send_commands("table_create Sites TABLE_PAT_KEY ShortText\n" + "column_create Sites url COLUMN_SCALAR ShortText"); + + assert_send_commands("table_create Bookmarks TABLE_PAT_KEY ShortText\n" + "column_create Bookmarks site COLUMN_SCALAR Sites"); + + assert_send_commands("column_create Sites bookmarks_site " + "COLUMN_INDEX Bookmarks site"); +} + +static void +setup_data(void) +{ + assert_send_commands("load --table Sites\n" + "[\n" + "[\"_key\", \"url\"],\n" + "[\"groonga\", \"http://groonga.org\"],\n" + "[\"Senna\", \"http://qwik.jp/senna/FrontPageJ.html\"],\n" + "[\"rroonga\", \"http://groonga.rubyforge.org/\"],\n" + "[\"ranguba\", \"http://groonga.rubyforge.org/\"]\n" + "]"); + + assert_send_commands("load --table Bookmarks\n" + "[\n" + "[\"_key\", \"site\"],\n" + "[\"search engine1\", \"Senna\"],\n" + "[\"search engine2\", \"groonga\"],\n" + "[\"groonga + Ruby\", \"rroonga\"],\n" + "[\"search system\", \"ranguba\"]\n" + "]"); +} + +void +cut_setup(void) +{ + const gchar *database_path; + + remove_tmp_directory(); + g_mkdir_with_parents(tmp_directory, 0700); + + context = g_new0(grn_ctx, 1); + grn_ctx_init(context, 0); + + database_path = cut_build_path(tmp_directory, "database.groonga", NULL); + database = grn_db_create(context, database_path, NULL); + + setup_ddl(); + setup_data(); +} + +void +cut_teardown(void) +{ + if (context) { + grn_obj_unlink(context, database); + grn_ctx_fin(context); + g_free(context); + } + + remove_tmp_directory(); +} + +void +test_query(void) +{ + cut_assert_equal_string( + "[[[2]," + "[[\"_id\",\"UInt32\"]," + "[\"_key\",\"ShortText\"]," + "[\"site\",\"Sites\"]]," + "[3,\"groonga + Ruby\",\"rroonga\"]," + "[4,\"search system\",\"ranguba\"]]]", + send_command("select Bookmarks " + "--query \"site:^r\"")); +} + +void +test_filter(void) +{ + cut_assert_equal_string( + "[[[2]," + "[[\"_id\",\"UInt32\"]," + "[\"_key\",\"ShortText\"]," + "[\"site\",\"Sites\"]]," + "[3,\"groonga + Ruby\",\"rroonga\"]," + "[4,\"search system\",\"ranguba\"]]]", + send_command("select Bookmarks " + "--filter \"site ^ 'r'\"")); +}