Merge pull request #795 from rhansen/missing-semicolon
tests: Add missing semicolon; prevent similar future bugs
This commit is contained in:
commit
741a2345ea
10 changed files with 56 additions and 39 deletions
|
@ -87,6 +87,7 @@ m4_foreach_w([_m], [
|
|||
# then some tests will fail. Only prints a warning if not installed.
|
||||
m4_foreach_w([_m], [
|
||||
B
|
||||
Exporter
|
||||
File::Spec::Functions
|
||||
File::Temp
|
||||
List::Util
|
||||
|
@ -100,7 +101,6 @@ m4_foreach_w([_m], [
|
|||
# prints a warning if not installed.
|
||||
m4_foreach_w([_m], [
|
||||
Carp
|
||||
Exporter
|
||||
HTTP::Daemon=6.12
|
||||
HTTP::Daemon::SSL
|
||||
HTTP::Message::PSGI
|
||||
|
@ -112,6 +112,7 @@ m4_foreach_w([_m], [
|
|||
Test::Warnings
|
||||
Time::HiRes
|
||||
URI
|
||||
parent
|
||||
], [AX_PROG_PERL_MODULES([_m], [],
|
||||
[AC_MSG_WARN([some tests may be skipped due to missing module _m])])])
|
||||
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
use Test::More;
|
||||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
use ddclient::t::ip;
|
||||
|
||||
httpd_required();
|
||||
|
||||
$ddclient::globals{'ssl_ca_file'} = $ca_file;
|
||||
|
||||
for my $ipv ('4', '6') {
|
||||
|
|
|
@ -7,21 +7,42 @@ use warnings;
|
|||
use parent qw(ddclient::Test::Fake::HTTPD);
|
||||
|
||||
use Exporter qw(import);
|
||||
use JSON::PP;
|
||||
use Test::More;
|
||||
BEGIN { require 'ddclient'; }
|
||||
use ddclient::t::ip;
|
||||
|
||||
our @EXPORT = qw(
|
||||
httpd
|
||||
httpd_ok httpd_required $httpd_supported $httpd_support_error
|
||||
httpd_ipv6_ok httpd_ipv6_required $httpd_ipv6_supported $httpd_ipv6_support_error
|
||||
httpd_ssl_ok httpd_ssl_required $httpd_ssl_supported $httpd_ssl_support_error
|
||||
$ca_file $certdir $other_ca_file
|
||||
$textplain
|
||||
);
|
||||
|
||||
our $httpd_ssl_support_error;
|
||||
our $httpd_ssl_supported = eval { require HTTP::Daemon::SSL; 1; } or $httpd_ssl_support_error = $@;
|
||||
our $httpd_supported;
|
||||
our $httpd_support_error;
|
||||
BEGIN {
|
||||
$httpd_supported = eval {
|
||||
require parent; parent->import(qw(ddclient::Test::Fake::HTTPD));
|
||||
require JSON::PP; JSON::PP->import();
|
||||
1;
|
||||
} or $httpd_support_error = $@;
|
||||
}
|
||||
|
||||
sub httpd_ok {
|
||||
ok($httpd_supported, "HTTPD is supported") or diag($httpd_support_error);
|
||||
}
|
||||
|
||||
sub httpd_required {
|
||||
plan(skip_all => $httpd_support_error) if !$httpd_supported;
|
||||
}
|
||||
|
||||
our $httpd_ssl_supported = $httpd_supported;
|
||||
our $httpd_ssl_support_error = $httpd_support_error;
|
||||
$httpd_ssl_supported = eval { require HTTP::Daemon::SSL; 1; }
|
||||
or $httpd_ssl_support_error = $@
|
||||
if $httpd_ssl_supported;
|
||||
|
||||
sub httpd_ssl_ok {
|
||||
ok($httpd_ssl_supported, "SSL is supported") or diag($httpd_ssl_support_error);
|
||||
|
@ -31,8 +52,11 @@ sub httpd_ssl_required {
|
|||
plan(skip_all => $httpd_ssl_support_error) if !$httpd_ssl_supported;
|
||||
}
|
||||
|
||||
our $httpd_ipv6_support_error;
|
||||
our $httpd_ipv6_supported = $ipv6_supported or $httpd_ipv6_support_error = $ipv6_support_error;
|
||||
our $httpd_ipv6_supported = $httpd_supported;
|
||||
our $httpd_ipv6_support_error = $httpd_support_error;
|
||||
$httpd_ipv6_supported = $ipv6_supported
|
||||
or $httpd_ipv6_support_error = $ipv6_support_error
|
||||
if $httpd_ipv6_supported;
|
||||
$httpd_ipv6_supported = eval { require HTTP::Daemon; HTTP::Daemon->VERSION(6.12); }
|
||||
or $httpd_ipv6_support_error = $@
|
||||
if $httpd_ipv6_supported;
|
||||
|
@ -104,7 +128,7 @@ sub reset {
|
|||
|
||||
our $certdir = "$ENV{abs_top_srcdir}/t/lib/ddclient/Test/Fake/HTTPD";
|
||||
our $ca_file = "$certdir/dummy-ca-cert.pem";
|
||||
our $other_ca_file = "$certdir/other-ca-cert.pem"
|
||||
our $other_ca_file = "$certdir/other-ca-cert.pem";
|
||||
|
||||
my %daemons;
|
||||
|
||||
|
@ -112,6 +136,7 @@ sub httpd {
|
|||
my ($ipv, $ssl) = @_;
|
||||
$ipv //= '';
|
||||
$ssl = !!$ssl;
|
||||
return undef if !$httpd_supported;
|
||||
return undef if $ipv eq '6' && !$httpd_ipv6_supported;
|
||||
return undef if $ssl && !$httpd_ssl_supported;
|
||||
if (!defined($daemons{$ipv}{$ssl})) {
|
||||
|
|
|
@ -2,10 +2,9 @@ use Test::More;
|
|||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
BEGIN { eval { require JSON::PP; 1; } or plan(skip_all => $@); JSON::PP->import(); }
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
|
||||
httpd_required();
|
||||
|
||||
ddclient::load_json_support('directnic');
|
||||
|
||||
|
|
|
@ -2,10 +2,9 @@ use Test::More;
|
|||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
BEGIN { eval { require JSON::PP; 1; } or plan(skip_all => $@); JSON::PP->import(); }
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
|
||||
httpd_required();
|
||||
|
||||
ddclient::load_json_support('dnsexit2');
|
||||
|
||||
|
|
|
@ -2,10 +2,9 @@ use Test::More;
|
|||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
use MIME::Base64;
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
|
||||
httpd_required();
|
||||
|
||||
httpd()->run(sub {
|
||||
my ($req) = @_;
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
use Test::More;
|
||||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
use ddclient::t::ip;
|
||||
|
||||
httpd_required();
|
||||
|
||||
httpd('4')->run(
|
||||
sub { return [200, ['Content-Type' => 'text/plain'], ['127.0.0.1 skip 127.0.0.2']]; });
|
||||
httpd('6')->run(
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
use Test::More;
|
||||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
use ddclient::t::ip;
|
||||
|
||||
local $ddclient::globals{debug} = 1;
|
||||
local $ddclient::globals{verbose} = 1;
|
||||
|
||||
httpd_required();
|
||||
httpd_ssl_required();
|
||||
|
||||
httpd('4', 1)->run(sub { return [200, $textplain, ['127.0.0.1']]; });
|
||||
|
|
|
@ -6,12 +6,11 @@ BEGIN { eval { require JSON::PP; 1; } or plan(skip_all => $@); JSON::PP->import(
|
|||
use List::Util qw(max);
|
||||
use Scalar::Util qw(refaddr);
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
use ddclient::t::ip;
|
||||
|
||||
httpd_required();
|
||||
|
||||
httpd('4')->run();
|
||||
httpd('6')->run() if httpd('6');
|
||||
local %ddclient::builtinweb = (
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
use Test::More;
|
||||
BEGIN { SKIP: { eval { require Test::Warnings; 1; } or skip($@, 1); } }
|
||||
BEGIN { eval { require 'ddclient'; } or BAIL_OUT($@); }
|
||||
BEGIN {
|
||||
eval { require ddclient::t::HTTPD; 1; } or plan(skip_all => $@);
|
||||
ddclient::t::HTTPD->import();
|
||||
}
|
||||
use ddclient::t::HTTPD;
|
||||
use ddclient::t::ip;
|
||||
|
||||
httpd_required();
|
||||
|
||||
my $builtinweb = 't/use_web.pl builtinweb';
|
||||
my $h = 't/use_web.pl hostname';
|
||||
|
||||
|
|
Loading…
Reference in a new issue