X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Finbox.t;h=b59d5dba8c0fbd1c6000b06175f97d136a43ad3c;hb=95e5b6c343c45bb303db67fe7eb77e395c031e8d;hp=9909dc530fbdd964b6b0bbd787abd4cc2bd5834f;hpb=d9d19e3a74b8331f39098b254a8865659948fc7a;p=public-inbox.git diff --git a/t/inbox.t b/t/inbox.t index 9909dc53..b59d5dba 100644 --- a/t/inbox.t +++ b/t/inbox.t @@ -1,15 +1,34 @@ -# Copyright (C) 2016 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ 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 "blah\n" or die; + close $fh or die; +} +is_deeply($x->cloneurl, ['https://example.com/inbox'], 'cloneurls update'); +is($x->description, '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, 'blah', 'description memoized'); done_testing();