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 9E5A6431FBD for ; Mon, 14 Oct 2013 18:13:19 -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 xsbaOO-LiZij for ; Mon, 14 Oct 2013 18:13:13 -0700 (PDT) Received: from mail-qc0-f170.google.com (mail-qc0-f170.google.com [209.85.216.170]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 99075431FAF for ; Mon, 14 Oct 2013 18:13:13 -0700 (PDT) Received: by mail-qc0-f170.google.com with SMTP id n9so2456851qcw.29 for ; Mon, 14 Oct 2013 18:13:12 -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:in-reply-to:references; bh=s6+xZwBuN9GIqyr36WPEvN3Mvmtlnnsmpy8ilby9S6A=; b=DkQJ9e3YmrFJr07Y0Q+odW3UjYiASayICT/wtn54P/Ks56XBeo10Fy588WUtG7MOhB q9mtT9cB5jU3X13VQ+ES5+klNN3BeI0ghRSa25RWG+9u+G/FQINmPhyzRSqrsnA7oI/W dLhLbwRlsFiYt2wfoUrNMIjRvR7baFJNzr5Sul31n1qloND46tyYqhFqIUspjuHVdGzj wT2WGZQpQuEGrHfOLtTAV48At5UrjLKWkofiwGInzQzplB9YSIyaXllmTeBB1nC3IsZt pi+vnFCPu1DvR0ug+MMYols+SlZ32AIG/JCftbCNpK3t2qCMBI1bIxTCS3tSu8B15fln iqBA== X-Received: by 10.224.123.13 with SMTP id n13mr26257198qar.33.1381799592009; Mon, 14 Oct 2013 18:13:12 -0700 (PDT) Received: from localhost.localdomain (pool-108-8-224-250.spfdma.east.verizon.net. [108.8.224.250]) by mx.google.com with ESMTPSA id og1sm105736333qeb.3.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 14 Oct 2013 18:13:11 -0700 (PDT) From: Ben Gamari To: notmuch@notmuchmail.org Subject: [PATCH 1/3] test: Add compact test Date: Mon, 14 Oct 2013 21:13:03 -0400 Message-Id: <1381799585-16274-2-git-send-email-bgamari.foss@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1381799585-16274-1-git-send-email-bgamari.foss@gmail.com> References: <1381799585-16274-1-git-send-email-bgamari.foss@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, 15 Oct 2013 01:13:20 -0000 Signed-off-by: Ben Gamari --- test/compact | 35 +++++++++++++++++++++++++++++++++++ test/notmuch-test | 1 + 2 files changed, 36 insertions(+) create mode 100755 test/compact diff --git a/test/compact b/test/compact new file mode 100755 index 0000000..54e85ab --- /dev/null +++ b/test/compact @@ -0,0 +1,35 @@ +#!/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_begin_subtest "Compacting" +notmuch compact +test_expect_success "compact" "notmuch compact" + +notmuch search \* +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 + +notmuch search \* +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.1.2