]> git.notmuchmail.org Git - notmuch/commitdiff
test: tests for command-line-arguments.c
authorDavid Bremner <bremner@debian.org>
Wed, 7 Dec 2011 18:37:13 +0000 (14:37 -0400)
committerDavid Bremner <bremner@debian.org>
Fri, 9 Dec 2011 00:24:24 +0000 (20:24 -0400)
This was needed because no current notmuch code exercises the
NOTMUCH_OPT_STRING style arguments.

test/Makefile.local
test/arg-test.c [new file with mode: 0644]
test/argument-parsing [new file with mode: 0755]
test/basic
test/notmuch-test

index bffbbdbdc0e2aa797b8895baef4049fab9a59003..6cb6c829db7901499824eae12f02068663d78ea6 100644 (file)
@@ -2,12 +2,17 @@
 
 dir := test
 
+extra_cflags += -I.
+
 smtp_dummy_srcs =              \
        $(notmuch_compat_srcs)  \
        $(dir)/smtp-dummy.c
 
 smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o)
 
+$(dir)/arg-test: $(dir)/arg-test.o command-line-arguments.o util/libutil.a
+       $(call quiet,CC) -I. $^ -o $@
+
 $(dir)/smtp-dummy: $(smtp_dummy_modules)
        $(call quiet,CC) $^ -o $@
 
@@ -16,11 +21,13 @@ $(dir)/symbol-test: $(dir)/symbol-test.o
 
 .PHONY: test check
 
-test-binaries: $(dir)/smtp-dummy $(dir)/symbol-test
+test-binaries: $(dir)/arg-test $(dir)/smtp-dummy $(dir)/symbol-test
 
 test:  all test-binaries
        @${dir}/notmuch-test $(OPTIONS)
 
 check: test
 
-CLEAN := $(CLEAN) $(dir)/smtp-dummy $(dir)/smtp-dummy.o $(dir)/symbol-test $(dir)/symbol-test.o
+CLEAN := $(CLEAN) $(dir)/smtp-dummy $(dir)/smtp-dummy.o \
+        $(dir)/symbol-test $(dir)/symbol-test.o \
+        $(dir)/arg-test $(dir)/arg-test.o
diff --git a/test/arg-test.c b/test/arg-test.c
new file mode 100644 (file)
index 0000000..adc56e3
--- /dev/null
@@ -0,0 +1,52 @@
+#include <stdio.h>
+#include "command-line-arguments.h"
+
+
+int main(int argc, char **argv){
+
+    int opt_index=1;
+
+    int kw_val=0;
+    int int_val=0;
+    char *pos_arg1=NULL;
+    char *pos_arg2=NULL;
+    char *string_val=NULL;
+
+    notmuch_opt_desc_t options[] = {
+       { NOTMUCH_OPT_KEYWORD, &kw_val, "keyword", 'k',
+         (notmuch_keyword_t []){ { "one", 1 },
+                                 { "two", 2 },
+                                 { 0, 0 } } },
+       { NOTMUCH_OPT_INT, &int_val, "int", 'i', 0},
+       { NOTMUCH_OPT_STRING, &string_val, "string", 's', 0},
+       { NOTMUCH_OPT_POSITION, &pos_arg1, 0,0, 0},
+       { NOTMUCH_OPT_POSITION, &pos_arg2, 0,0, 0},
+       { 0, 0, 0, 0, 0 } };
+
+    opt_index = parse_arguments(argc, argv, options, 1);
+
+    if (opt_index < 0)
+       return 1;
+
+    if (kw_val)
+       printf("keyword %d\n", kw_val);
+
+    if (int_val)
+       printf("int %d\n", int_val);
+
+    if (string_val)
+       printf("string %s\n", string_val);
+
+    if (pos_arg1)
+       printf("positional arg 1 %s\n", pos_arg1);
+
+    if (pos_arg2)
+       printf("positional arg 2 %s\n", pos_arg1);
+
+
+    for ( ; opt_index < argc ; opt_index ++) {
+       printf("non parsed arg %d = %s\n", opt_index, argv[opt_index]);
+    }
+
+    return 0;
+}
diff --git a/test/argument-parsing b/test/argument-parsing
new file mode 100755 (executable)
index 0000000..672de0b
--- /dev/null
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+test_description="argument parsing"
+. ./test-lib.sh
+
+test_begin_subtest "sanity check"
+$TEST_DIRECTORY/arg-test  pos1  --keyword=one --string=foo pos2 --int=7 > OUTPUT
+cat <<EOF > EXPECTED
+keyword 1
+int 7
+string foo
+positional arg 1 pos1
+positional arg 2 pos1
+EOF
+test_expect_equal_file OUTPUT EXPECTED
+
+test_done
index 4edf8315be8aaab92d648eddb8f1da70b1cef3ef..d6aed24c0e292135b35b8b938a374311838c257f 100755 (executable)
@@ -54,7 +54,7 @@ test_begin_subtest 'Ensure that all available tests will be run by notmuch-test'
 eval $(sed -n -e '/^TESTS="$/,/^"$/p' $TEST_DIRECTORY/notmuch-test)
 tests_in_suite=$(for i in $TESTS; do echo $i; done | sort)
 available=$(find "$TEST_DIRECTORY" -maxdepth 1 -type f -executable -printf '%f\n' | \
-    sed -r -e "/^(aggregate-results.sh|notmuch-test|smtp-dummy|test-verbose|symbol-test)$/d" | \
+    sed -r -e "/^(aggregate-results.sh|notmuch-test|smtp-dummy|test-verbose|symbol-test|arg-test)$/d" | \
     sort)
 test_expect_equal "$tests_in_suite" "$available"
 
index 53ce355cae1dfeed8bd09ef9ef5df46c82e3ebad..d05bb38b1287e46f84c321b41fcbc5eecb5e1a00 100755 (executable)
@@ -48,6 +48,7 @@ TESTS="
   search-folder-coherence
   atomicity
   python
+  argument-parsing
 "
 TESTS=${NOTMUCH_TESTS:=$TESTS}