diff options
Diffstat (limited to 'integration')
-rw-r--r-- | integration/conf/client.config | 2 | ||||
-rwxr-xr-x | integration/test.sh | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/integration/conf/client.config b/integration/conf/client.config index fe89790..afd739e 100644 --- a/integration/conf/client.config +++ b/integration/conf/client.config @@ -11,3 +11,5 @@ cli_priv= cli_domain_hint= +cli_priv=29599fd81e266e161a9df977044dda89ab72fe9c8a98f23026f7fb63ee2feed9cda2517e17dcba133eb0e71bf77473f94a77d7e61b1de4e1e64adfd0938d6182 +cli_domain_hint=_sigsum_v0.testonly.rgdd.se diff --git a/integration/test.sh b/integration/test.sh index 38a00a9..7ddc066 100755 --- a/integration/test.sh +++ b/integration/test.sh @@ -213,6 +213,9 @@ function test_signed_tree_head() { curl -s -w "%{http_code}" $log_url/get-tree-head-to-cosign \ >$log_dir/rsp + head --lines=-1 $log_dir/rsp >> /home/rgdd/output + echo "===" >> /home/rgdd/output + if [[ $(status_code) != 200 ]]; then fail "$desc: http status code $(status_code)" return @@ -324,6 +327,10 @@ function test_consistency_proof() { desc="GET get-consistency-proof (old_size $1, new_size $2)" curl -s -w "%{http_code}" $log_url/get-consistency-proof/$1/$2 >$log_dir/rsp + echo "old_size=$1, new_size=$2" >> /home/rgdd/output + head --lines=-1 $log_dir/rsp >> /home/rgdd/output + echo "===" >> /home/rgdd/output + if [[ $(status_code) != 200 ]]; then fail "$desc: http status code $(status_code)" return |