]> Sergey Matveev's repositories - public-inbox.git/blob - t/config.t
update copyright headers and email addresses
[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(CLEANUP => 1);
9
10 {
11         is(system(qw(git init -q --bare), $tmpdir), 0, "git init successful");
12         {
13                 local $ENV{GIT_DIR} = $tmpdir;
14                 is(system(qw(git config foo.bar hihi)), 0, "set config");
15         }
16
17         my $tmp = PublicInbox::Config->new("$tmpdir/config");
18
19         is("hihi", $tmp->{"foo.bar"}, "config read correctly");
20         is("true", $tmp->{"core.bare"}, "used --bare repo");
21 }
22
23 {
24         my $f = "examples/public-inbox-config";
25         ok(-r $f, "$f is readable");
26
27         my $cfg = PublicInbox::Config->new($f);
28         is_deeply($cfg->lookup('meta@public-inbox.org'), {
29                 'mainrepo' => '/home/pi/meta-main.git',
30                 'address' => 'meta@public-inbox.org',
31                 -primary_address => 'meta@public-inbox.org',
32                 'listname' => 'meta',
33         }, "lookup matches expected output");
34
35         is($cfg->lookup('blah@example.com'), undef,
36                 "non-existent lookup returns undef");
37
38         my $test = $cfg->lookup('test@public-inbox.org');
39         is_deeply($test, {
40                 'address' => ['try@public-inbox.org',
41                               'sandbox@public-inbox.org',
42                               'test@public-inbox.org'],
43                 -primary_address => 'try@public-inbox.org',
44                 'mainrepo' => '/home/pi/test-main.git',
45                 'listname' => 'test',
46         }, "lookup matches expected output for test");
47 }
48
49 done_testing();