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 D42F7431FAF for ; Sun, 5 May 2013 12:27:50 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 tbzJN8UIVYem for ; Sun, 5 May 2013 12:27:47 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id EA511431FAE for ; Sun, 5 May 2013 12:27:46 -0700 (PDT) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id A98C2100033 for ; Sun, 5 May 2013 22:27:44 +0300 (EEST) From: Tomi Ollila To: notmuch@notmuchmail.org Subject: Re: [PATCH 1/2] test: add basic test for notmuch setup In-Reply-To: <9971e27c7c3fe569765bbca0f21de128ad1e4fac.1367781422.git.jani@nikula.org> References: <9971e27c7c3fe569765bbca0f21de128ad1e4fac.1367781422.git.jani@nikula.org> User-Agent: Notmuch/0.15.2+75~gd7fa7c4 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain 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: Sun, 05 May 2013 19:27:51 -0000 On Sun, May 05 2013, Jani Nikula wrote: > And annotate with test_subtest_known_broken. Hooray. > --- LGTM (both patches). Tests pass (both make test and hand-tested setup without having file ~/.notmuch-config). Tomi > test/notmuch-test | 1 + > test/setup | 28 ++++++++++++++++++++++++++++ > 2 files changed, 29 insertions(+) > create mode 100755 test/setup > > diff --git a/test/notmuch-test b/test/notmuch-test > index ca9c3dc..27a144e 100755 > --- a/test/notmuch-test > +++ b/test/notmuch-test > @@ -20,6 +20,7 @@ TESTS=" > basic > help-test > config > + setup > new > count > search > diff --git a/test/setup b/test/setup > new file mode 100755 > index 0000000..8cc5576 > --- /dev/null > +++ b/test/setup > @@ -0,0 +1,28 @@ > +#!/usr/bin/env bash > + > +test_description='"notmuch setup"' > +. ./test-lib.sh > + > +test_begin_subtest "Create a new config interactively" > +test_subtest_known_broken > +notmuch --config=new-notmuch-config > /dev/null < +Test Suite > +test.suite@example.com > +another.suite@example.com > + > +/path/to/maildir > +foo bar > +baz > +EOF > +output=$(notmuch --config=new-notmuch-config config list) > +test_expect_equal "$output" "\ > +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; > +new.ignore= > +search.exclude_tags=baz; > +maildir.synchronize_flags=true" > + > +test_done > -- > 1.7.10.4 > > _______________________________________________ > notmuch mailing list > notmuch@notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch