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 1CB3B431FC4 for ; Thu, 31 Oct 2013 00:49:03 -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 F5CeEFT+AS+v for ; Thu, 31 Oct 2013 00:48:55 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id 78EA1431FC2 for ; Thu, 31 Oct 2013 00:48:55 -0700 (PDT) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id 3B4DE1000B2; Thu, 31 Oct 2013 09:48:47 +0200 (EET) From: Tomi Ollila To: Ben Gamari , notmuch@notmuchmail.org Subject: Re: [PATCH 1/4] test: Add compact test In-Reply-To: <1383192608-31047-1-git-send-email-bgamari.foss@gmail.com> References: <1383192608-31047-1-git-send-email-bgamari.foss@gmail.com> User-Agent: Notmuch/0.16+119~g219c55f (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: Thu, 31 Oct 2013 07:49:03 -0000 On Thu, Oct 31 2013, Ben Gamari wrote: > Signed-off-by: Ben Gamari LGTM. Tomi > --- > test/compact | 32 ++++++++++++++++++++++++++++++++ > test/notmuch-test | 1 + > 2 files changed, 33 insertions(+) > create mode 100755 test/compact > > diff --git a/test/compact b/test/compact > new file mode 100755 > index 0000000..5bb5cea > --- /dev/null > +++ b/test/compact > @@ -0,0 +1,32 @@ > +#!/usr/bin/env bash > +test_description='"notmuch compact"' > +. ./test-lib.sh > + > +add_message '[subject]=One' > +add_message '[subject]=Two' > +add_message '[subject]=Three' > + > +notmuch tag +tag1 \* > +notmuch tag +tag2 subject:Two > +notmuch tag -tag1 +tag3 subject:Three > + > +test_expect_success "Running compact" "notmuch compact" > + > +test_begin_subtest "Compact preserves database" > +output=$(notmuch search \* | notmuch_search_sanitize) > +test_expect_equal "$output" "\ > +thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag1 unread) > +thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag2 unread) > +thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Three (inbox tag3 unread)" > + > +test_begin_subtest "Restoring backup" > +rm -Rf ${TEST_TMPDIR}/mail/xapian > +mv ${TEST_TMPDIR}/mail/xapian.old ${TEST_TMPDIR}/mail/xapian > + > +output=$(notmuch search \* | notmuch_search_sanitize) > +test_expect_equal "$output" "\ > +thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag1 unread) > +thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag2 unread) > +thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Three (inbox tag3 unread)" > + > +test_done > diff --git a/test/notmuch-test b/test/notmuch-test > index aa28bb0..ec94baf 100755 > --- a/test/notmuch-test > +++ b/test/notmuch-test > @@ -19,6 +19,7 @@ cd $(dirname "$0") > TESTS=" > basic > help-test > + compact > config > setup > new > -- > 1.8.3.2 > > _______________________________________________ > notmuch mailing list > notmuch@notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch