From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 308951FA05 for ; Sat, 18 Apr 2020 03:38:54 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/8] inbox: don't memoize missing description|cloneurl Date: Sat, 18 Apr 2020 03:38:48 +0000 Message-Id: <20200418033853.9798-4-e@yhbt.net> In-Reply-To: <20200418033853.9798-1-e@yhbt.net> References: <20200418033853.9798-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: It's probably common to have inboxes initially setup without these files properly configured, so don't memoize at that stage. --- lib/PublicInbox/Inbox.pm | 13 ++++++++----- t/inbox.t | 19 +++++++++++++++++++ 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm index 95ffd039..e49f85fc 100644 --- a/lib/PublicInbox/Inbox.pm +++ b/lib/PublicInbox/Inbox.pm @@ -219,19 +219,22 @@ sub try_cat { sub description { my ($self) = @_; - $self->{description} //= do { + ($self->{description} //= do { my $desc = try_cat("$self->{inboxdir}/description"); local $/ = "\n"; chomp $desc; $desc =~ s/\s+/ /smg; - $desc eq '' ? '($INBOX_DIR/description missing)' : $desc; - }; + $desc eq '' ? undef : $desc; + }) // '($INBOX_DIR/description missing)'; } sub cloneurl { my ($self) = @_; - $self->{cloneurl} //= - [ split(/\s+/s, try_cat("$self->{inboxdir}/cloneurl")) ]; + ($self->{cloneurl} //= do { + my $s = try_cat("$self->{inboxdir}/cloneurl"); + my @urls = split(/\s+/s, $s); + scalar(@urls) ? \@urls : undef + }) // []; } sub base_url { diff --git a/t/inbox.t b/t/inbox.t index 5f86440d..b59d5dba 100644 --- a/t/inbox.t +++ b/t/inbox.t @@ -4,12 +4,31 @@ use strict; use warnings; use Test::More; use_ok 'PublicInbox::Inbox'; +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' ]}); 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();