From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id OAzZI8E8MWBsaAAA0tVLHw (envelope-from ) for ; Sat, 20 Feb 2021 16:45:53 +0000 Received: from aspmx1.migadu.com ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id kMaYH8E8MWD9aQAAB5/wlQ (envelope-from ) for ; Sat, 20 Feb 2021 16:45:53 +0000 Received: from mail.notmuchmail.org (nmbug.tethera.net [144.217.243.247]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id C697D2793D for ; Sat, 20 Feb 2021 17:45:52 +0100 (CET) Received: from nmbug.tethera.net (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id 593A526BE4; Sat, 20 Feb 2021 11:45:11 -0500 (EST) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by mail.notmuchmail.org (Postfix) with ESMTP id 2186426ACB for ; Sat, 20 Feb 2021 11:45:01 -0500 (EST) Received: by fethera.tethera.net (Postfix, from userid 1001) id 1B8F360666; Sat, 20 Feb 2021 11:45:01 -0500 (EST) Received: (nullmailer pid 3956188 invoked by uid 1000); Sat, 20 Feb 2021 16:44:54 -0000 From: David Bremner To: notmuch@notmuchmail.org Cc: David Bremner Subject: [PATCH 13/18] WIP: CLI/config: switch list to new config Date: Sat, 20 Feb 2021 12:44:43 -0400 Message-Id: <20210220164448.3956011-14-david@tethera.net> X-Mailer: git-send-email 2.30.0 In-Reply-To: <20210220164448.3956011-1-david@tethera.net> References: <20210220164448.3956011-1-david@tethera.net> MIME-Version: 1.0 Message-ID-Hash: 4JGZ2RCWFGQNUKJLEKDONIY23PX4ESZQ X-Message-ID-Hash: 4JGZ2RCWFGQNUKJLEKDONIY23PX4ESZQ X-MailFrom: bremner@tethera.net X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-notmuch.notmuchmail.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.1 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: 0.48 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 144.217.243.247 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Migadu-Queue-Id: C697D2793D X-Spam-Score: 0.48 X-Migadu-Scanner: scn0.migadu.com X-TUID: LoB56cpSGvc2 Test output changes because keys are now listed in alphabetical order, and because a missing database is no longer an error. --- notmuch-config.c | 69 ++++++++------------------------------------- test/T030-config.sh | 27 ++++++++---------- test/T040-setup.sh | 27 +++++++++++------- 3 files changed, 40 insertions(+), 83 deletions(-) diff --git a/notmuch-config.c b/notmuch-config.c index a4613227..f46e5c27 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -969,69 +969,22 @@ _notmuch_config_list_built_with () } static int -_list_db_config (notmuch_config_t *config) +notmuch_config_command_list (notmuch_database_t *notmuch) { - notmuch_database_t *notmuch; - notmuch_config_list_t *list; - - if (notmuch_database_open (notmuch_config_get_database_path (config), - NOTMUCH_DATABASE_MODE_READ_ONLY, ¬much)) - return EXIT_FAILURE; + notmuch_config_pairs_t *list; - /* XXX Handle UUID mismatch? */ - - - if (print_status_database ("notmuch config", notmuch, - notmuch_database_get_config_list (notmuch, "", &list))) - return EXIT_FAILURE; - - for (; notmuch_config_list_valid (list); notmuch_config_list_move_to_next (list)) { - printf ("%s=%s\n", notmuch_config_list_key (list), notmuch_config_list_value (list)); + _notmuch_config_list_built_with (); + for (list = notmuch_config_get_pairs (notmuch, ""); + notmuch_config_pairs_valid (list); + notmuch_config_pairs_move_to_next (list)) { + const char *value = notmuch_config_pairs_value (list); + if (value) + printf ("%s=%s\n", notmuch_config_pairs_key (list), value); } - notmuch_config_list_destroy (list); - + notmuch_config_pairs_destroy (list); return EXIT_SUCCESS; } -static int -notmuch_config_command_list (notmuch_config_t *config) -{ - char **groups; - size_t g, groups_length; - - groups = g_key_file_get_groups (config->key_file, &groups_length); - if (groups == NULL) - return 1; - - for (g = 0; g < groups_length; g++) { - char **keys; - size_t k, keys_length; - - keys = g_key_file_get_keys (config->key_file, - groups[g], &keys_length, NULL); - if (keys == NULL) - continue; - - for (k = 0; k < keys_length; k++) { - char *value; - - value = g_key_file_get_string (config->key_file, - groups[g], keys[k], NULL); - if (value != NULL) { - printf ("%s.%s=%s\n", groups[g], keys[k], value); - free (value); - } - } - - g_strfreev (keys); - } - - g_strfreev (groups); - - _notmuch_config_list_built_with (); - return _list_db_config (config); -} - int notmuch_config_command (notmuch_config_t *config, notmuch_database_t *notmuch, int argc, char *argv[]) { @@ -1070,7 +1023,7 @@ notmuch_config_command (notmuch_config_t *config, notmuch_database_t *notmuch, i } ret = notmuch_config_command_set (config, argv[1], argc - 2, argv + 2); } else if (strcmp (argv[0], "list") == 0) { - ret = notmuch_config_command_list (config); + ret = notmuch_config_command_list (notmuch); } else { fprintf (stderr, "Unrecognized argument for notmuch config: %s\n", argv[0]); diff --git a/test/T030-config.sh b/test/T030-config.sh index 023e97b3..d974850f 100755 --- a/test/T030-config.sh +++ b/test/T030-config.sh @@ -46,25 +46,22 @@ notmuch config set foo.nonexistent test_expect_equal "$(notmuch config get foo.nonexistent)" "" test_begin_subtest "List all items" -notmuch config list > STDOUT 2> STDERR -printf "%s\n====\n%s\n" "$(< STDOUT)" "$(< STDERR)" | notmuch_config_sanitize > OUTPUT - +notmuch config list 2>&1 | notmuch_config_sanitize > OUTPUT cat < EXPECTED -database.path=MAIL_DIR -user.name=Notmuch Test Suite -user.primary_email=test_suite@notmuchmail.org -user.other_email=test_suite_other@notmuchmail.org;test_suite@otherdomain.org -new.tags=unread;inbox; -new.ignore= -search.exclude_tags= -maildir.synchronize_flags=true -foo.string=this is another string value -foo.list=this;is another;list value; built_with.compact=something built_with.field_processor=something built_with.retry_lock=something -==== -Error: Cannot open database at MAIL_DIR/.notmuch: No such file or directory. +database.mail_root=MAIL_DIR +database.path=MAIL_DIR +foo.list=this;is another;list value; +foo.string=this is another string value +maildir.synchronize_flags=true +new.ignore= +new.tags=unread;inbox; +search.exclude_tags= +user.name=Notmuch Test Suite +user.other_email=test_suite_other@notmuchmail.org;test_suite@otherdomain.org +user.primary_email=test_suite@notmuchmail.org EOF test_expect_equal_file EXPECTED OUTPUT diff --git a/test/T040-setup.sh b/test/T040-setup.sh index 1223ebf7..87d386fd 100755 --- a/test/T040-setup.sh +++ b/test/T040-setup.sh @@ -20,18 +20,25 @@ foo bar baz EOF -output=$(notmuch --config=new-notmuch-config config list | notmuch_built_with_sanitize) -test_expect_equal "$output" "\ +cat < EXPECTED +built_with.compact=something +built_with.field_processor=something +built_with.retry_lock=something +database.mail_root=/path/to/maildir database.path=/path/to/maildir -user.name=Test Suite -user.primary_email=test.suite@example.com -user.other_email=another.suite@example.com; -new.tags=foo;bar; +maildir.synchronize_flags=true new.ignore= +new.tags=foo;bar; search.exclude_tags=baz; -maildir.synchronize_flags=true -built_with.compact=something -built_with.field_processor=something -built_with.retry_lock=something" +user.name=Test Suite +user.other_email=another.suite@example.com; +user.primary_email=test.suite@example.com +EOF + +notmuch --config=new-notmuch-config config list | notmuch_built_with_sanitize > OUTPUT + +test_expect_equal_file EXPECTED OUTPUT + + test_done -- 2.30.0