mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-07-17 19:21:57 +02:00
.github
bin
doc
etc
t
01_ca_hashes_up_to_date.t
07_isJSON_valid.t
08_isHTML_valid.t
09_isJSON_severitylevel_valid.t
20_baseline_ipv4_http.t
21_baseline_ipv6_http.t.DISABLED
23_client_simulation.t
25_baseline_starttls.t
51_badssl.com.t
59_hpkp.t.tmpDISABLED
Readme.md
utils
.gitignore
.travis.yml
CHANGELOG.md
CREDITS.md
Dockerfile
Dockerfile.md
LICENSE
Readme.md
openssl-iana.mapping.html
testssl.sh

... and disable IPv6 test as it is NOT supported by Travis CI, see https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system The *.disabled file should provide a start if it'll be available at some time or one can manage this in travis with a docker container, see https://github.com/travis-ci/travis-ci/issues/8891
53 lines
1.4 KiB
Perl
Executable File
53 lines
1.4 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
# disabled as IPv6 is not supported by Travis, see https://github.com/drwetter/testssl.sh/issues/1177
|
|
|
|
# Just a functional test, whether there are any problems on the client side
|
|
# Probably we could also inspect the JSON for any problems for
|
|
# "id" : "scanProblem"
|
|
# "finding" : "Scan interrupted"
|
|
|
|
use strict;
|
|
use Test::More;
|
|
use Data::Dumper;
|
|
# use JSON;
|
|
|
|
my $tests = 0;
|
|
my $check2run ="-p -s -P --pfs -S -h -U -q --ip=one --color 0";
|
|
my $uri="";
|
|
my $socketout="";
|
|
my $opensslout="";
|
|
|
|
# $check2run="--jsonfile tmp.json $check2run";
|
|
|
|
|
|
$uri="testssl.net";
|
|
|
|
unlink "tmp.json";
|
|
printf "\n%s\n", "Baseline unit test IPv6 via sockets --> $uri ...";
|
|
$socketout = `./testssl.sh $check2run -6 $uri 2>&1`;
|
|
# my $socket = json('tmp.json');
|
|
unlike($socketout, qr/(e|E)rror|\.\/testssl\.sh: line |(f|F)atal/, "");
|
|
$tests++;
|
|
|
|
unlink "tmp.json";
|
|
printf "\n%s\n", "Baseline unit test IPv6 via OpenSSL --> $uri ...";
|
|
$opensslout = `./testssl.sh --ssl-native $check2run -6 $uri 2>&1`;
|
|
# my $openssl = json('tmp.json');
|
|
$opensslout =~ s/testssl.*warning: command substitution: ignored null byte in input\n//g;
|
|
unlike($opensslout, qr/(e|E)rror|(f|F)atal|\.\/testssl\.sh: line |Oops|s_client connect problem/, "");
|
|
$tests++;
|
|
|
|
done_testing($tests);
|
|
unlink "tmp.json";
|
|
|
|
|
|
|
|
sub json($) {
|
|
my $file = shift;
|
|
$file = `cat $file`;
|
|
unlink $file;
|
|
return from_json($file);
|
|
}
|
|
|