]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t: avoid "subtest" for Perl 5.10.1 compatibility
authorEric Wong <e@80x24.org>
Tue, 4 Jun 2019 11:29:39 +0000 (11:29 +0000)
committerEric Wong <e@80x24.org>
Tue, 4 Jun 2019 11:34:53 +0000 (11:34 +0000)
The version of Test::More from Perl 5.10.1 did not support
"subtest", and the earliest version which did is Perl 5.12.0

The good news is this gives me an excuse to parallelize
the indexlevels-mirror test by splitting it into two.
(it could be further split, even).

Update t/nntpd. to use PI_TEST_VERSION consistently while
we're at it.

MANIFEST
t/ds-leak.t
t/indexlevels-mirror-v1.t [new file with mode: 0644]
t/indexlevels-mirror.t
t/nntpd.t

index 8a3f2a4a3a229cc75b04092a5e0de1c31178d2dd..251f95f7e199c147b30a8c38a280870ed0840f01 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -204,6 +204,7 @@ t/httpd.t
 t/hval.t
 t/import.t
 t/inbox.t
+t/indexlevels-mirror-v1.t
 t/indexlevels-mirror.t
 t/init.t
 t/linkify.t
index 9e3243e92c6118a3d998560d832af4271c3634ed..dd8446dcd1f77e0f9a2d167ab0c057c917a443bb 100644 (file)
@@ -8,7 +8,7 @@ use warnings;
 use Test::More;
 use_ok 'PublicInbox::DS';
 
-subtest('close-on-exec for epoll and kqueue' => sub {
+if ('close-on-exec for epoll and kqueue') {
        use PublicInbox::Spawn qw(spawn);
        my $pid;
        my $evfd_re = qr/(?:kqueue|eventpoll)/i;
@@ -29,7 +29,7 @@ subtest('close-on-exec for epoll and kqueue' => sub {
                waitpid($pid, 0);
        }
        PublicInbox::DS->Reset;
-});
+}
 
 SKIP: {
        # not bothering with BSD::Resource
diff --git a/t/indexlevels-mirror-v1.t b/t/indexlevels-mirror-v1.t
new file mode 100644 (file)
index 0000000..9998a09
--- /dev/null
@@ -0,0 +1,4 @@
+# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+$ENV{PI_TEST_VERSION} = 1;
+require './t/indexlevels-mirror.t';
index bf0f801822adf4970dae3e1bccdc0f9794b8e254..359749471bbb319f3d6a5eee1729d4300ff15da0 100644 (file)
@@ -9,12 +9,12 @@ use PublicInbox::InboxWritable;
 use File::Temp qw/tempdir/;
 require PublicInbox::Admin;
 require './t/common.perl';
-require_git(2.6);
-my $this = (split('/', __FILE__))[-1];
+my $PI_TEST_VERSION = $ENV{PI_TEST_VERSION} || 2;
+require_git('2.6') if $PI_TEST_VERSION == 2;
 
 foreach my $mod (qw(DBD::SQLite)) {
        eval "require $mod";
-       plan skip_all => "$mod missing for $this" if $@;
+       plan skip_all => "$mod missing for $0" if $@;
 }
 
 my $path = 'blib/script';
@@ -33,10 +33,11 @@ my $mime = PublicInbox::MIME->create(
 
 sub import_index_incremental {
        my ($v, $level) = @_;
-       my $tmpdir = tempdir("pi-$this-tmp-XXXXXX", TMPDIR => 1, CLEANUP => 1);
+       my $this = "pi-$v-$level-indexlevels";
+       my $tmpdir = tempdir("$this-tmp-XXXXXX", TMPDIR => 1, CLEANUP => 1);
        my $ibx = PublicInbox::Inbox->new({
                mainrepo => "$tmpdir/testbox",
-               name => "$this-$v",
+               name => $this,
                version => $v,
                -primary_address => 'test@example.com',
                indexlevel => $level,
@@ -165,24 +166,14 @@ sub import_index_incremental {
           'indexlevel detectable by Admin '.$v.$level);
 }
 
-# we can probably cull some other tests and put full/medium tests, here
-for my $level (qw(basic)) {
-       for my $v (1..2) {
-               subtest("v$v indexlevel=$level" => sub {
-                       import_index_incremental($v, $level);
-               })
-       }
-}
+# we can probably cull some other tests
+import_index_incremental($PI_TEST_VERSION, 'basic');
 
 SKIP: {
        require PublicInbox::Search;
        PublicInbox::Search::load_xapian() or skip 'Search::Xapian missing', 2;
-       for my $v (1..2) {
-               foreach my $l (qw(medium full)) {
-                       subtest("v$v indexlevel=$l" => sub {
-                               import_index_incremental($v, $l);
-                       });
-               }
+       foreach my $l (qw(medium full)) {
+               import_index_incremental($PI_TEST_VERSION, $l);
        }
 }
 
index aa62ff6036b86648ec9303f20d5cfee07b1fe784..c73cc122eaa009618fd6bab0df357fe5b23e6173 100644 (file)
--- a/t/nntpd.t
+++ b/t/nntpd.t
@@ -19,7 +19,7 @@ use Sys::Hostname;
 require './t/common.perl';
 
 # FIXME: make easier to test both versions
-my $version = $ENV{PI_VERSION} || 2;
+my $version = $ENV{PI_TEST_VERSION} || 2;
 require_git('2.6') if $version == 2;
 
 my $tmpdir = tempdir('pi-nntpd-XXXXXX', TMPDIR => 1, CLEANUP => 1);