mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: tests for command-line-arguments.c
This was needed because no current notmuch code exercises the NOTMUCH_OPT_STRING style arguments.
This commit is contained in:
parent
2cf7b27a0c
commit
5800a44bd5
5 changed files with 79 additions and 3 deletions
|
@ -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
|
||||
|
|
52
test/arg-test.c
Normal file
52
test/arg-test.c
Normal file
|
@ -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;
|
||||
}
|
16
test/argument-parsing
Executable file
16
test/argument-parsing
Executable file
|
@ -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
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -48,6 +48,7 @@ TESTS="
|
|||
search-folder-coherence
|
||||
atomicity
|
||||
python
|
||||
argument-parsing
|
||||
"
|
||||
TESTS=${NOTMUCH_TESTS:=$TESTS}
|
||||
|
||||
|
|
Loading…
Reference in a new issue