null+****@clear*****
null+****@clear*****
2010年 7月 2日 (金) 12:58:18 JST
Kouhei Sutou 2010-07-02 03:58:18 +0000 (Fri, 02 Jul 2010)
New Revision: 5aa21aae661931c9ada2d34f3face062cf024517
Log:
add tests for delete command.
Added files:
test/unit/core/test-command-delete.c
Added: test/unit/core/test-command-delete.c (+114 -0) 100644
===================================================================
--- /dev/null
+++ test/unit/core/test-command-delete.c 2010-07-02 03:58:18 +0000 (426d6bf)
@@ -0,0 +1,114 @@
+/* -*- 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 <gcutter.h>
+#include <glib/gstdio.h>
+
+#include "../lib/grn-assertions.h"
+
+#include <str.h>
+
+void test_by_id(void);
+void test_by_key(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-delete",
+ NULL);
+}
+
+void
+cut_shutdown(void)
+{
+ g_free(tmp_directory);
+}
+
+static void
+remove_tmp_directory(void)
+{
+ cut_remove_path(tmp_directory, NULL);
+}
+
+static void
+setup_data(void)
+{
+ assert_send_command("table_create Users TABLE_HASH_KEY ShortText");
+ assert_send_command("load --table Users --columns '_key'\n"
+ "[\n"
+ " [\"mori\"],\n"
+ " [\"tapo\"]\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_data();
+}
+
+void
+cut_teardown(void)
+{
+ if (context) {
+ grn_ctx_fin(context);
+ g_free(context);
+ }
+
+ remove_tmp_directory();
+}
+
+void
+test_by_id(void)
+{
+ assert_send_command("delete Users --id 1");
+ cut_assert_equal_string("[[[1],"
+ "[[\"_key\",\"ShortText\"]],"
+ "[\"tapo\"]]]",
+ send_command("select Users "
+ "--output_columns _key"));
+}
+
+void
+test_by_delete(void)
+{
+ assert_send_command("delete Users tapo");
+ cut_assert_equal_string("[[[1],"
+ "[[\"_key\",\"ShortText\"]],"
+ "[\"mori\"]]]",
+ send_command("select Users "
+ "--output_columns _key"));
+}