mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-06 00:39:44 +01:00
commit
92654b2899
12
.travis.yml
12
.travis.yml
@ -1,17 +1,15 @@
|
|||||||
language: perl
|
language: perl
|
||||||
perl:
|
perl:
|
||||||
- "5.18"
|
|
||||||
- "5.22"
|
|
||||||
- "5.24"
|
|
||||||
- "5.26"
|
- "5.26"
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- dnsutils
|
- dnsutils
|
||||||
|
- jsonlint
|
||||||
install:
|
install:
|
||||||
- cpanm Test::More
|
- cpanm --notest Test::More
|
||||||
- cpanm Data::Dumper
|
- cpanm --notest Data::Dumper
|
||||||
- cpanm JSON
|
- cpanm --notest JSON
|
||||||
- cpanm JSON::Validator
|
# - cpanm JSON::Validator
|
||||||
script:
|
script:
|
||||||
- prove -v
|
- prove -v
|
||||||
|
@ -2,63 +2,72 @@
|
|||||||
|
|
||||||
# This is more a PoC. Improvements welcome!
|
# This is more a PoC. Improvements welcome!
|
||||||
#
|
#
|
||||||
# Current catches:
|
|
||||||
# * JSON::Validator cannot swallow --json-pretty
|
|
||||||
# * other validators "Test::JSON", "Test::JSON::More", "JSON::Schema", "JSON::Parse" had issues too
|
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use Test::More;
|
use Test::More;
|
||||||
use JSON;
|
use JSON;
|
||||||
use JSON::Validator;
|
|
||||||
|
|
||||||
my $jv = JSON::Validator->new;
|
my $tests = 0;
|
||||||
my (
|
my $prg="./testssl.sh";
|
||||||
$out,
|
my $check2run ="--ip=one -q -p --color 0";
|
||||||
$json,
|
my $uri="";
|
||||||
$found,
|
my $json="";
|
||||||
$tests
|
my $out="";
|
||||||
);
|
# Blacklists we use to trigger an error:
|
||||||
$tests = 0;
|
my $socket_regex_bl='(e|E)rror|\.\/testssl\.sh: line |(f|F)atal';
|
||||||
|
my $openssl_regex_bl='(e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem';
|
||||||
|
|
||||||
my $hostn = "cloudflare.com";
|
die "Unable to open $prg" unless -f $prg;
|
||||||
my $hostm = "smtp-relay.gmail.com:587";
|
|
||||||
unlink 'tmp.json';
|
my $uri="cloudflare.com";
|
||||||
|
|
||||||
#1
|
#1
|
||||||
pass("Running testssl.sh against $hostn with plain JSON output");
|
printf "\n%s\n", "Unit testing plain JSON output --> $uri ...";
|
||||||
$tests++;
|
$out = `./testssl.sh $check2run --jsonfile tmp.json $uri`;
|
||||||
$out = `./testssl.sh --ssl-native --ip=one -q --jsonfile tmp.json --color 0 $hostn`;
|
|
||||||
$json = json('tmp.json');
|
$json = json('tmp.json');
|
||||||
unlink 'tmp.json';
|
unlink 'tmp.json';
|
||||||
|
my @errors=eval { decode_json($json) };
|
||||||
#2
|
|
||||||
my @errors = $jv->validate(@$json);
|
|
||||||
is(@errors,0,"no errors");
|
is(@errors,0,"no errors");
|
||||||
$tests++;
|
$tests++;
|
||||||
|
|
||||||
#3
|
#2
|
||||||
# This testss.sh run deliberately does NOT work as travis-ci.org blocks port 25 egress. The idea
|
printf "\n%s\n", "Unit testing pretty JSON output --> $uri ...";
|
||||||
# is to have a unit test for a failed connection.
|
$out = `./testssl.sh $check2run --jsonfile-pretty tmp.json $uri`;
|
||||||
pass("Running testssl.sh --mx against $hostn with plain JSON -- run will fail");
|
|
||||||
$tests++;
|
|
||||||
$out = `./testssl.sh --ssl-native --openssl-timeout=10 --ip=one --mx -q --jsonfile tmp.json --color 0 $hostn`;
|
|
||||||
$json = json('tmp.json');
|
$json = json('tmp.json');
|
||||||
unlink 'tmp.json';
|
unlink 'tmp.json';
|
||||||
|
@errors=eval { decode_json($json) };
|
||||||
|
is(@errors,0,"no errors");
|
||||||
|
$tests++;
|
||||||
|
|
||||||
|
|
||||||
|
#3
|
||||||
|
# This testss.sh run deliberately does NOT work as travis-ci.org blocks port 25 egress.
|
||||||
|
# but the output should be fine. The idea is to have a unit test for a failed connection.
|
||||||
|
printf "\n%s\n", "Checking plain JSON output for a failed run '--mx $uri' ...";
|
||||||
|
$out = `./testssl.sh --ssl-native --openssl-timeout=10 $check2run --jsonfile tmp.json --mx $uri`;
|
||||||
|
$json = json('tmp.json');
|
||||||
|
unlink 'tmp.json';
|
||||||
|
@errors=eval { decode_json($json) };
|
||||||
|
is(@errors,0,"no errors");
|
||||||
|
$tests++;
|
||||||
|
|
||||||
#4
|
#4
|
||||||
my @errors = $jv->validate(@$json);
|
# Same as above but with pretty JSON
|
||||||
|
printf "\n%s\n", "Checking pretty JSON output for a failed run '--mx $uri' ...";
|
||||||
|
$out = `./testssl.sh --ssl-native --openssl-timeout=10 $check2run --jsonfile-pretty tmp.json --mx $uri`;
|
||||||
|
$json = json('tmp.json');
|
||||||
|
unlink 'tmp.json';
|
||||||
|
@errors=eval { decode_json($json) };
|
||||||
is(@errors,0,"no errors");
|
is(@errors,0,"no errors");
|
||||||
$tests++;
|
$tests++;
|
||||||
|
|
||||||
#5
|
#5
|
||||||
pass("Running testssl.sh against $hostm with plain JSON output");
|
my $uri = "smtp-relay.gmail.com:587";
|
||||||
$out = `./testssl.sh --jsonfile tmp.json --color 0 -t smtp $hostm`;
|
printf "\n%s\n", " Unit testing plain JSON output --> $uri ...";
|
||||||
$tests++;
|
$out = `./testssl.sh --jsonfile tmp.json $check2run -t smtp $uri`;
|
||||||
$json = json('tmp.json');
|
$json = json('tmp.json');
|
||||||
unlink 'tmp.json';
|
unlink 'tmp.json';
|
||||||
|
@errors=eval { decode_json($json) };
|
||||||
#6
|
|
||||||
my @errors = $jv->validate(@$json);
|
|
||||||
is(@errors,0,"no errors");
|
is(@errors,0,"no errors");
|
||||||
$tests++;
|
$tests++;
|
||||||
|
|
||||||
|
@ -17880,7 +17880,7 @@ determine_service() {
|
|||||||
local ua
|
local ua
|
||||||
local protocol
|
local protocol
|
||||||
|
|
||||||
# check if we can connect to $NODEIP:$PORT
|
# Check if we can connect to $NODEIP:$PORT. Attention: This ALWAYS uses sockets. Thus timeouts for --ssl-=native do not apply
|
||||||
if ! fd_socket 5; then
|
if ! fd_socket 5; then
|
||||||
if [[ -n "$PROXY" ]]; then
|
if [[ -n "$PROXY" ]]; then
|
||||||
fatal "You're sure $PROXYNODE:$PROXYPORT allows tunneling here? Can't connect to \"$NODEIP:$PORT\"" $ERR_CONNECT
|
fatal "You're sure $PROXYNODE:$PROXYPORT allows tunneling here? Can't connect to \"$NODEIP:$PORT\"" $ERR_CONNECT
|
||||||
|
Loading…
Reference in New Issue
Block a user