Modified LFs

This commit is contained in:
Dirk Wetter
2020-01-13 23:50:14 +01:00
parent 56e6fa4bb7
commit 58498583c9
3 changed files with 11 additions and 9 deletions

View File

@ -21,8 +21,10 @@ die "Unable to open $prg" unless -f $prg;
my $uri="cloudflare.com";
printf "\n%s", "Unit testing JSON output ...";
#1
printf "\n%s\n", "Unit testing plain JSON output --> $uri ...";
printf "%s\n", ".. plain JSON output --> $uri ";
$out = `./testssl.sh $check2run --jsonfile tmp.json $uri`;
$json = json('tmp.json');
unlink 'tmp.json';
@ -31,7 +33,7 @@ is(@errors,0,"no errors");
$tests++;
#2
printf "\n%s\n", "Unit testing pretty JSON output --> $uri ...";
printf "%s\n", ".. pretty JSON output --> $uri ";
$out = `./testssl.sh $check2run --jsonfile-pretty tmp.json $uri`;
$json = json('tmp.json');
unlink 'tmp.json';
@ -43,7 +45,7 @@ $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' ...";
printf "%s\n", ".. 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';
@ -53,7 +55,7 @@ $tests++;
#4
# Same as above but with pretty JSON
printf "\n%s\n", "Checking pretty JSON output for a failed run '--mx $uri' ...";
printf "%s\n", ".. 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';
@ -63,7 +65,7 @@ $tests++;
#5
my $uri = "smtp-relay.gmail.com:587";
printf "\n%s\n", " Unit testing plain JSON output --> $uri ...";
printf "%s\n", " .. plain JSON output --> $uri ...";
$out = `./testssl.sh --jsonfile tmp.json $check2run -t smtp $uri`;
$json = json('tmp.json');
unlink 'tmp.json';