]> Sergey Matveev's repositories - public-inbox.git/blob - t/config.t
feed: support publicinbox.<name>.feedmax
[public-inbox.git] / t / config.t
1 # Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
2 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
3 use strict;
4 use warnings;
5 use Test::More;
6 use PublicInbox::Config;
7 use File::Temp qw/tempdir/;
8 my $tmpdir = tempdir('pi-config-XXXXXX', TMPDIR => 1, CLEANUP => 1);
9
10 {
11         is(system(qw(git init -q --bare), $tmpdir), 0, "git init successful");
12         my @cmd = ('git', "--git-dir=$tmpdir", qw(config foo.bar hihi));
13         is(system(@cmd), 0, "set config");
14
15         my $tmp = PublicInbox::Config->new("$tmpdir/config");
16
17         is("hihi", $tmp->{"foo.bar"}, "config read correctly");
18         is("true", $tmp->{"core.bare"}, "used --bare repo");
19 }
20
21 {
22         my $f = "examples/public-inbox-config";
23         ok(-r $f, "$f is readable");
24
25         my $cfg = PublicInbox::Config->new($f);
26         is_deeply($cfg->lookup('meta@public-inbox.org'), {
27                 'mainrepo' => '/home/pi/meta-main.git',
28                 'address' => 'meta@public-inbox.org',
29                 'domain' => 'public-inbox.org',
30                 'url' => 'http://example.com/meta',
31                 -primary_address => 'meta@public-inbox.org',
32                 'name' => 'meta',
33                 feedmax => 100,
34                 -pi_config => $cfg,
35         }, "lookup matches expected output");
36
37         is($cfg->lookup('blah@example.com'), undef,
38                 "non-existent lookup returns undef");
39
40         my $test = $cfg->lookup('test@public-inbox.org');
41         is_deeply($test, {
42                 'address' => ['try@public-inbox.org',
43                               'sandbox@public-inbox.org',
44                               'test@public-inbox.org'],
45                 -primary_address => 'try@public-inbox.org',
46                 'mainrepo' => '/home/pi/test-main.git',
47                 'domain' => 'public-inbox.org',
48                 'name' => 'test',
49                 feedmax => 100,
50                 'url' => 'http://example.com/test',
51                 -pi_config => $cfg,
52         }, "lookup matches expected output for test");
53 }
54
55
56 {
57         my $cfgpfx = "publicinbox.test";
58         my @altid = qw(serial:gmane:file=a serial:enamg:file=b);
59         my $config = PublicInbox::Config->new({
60                 "$cfgpfx.address" => 'test@example.com',
61                 "$cfgpfx.mainrepo" => '/path/to/non/existent',
62                 "$cfgpfx.altid" => [ @altid ],
63         });
64         my $ibx = $config->lookup_name('test');
65         is_deeply($ibx->{altid}, [ @altid ]);
66 }
67
68 done_testing();