#!perl -w # Copyright (C) all contributors # License: AGPL-3.0+ use v5.12; use PublicInbox::TestCommon; use PublicInbox::MboxReader; use autodie qw(pipe close); my $test_tor = $ENV{TEST_TOR}; plan skip_all => "TEST_TOR unset" unless $test_tor; require_mods qw(IO::Socket::Socks IO::Socket::SSL Mail::IMAPClient Net::NNTP); unless ($test_tor =~ m!\Asocks5h://!i) { my $default = 'socks5h://127.0.0.1:9050'; diag "using $default (set TEST_TOR=socks5h://ADDR:PORT to override)"; $test_tor = $default; } my $onion = $ENV{TEST_ONION_HOST} // '7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion'; my $ng = 'inbox.comp.mail.public-inbox.meta'; my $nntp_url = $ENV{TEST_NNTP_ONION_URL} // "nntp://$onion/$ng"; my $imap_url = $ENV{TEST_IMAP_ONION_URL} // "imap://$onion/$ng.0"; my @cnv = qw(lei convert -o mboxrd:/dev/stdout); my @proxy_cli = ("--proxy=$test_tor"); my $proxy_cfg = "proxy=$test_tor"; test_lei(sub { # ensure TLS + SOCKS works ok !lei(qw(ls-mail-source imaps://mews.public-inbox.org/ -c), "imap.$proxy_cfg"), 'imaps fails on wrong hostname w/ Tor'; ok !lei(qw(ls-mail-source nntps://mews.public-inbox.org/ -c), "nntp.$proxy_cfg"), 'nntps fails on wrong hostname w/ Tor'; lei_ok qw(ls-mail-source imaps://news.public-inbox.org/ -c), "imap.$proxy_cfg"; lei_ok qw(ls-mail-source nntps://news.public-inbox.org/ -c), "nntp.$proxy_cfg"; my $run = {}; for my $args ([$nntp_url, @proxy_cli], [$imap_url, @proxy_cli], [ $nntp_url, '-c', "nntp.$proxy_cfg" ], [ $imap_url, '-c', "imap.$proxy_cfg" ]) { pipe(my $r, my $w); my $cmd = [@cnv, @$args]; my $td = start_script($cmd, undef, { 1 => $w, run_mode => 0 }); $args->[0] =~ s!\A(.+?://).*!$1...!; my $key = "@$args"; ok($td, "$key running"); $run->{$key} = { td => $td, r => $r }; } while (my ($key, $x) = each %$run) { my ($td, $r) = delete(@$x{qw(td r)}); eval { PublicInbox::MboxReader->mboxrd($r, sub { my ($eml) = @_; if ($key =~ m!\Anntps?://!i) { for (qw(Xref Newsgroups Path)) { $eml->header_set($_); } } push @{$x->{eml}}, $eml; close $r; $td->kill('-INT'); die "$key done\n"; }); }; chomp(my $done = $@); like($done, qr/\Q$key\E done/, $done); $td->join; } my @keys = keys %$run; my $first_key = shift @keys; for my $key (@keys) { is_deeply($run->{$key}, $run->{$first_key}, "`$key' matches `$first_key'"); } }); done_testing;