Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 5E7C2431FCF for ; Tue, 2 Apr 2013 15:43:21 -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 zND2GJ1QKpH5 for ; Tue, 2 Apr 2013 15:43:17 -0700 (PDT) Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 22474429E33 for ; Tue, 2 Apr 2013 15:43:02 -0700 (PDT) Received: by mail-pa0-f42.google.com with SMTP id kq13so541115pab.29 for ; Tue, 02 Apr 2013 15:43:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=cxDsnDrvNG3VLmMlXpW4HjF9n69aOLUvC7UC4Jv7wzs=; b=0DO1ozW5s1GlEdtzlU7dkPW0jQU+iO3sYVoFIN4iXFmVI/xUl9tBTselR65BOQ4LgD GJsDFaftdpocUIhgGa96CDm/koszrwfwOnCiLA30J9UB6yKSy+tHmaVuKFHxdZtV11Xk TgPmWRxDiyIVQP/CXnDqApJGfp9QamjWVwPN8IEMJZJtHlt0HneOFIm5PslCAbHifyDD 4CbM3u92d2PzD/tQWIEA4Lmhjd77PnEFfHork3N9Wk0wT2qsV4g3+vMcW7tF6i1nSv4a aR6qcBPqHASDGBtbMJPNqRO/Vl7q96VW1T7vyg2K6C/xyQdt8bDFvfocmaPHQNvICYvm lkMw== X-Received: by 10.66.253.232 with SMTP id ad8mr28107674pad.119.1364942581416; Tue, 02 Apr 2013 15:43:01 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPS id li15sm4054973pab.2.2013.04.02.15.42.58 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 02 Apr 2013 15:43:00 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v5 09/12] test: test insert --folder option Date: Wed, 3 Apr 2013 09:41:54 +1100 Message-Id: <1364942517-6982-10-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.12.1 In-Reply-To: <1364942517-6982-1-git-send-email-novalazy@gmail.com> References: <1364942517-6982-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: Tue, 02 Apr 2013 22:43:21 -0000 Add tests for notmuch insert --folder option. --- test/insert | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/test/insert b/test/insert index d880af9..44e071c 100755 --- a/test/insert +++ b/test/insert @@ -66,4 +66,21 @@ notmuch insert +custom -unread < "$gen_msg_filename" output=$(notmuch count tag:custom NOT tag:unread) test_expect_equal "$output" "1" +test_begin_subtest "Insert message, folder" +gen_insert_msg +notmuch insert --folder=Drafts < "$gen_msg_filename" +output=$(notmuch search --output=files folder:Drafts) +dirname=$(dirname "$output") +test_expect_equal "$dirname" "$MAIL_DIR/Drafts/cur" + +test_begin_subtest "Insert message, folder and tags" +gen_insert_msg +notmuch insert --folder=Drafts +draft -unread < "$gen_msg_filename" +output=$(notmuch count folder:Drafts tag:draft NOT tag:unread) +test_expect_equal "$output" "1" + +gen_insert_msg +test_expect_code 1 "Insert message, non-existent folder" \ + "notmuch insert --folder=nonesuch < $gen_msg_filename" + test_done -- 1.7.12.1