From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id qE3HEE5wHV9ICQAA0tVLHw (envelope-from ) for ; Sun, 26 Jul 2020 12:00:14 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id 2FqdDE5wHV8RfQAAbx9fmQ (envelope-from ) for ; Sun, 26 Jul 2020 12:00:14 +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) server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 81D0F9404CE for ; Sun, 26 Jul 2020 12:00:13 +0000 (UTC) Received: from [144.217.243.247] (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id 6EA7A20233; Sun, 26 Jul 2020 08:00:01 -0400 (EDT) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by mail.notmuchmail.org (Postfix) with ESMTP id 7C1481F70D for ; Sun, 26 Jul 2020 07:59:58 -0400 (EDT) Received: by fethera.tethera.net (Postfix, from userid 1001) id 359D060AB8; Sun, 26 Jul 2020 07:59:58 -0400 (EDT) Received: (nullmailer pid 1448367 invoked by uid 1000); Sun, 26 Jul 2020 11:59:43 -0000 From: David Bremner To: notmuch@notmuchmail.org Cc: David Bremner Subject: [PATCH 10/13] test: regression test for n_d_get_config_list on closed db. Date: Sun, 26 Jul 2020 08:59:28 -0300 Message-Id: <20200726115931.1448056-11-david@tethera.net> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200726115931.1448056-1-david@tethera.net> References: <20200726115931.1448056-1-david@tethera.net> MIME-Version: 1.0 Message-ID-Hash: IBZMRLJVWEOZXPG2CLP63SFASCG25CQO X-Message-ID-Hash: IBZMRLJVWEOZXPG2CLP63SFASCG25CQO 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-Scanner: scn0 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-Spam-Score: 0.03 X-TUID: yEiuOO4faagx Exception is caught. --- test/T590-libconfig.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test/T590-libconfig.sh b/test/T590-libconfig.sh index 46f3a76d..602fad0b 100755 --- a/test/T590-libconfig.sh +++ b/test/T590-libconfig.sh @@ -61,6 +61,21 @@ valid = 0 EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "notmuch_database_get_config_list: closed db" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} +{ + notmuch_config_list_t *list; + EXPECT0(notmuch_database_close (db)); + stat = notmuch_database_get_config_list (db, "nonexistent", &list); + printf("%d\n", stat == NOTMUCH_STATUS_XAPIAN_EXCEPTION); +} +EOF +cat <<'EOF' >EXPECTED +== stdout == +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "notmuch_database_get_config_list: all pairs" cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} -- 2.27.0