]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/inbox.t
public-inbox 1.6.1 - minor bugfix release
[public-inbox.git] / t / inbox.t
index 45ba1df2e5576496c164807378f98857676c8272..08f1724f092698bb76b1e8deeb30b68a8c5392b9 100644 (file)
--- a/t/inbox.t
+++ b/t/inbox.t
@@ -1,12 +1,35 @@
-# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2020 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_ok 'PublicInbox::Inbox';
-my $x = PublicInbox::Inbox->new({url => '//example.com/test/'});
+use File::Temp 0.19 ();
+my $x = PublicInbox::Inbox->new({url => [ '//example.com/test/' ]});
 is($x->base_url, 'https://example.com/test/', 'expanded protocol-relative');
-$x = PublicInbox::Inbox->new({url => 'http://example.com/test'});
+$x = PublicInbox::Inbox->new({url => [ 'http://example.com/test' ]});
 is($x->base_url, 'http://example.com/test/', 'added trailing slash');
 
+$x = PublicInbox::Inbox->new({});
+
+is($x->base_url, undef, 'undef base_url allowed');
+my $tmpdir = File::Temp->newdir('pi-inbox-XXXXXX', TMPDIR => 1);
+$x->{inboxdir} = $tmpdir->dirname;
+is_deeply($x->cloneurl, [], 'no cloneurls');
+is($x->description, '($INBOX_DIR/description missing)', 'default description');
+{
+       open my $fh, '>', "$x->{inboxdir}/cloneurl" or die;
+       print $fh "https://example.com/inbox\n" or die;
+       close $fh or die;
+       open $fh, '>', "$x->{inboxdir}/description" or die;
+       print $fh "\xc4\x80blah\n" or die;
+       close $fh or die;
+}
+is_deeply($x->cloneurl, ['https://example.com/inbox'], 'cloneurls update');
+ok(utf8::valid($x->description), 'description is utf8::valid');
+is($x->description, "\x{100}blah", 'description updated');
+is(unlink(glob("$x->{inboxdir}/*")), 2, 'unlinked cloneurl & description');
+is_deeply($x->cloneurl, ['https://example.com/inbox'], 'cloneurls memoized');
+is($x->description, "\x{100}blah", 'description memoized');
+
 done_testing();