]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config.t
INSTALL: recommend inotify|kqueue modules for -watch
[public-inbox.git] / t / config.t
index b7a4ceb62e030d1efbd31c4ad53e7b0eec548cf6..a3c74fa2584771f02ffa5c21353471f32df13e66 100644 (file)
@@ -9,12 +9,12 @@ my $tmpdir = tempdir('pi-config-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 
 {
        is(system(qw(git init -q --bare), $tmpdir), 0, "git init successful");
-       my @cmd = ('git', "--git-dir=$tmpdir", qw(config foo.bar hihi));
+       my @cmd = ('git', "--git-dir=$tmpdir", qw(config foo.bar), "hi\nhi");
        is(system(@cmd), 0, "set config");
 
        my $tmp = PublicInbox::Config->new("$tmpdir/config");
 
-       is("hihi", $tmp->{"foo.bar"}, "config read correctly");
+       is("hi\nhi", $tmp->{"foo.bar"}, "config read correctly");
        is("true", $tmp->{"core.bare"}, "used --bare repo");
 }
 
@@ -190,4 +190,24 @@ for my $s (@valid) {
                'inboxes share ::Git object');
 }
 
+{
+       my $check_git = !!$ENV{CHECK_GIT_BOOL};
+       for my $t (qw(TRUE true yes on 1 +1 -1 13 0x1 0x12 0X5)) {
+               is(PublicInbox::Config::_git_config_bool($t), 1, "$t is true");
+               if ($check_git) {
+                       is(`git -c test.val=$t config --bool test.val`,
+                               "true\n", "$t matches git-config behavior");
+               }
+       }
+       for my $f (qw(FALSE false no off 0 +0 +000 00 0x00 0X0)) {
+               is(PublicInbox::Config::_git_config_bool($f), 0, "$f is false");
+               if ($check_git) {
+                       is(`git -c test.val=$f config --bool test.val`,
+                               "false\n", "$f matches git-config behavior");
+               }
+       }
+       is(PublicInbox::Config::_git_config_bool('bogus'), undef,
+               'bogus is undef');
+}
+
 done_testing();