about summary refs log tree commit homepage
path: root/t/config_limiter.t
diff options
context:
space:
mode:
Diffstat (limited to 't/config_limiter.t')
-rw-r--r--t/config_limiter.t50
1 files changed, 50 insertions, 0 deletions
diff --git a/t/config_limiter.t b/t/config_limiter.t
new file mode 100644
index 00000000..bfea1510
--- /dev/null
+++ b/t/config_limiter.t
@@ -0,0 +1,50 @@
+# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
+use warnings;
+use Test::More;
+use PublicInbox::Config;
+my $cfgpfx = "publicinbox.test";
+{
+        my $config = PublicInbox::Config->new({
+                "$cfgpfx.address" => 'test@example.com',
+                "$cfgpfx.mainrepo" => '/path/to/non/existent',
+                "$cfgpfx.httpbackendmax" => 12,
+        });
+        my $ibx = $config->lookup_name('test');
+        my $git = $ibx->git;
+        my $old = "$git";
+        my $lim = $git->{-httpbackend_limiter};
+        ok($lim, 'Limiter exists');
+        is($lim->{max}, 12, 'limiter has expected slots');
+        $git = undef;
+        $ibx->{git} = undef;
+        $git = $ibx->git;
+        isnt($old, "$git", 'got new Git object');
+        is("$git->{-httpbackend_limiter}", "$lim", 'same limiter');
+}
+
+{
+        my $config = PublicInbox::Config->new({
+                'limiter.named.max' => 3,
+                "$cfgpfx.address" => 'test@example.com',
+                "$cfgpfx.mainrepo" => '/path/to/non/existent',
+                "$cfgpfx.httpbackendmax" => 'named',
+        });
+        my $ibx = $config->lookup_name('test');
+        my $git = $ibx->git;
+        ok($git, 'got git object');
+        my $old = "$git";
+        my $lim = $git->{-httpbackend_limiter};
+        ok($lim, 'Limiter exists');
+        is($lim->{max}, 3, 'limiter has expected slots');
+        $git = undef;
+        $ibx->{git} = undef;
+        PublicInbox::Inbox::weaken_task;
+        $git = $ibx->git;
+        isnt($old, "$git", 'got new Git object');
+        is("$git->{-httpbackend_limiter}", "$lim", 'same limiter');
+        is($lim->{max}, 3, 'limiter has expected slots');
+}
+
+done_testing;