null+****@clear*****
null+****@clear*****
2010年 7月 7日 (水) 11:00:48 JST
Kouhei Sutou 2010-07-07 02:00:48 +0000 (Wed, 07 Jul 2010)
New Revision: 4cce560d44e86992d15b44018a9dea5b1149bfac
Log:
add tests for GRN_CURSOR_PREFIX on ShortText. [#383]
Added files:
test/unit/core/test-table-patricia-trie-cursor.c
Modified files:
test/unit/core/Makefile.am
Modified: test/unit/core/Makefile.am (+2 -0)
===================================================================
--- test/unit/core/Makefile.am 2010-07-06 23:42:37 +0000 (f8b7cd5)
+++ test/unit/core/Makefile.am 2010-07-07 02:00:48 +0000 (829412a)
@@ -13,6 +13,7 @@ noinst_LTLIBRARIES = \
test-public-context.la \
test-query.la \
test-table.la \
+ test-table-patricia-trie-cursor.la \
test-column.la \
test-database.la \
test-database-create.la \
@@ -78,6 +79,7 @@ test_stress_la_SOURCES = test-stress.c
test_public_context_la_SOURCES = test-public-context.c
test_query_la_SOURCES = test-query.c
test_table_la_SOURCES = test-table.c
+test_table_patricia_trie_cursor_la_SOURCES = test-table-patricia-trie-cursor.c
test_column_la_SOURCES = test-column.c
test_database_la_SOURCES = test-database.c
test_database_create_la_SOURCES = test-database-create.c
Added: test/unit/core/test-table-patricia-trie-cursor.c (+218 -0) 100644
===================================================================
--- /dev/null
+++ test/unit/core/test-table-patricia-trie-cursor.c 2010-07-07 02:00:48 +0000 (14e4e44)
@@ -0,0 +1,218 @@
+/* -*- 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 <groonga.h>
+
+#include <gcutter.h>
+#include <glib/gstdio.h>
+
+#include "../lib/grn-assertions.h"
+
+void data_prefix_short_text(void);
+void test_prefix_short_text(gpointer data);
+
+static gchar *tmp_directory;
+
+static grn_ctx *context;
+static grn_obj *database, *table;
+static grn_table_cursor *cursor;
+
+void
+cut_startup(void)
+{
+ tmp_directory = g_build_filename(grn_test_get_base_dir(),
+ "tmp",
+ "table-patricia-trie-cursor",
+ NULL);
+}
+
+void
+cut_shutdown(void)
+{
+ g_free(tmp_directory);
+}
+
+static void
+remove_tmp_directory(void)
+{
+ cut_remove_path(tmp_directory, NULL);
+}
+
+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);
+ table = NULL;
+ cursor = NULL;
+}
+
+void
+cut_teardown(void)
+{
+ if (cursor) {
+ grn_obj_unlink(context, cursor);
+ }
+
+ if (table) {
+ grn_obj_unlink(context, table);
+ }
+
+ if (context) {
+ grn_ctx_fin(context);
+ g_free(context);
+ }
+}
+
+void
+data_prefix_short_text(void)
+{
+#define ADD_DATA(label, expected, key_min, offset, limit, flags) \
+ gcut_add_datum(label, \
+ "expected", G_TYPE_POINTER, \
+ expected, gcut_list_string_free, \
+ "key-min", G_TYPE_STRING, key_min, \
+ "offset", G_TYPE_INT, offset, \
+ "limit", G_TYPE_INT, limit, \
+ "flags", G_TYPE_INT, flags, \
+ NULL)
+
+ ADD_DATA("alphabet - ascending",
+ gcut_list_string_new("abra", "abracada", "abracadabra", "abubu",
+ NULL),
+ "ab",
+ 0, -1,
+ 0);
+ ADD_DATA("alphabet - descending",
+ gcut_list_string_new("abubu", "abracadabra", "abracada", "abra",
+ NULL),
+ "ab",
+ 0, -1,
+ GRN_CURSOR_DESCENDING);
+ ADD_DATA("alphabet - ascending - greater than",
+ gcut_list_string_new("abracada", "abracadabra", NULL),
+ "abra",
+ 0, -1,
+ GRN_CURSOR_GT);
+ ADD_DATA("alphabet - descending - greater than",
+ gcut_list_string_new("abracadabra", "abracada", NULL),
+ "abra",
+ 0, -1,
+ GRN_CURSOR_DESCENDING | GRN_CURSOR_GT);
+ ADD_DATA("alphabet - offset and limit",
+ gcut_list_string_new("abracadabra", NULL),
+ "ab",
+ 2, 1,
+ 0);
+ ADD_DATA("no match",
+ NULL,
+ "bubuzera",
+ 0, -1,
+ 0);
+ ADD_DATA("no match - common prefix",
+ NULL,
+ "abraura",
+ 0, -1,
+ 0);
+ ADD_DATA("empty key",
+ gcut_list_string_new("abra", "abracada", "abracadabra", "abubu",
+ "あ", "ああ", "あああ", "い",
+ NULL),
+ "",
+ 0, -1,
+ 0);
+ {
+ gchar *long_key;
+ long_key = g_alloca(GRN_TABLE_MAX_KEY_SIZE + 2);
+ memset(long_key, 'a', GRN_TABLE_MAX_KEY_SIZE + 1);
+ ADD_DATA("long key",
+ NULL,
+ long_key,
+ 0, -1,
+ 0);
+ }
+
+#undef ADD_DATA
+}
+
+static void
+create_short_text_table(void)
+{
+ const char *table_name = "ShortTextPat";
+
+ assert_send_commands(
+ cut_take_printf("table_create %s TABLE_PAT_KEY ShortText", table_name));
+ assert_send_commands(
+ cut_take_printf("load --table %s\n"
+ "[\n"
+ " [\"_key\"],\n"
+ " [\"abra\"],"
+ " [\"abracada\"],"
+ " [\"abracadabra\"],"
+ " [\"abubu\"],"
+ " [\"あ\"],"
+ " [\"ああ\"],"
+ " [\"あああ\"],"
+ " [\"い\"]"
+ "]",
+ table_name));
+
+ table = grn_ctx_get(context, table_name, strlen(table_name));
+}
+
+void
+test_prefix_short_text(gpointer data)
+{
+ grn_id id;
+ const gchar *key_min;
+ int offset, limit, flags;
+ const GList *expected_keys;
+ GList *actual_keys = NULL;
+
+ create_short_text_table();
+
+ key_min = gcut_data_get_string(data, "key-min");
+ offset = gcut_data_get_int(data, "offset");
+ limit = gcut_data_get_int(data, "limit");
+ flags = gcut_data_get_int(data, "flags");
+ cursor = grn_table_cursor_open(context, table,
+ key_min, strlen(key_min),
+ NULL, 0,
+ offset, limit,
+ flags | GRN_CURSOR_PREFIX);
+ grn_test_assert_context(context);
+ while ((id = grn_table_cursor_next(context, cursor))) {
+ gchar *key;
+ int key_length;
+
+ key_length = grn_table_cursor_get_key(context, cursor, (void **)&key);
+ actual_keys = g_list_append(actual_keys, g_strndup(key, key_length));
+ }
+ gcut_take_list(actual_keys, g_free);
+
+ expected_keys = gcut_data_get_pointer(data, "expected");
+ gcut_assert_equal_list_string(expected_keys, actual_keys);
+}