From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 4BD5C429E2E for ; Fri, 21 Jun 2013 22:48:59 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Msd29P86WspV for ; Fri, 21 Jun 2013 22:48:53 -0700 (PDT) Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 8A4CB431FBD for ; Fri, 21 Jun 2013 22:47:57 -0700 (PDT) Received: by mail-pa0-f47.google.com with SMTP id kl14so8705376pab.6 for ; Fri, 21 Jun 2013 22:47:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=YPwR379/zV05Okgh5XP41HNIKRY8a0jyAtZZVJLMf7E=; b=bwMw+8l1yLM6PQVQZj2YW2a6pvms3XB3DDSujVdhLVprJ6fYLMg2AQFjq5+w/GfZyj R+0e4PwxNK/vlo0nGJ0pXq0J/aKdeNBC33WEuzxg5iUxW2yuypUuJhDfpJuJSgSPrIPK zzmbG4Hq1qS9o24eZtwm+gslJ9O6MpNsfMaDwztqxDE5iKLdc16iNJb6O7XMcrRIRFKZ ow35h++6QhThGXJi3UZKDPjVUqj3fSMsbzO3qWq/CiyZrppFB6bDfJfEQ1stqx8QxlNt ga8A89zxO+xmcwJFLL1AVJVuWoOXsy2pp3Oe0dTOWgcqv+fyRqoVgL8nfim4MUfjh/zj k1Vw== X-Received: by 10.66.149.170 with SMTP id ub10mr19105634pab.206.1371880076775; Fri, 21 Jun 2013 22:47:56 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPSA id yj2sm7851931pbb.40.2013.06.21.22.47.54 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 21 Jun 2013 22:47:56 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v6 12/12] test: test insert --create-folder option Date: Sat, 22 Jun 2013 15:46:48 +1000 Message-Id: <1371880008-18312-13-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.12.1 In-Reply-To: <1371880008-18312-1-git-send-email-novalazy@gmail.com> References: <1371880008-18312-1-git-send-email-novalazy@gmail.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2013 05:48:59 -0000 Add tests for notmuch insert --create-folder option. --- test/insert | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/test/insert b/test/insert index f573c76..021edb6 100755 --- a/test/insert +++ b/test/insert @@ -94,4 +94,28 @@ gen_insert_msg test_expect_code 1 "Insert message into non-existent folder" \ "notmuch insert --folder=nonesuch < $gen_msg_filename" +test_begin_subtest "Insert message, create folder" +gen_insert_msg +notmuch insert --folder=F --create-folder +folder < "$gen_msg_filename" +output=$(notmuch search --output=files folder:F tag:folder) +basename=$(basename "$output") +test_expect_equal_file "$gen_msg_filename" "$MAIL_DIR/F/cur/${basename}" + +test_begin_subtest "Insert message, create subfolder" +gen_insert_msg +notmuch insert --folder=F/G/H/I/J --create-folder +folder < "$gen_msg_filename" +output=$(notmuch search --output=files folder:F/G/H/I/J tag:folder) +basename=$(basename "$output") +test_expect_equal_file "$gen_msg_filename" "${MAIL_DIR}/F/G/H/I/J/cur/${basename}" + +test_begin_subtest "Insert message, create existing subfolder" +gen_insert_msg +notmuch insert --folder=F/G/H/I/J --create-folder +folder < "$gen_msg_filename" +output=$(notmuch count folder:F/G/H/I/J tag:folder) +test_expect_equal "$output" "2" + +gen_insert_msg +test_expect_code 1 "Insert message, create invalid subfolder" \ + "notmuch insert --folder=../G --create-folder $gen_msg_filename" + test_done -- 1.7.12.1