]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_text.t
wwwtext: support $INBOX_URL/_/text/config/raw
[public-inbox.git] / t / psgi_text.t
index 436cb02309b93a04a54b27035e1047c9cd0ceba0..bdc1ebfdbce776bb525c2b8dece599051c18d6e8 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2019 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -34,6 +34,13 @@ test_psgi(sub { $www->call(@_) }, sub {
        $res = $cb->(GET('/test/_/text/help/'));
        like($res->content, qr!<title>public-inbox help.*</title>!,
                'default help');
+       $res = $cb->(GET('/test/_/text/config/raw'));
+       my $f = "$tmpdir/cfg";
+       open my $fh, '>', $f or die;
+       print $fh $res->content or die;
+       close $fh or die;
+       my $cfg = PublicInbox::Config->new($f);
+       is($cfg->{"$cfgpfx.address"}, $addr, 'got expected address in config');
 });
 
 done_testing();