2020-01-13 17:36:40 +01:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2021-09-03 23:37:37 +02:00
|
|
|
# Basics: is there a syntax error where already bash hiccups on?
|
2020-01-13 17:36:40 +01:00
|
|
|
# --banner is equal to --version
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use Test::More;
|
|
|
|
|
|
|
|
my $tests = 0;
|
|
|
|
my $fileout="";
|
|
|
|
# Blacklists we use to trigger an error:
|
|
|
|
my $error_regexp1='(syntax|parse) (e|E)rror';
|
|
|
|
my $error_regexp2='testssl.sh: line';
|
|
|
|
my $error_regexp3='bash: warning';
|
|
|
|
my $error_regexp4='command not found';
|
|
|
|
my $error_regexp5='(syntax error|unexpected token)';
|
|
|
|
my $good_regexp='free software([\s\S]*)USAGE w/o ANY WARRANTY([\s\S]*)OWN RISK([\s\S]*)Using([\s\S]*)ciphers([\s\S]*)built([\s\S]*)platform';
|
|
|
|
|
2020-01-13 23:50:14 +01:00
|
|
|
printf "\n%s\n", "Testing whether just calling \"./testssl.sh --banner\" produces no error ...";
|
2020-01-13 17:36:40 +01:00
|
|
|
$fileout = `timeout 10 bash ./testssl.sh --banner 2>&1`;
|
|
|
|
my $retval=$?;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
unlike($fileout, qr/$error_regexp1/, "regex 1");
|
2020-01-13 17:36:40 +01:00
|
|
|
$tests++;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
unlike($fileout, qr/$error_regexp2/, "regex 2");
|
2020-01-13 17:36:40 +01:00
|
|
|
$tests++;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
unlike($fileout, qr/$error_regexp3/, "regex 3");
|
2020-01-13 17:36:40 +01:00
|
|
|
$tests++;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
unlike($fileout, qr/$error_regexp4/, "regex 4");
|
2020-01-13 17:36:40 +01:00
|
|
|
$tests++;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
unlike($fileout, qr/$error_regexp5/, "regex 5");
|
2020-01-13 17:36:40 +01:00
|
|
|
$tests++;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
like($fileout, qr/$good_regexp/, "regex positive");
|
2020-01-13 17:36:40 +01:00
|
|
|
$tests++;
|
|
|
|
|
|
|
|
is($retval, 0, "return value should be equal zero: \"$retval\"");
|
|
|
|
$tests++;
|
|
|
|
|
2020-01-14 18:44:11 +01:00
|
|
|
printf "\n";
|
2020-01-13 17:36:40 +01:00
|
|
|
done_testing($tests);
|
|
|
|
|
|
|
|
|
2021-05-31 22:39:22 +02:00
|
|
|
# vim:ts=5:sw=5:expandtab
|
|
|
|
|