From 722f038f1f26e1598cc10406f7896390b497703e Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Tue, 17 May 2016 12:55:54 +0200 Subject: [PATCH] test: extend 105-ntpauth --- test/simulation/105-ntpauth | 43 ++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/test/simulation/105-ntpauth b/test/simulation/105-ntpauth index 2ebcec3..5cfdf32 100755 --- a/test/simulation/105-ntpauth +++ b/test/simulation/105-ntpauth @@ -4,17 +4,40 @@ test_start "NTP authentication" -server_conf="keyfile tmp/keys" -client_conf="keyfile tmp/keys" +server_conf="keyfile tmp/server.keys" +client_conf="keyfile tmp/client.keys" -cat > tmp/keys <<-EOF -1 $(tr -c -d 'a-zA-Z0-9' < /dev/urandom 2> /dev/null | head -c 24) -2 ASCII:$(tr -c -d 'a-zA-Z0-9' < /dev/urandom 2> /dev/null | head -c 24) -3 MD5 ASCII:$(tr -c -d 'a-zA-Z' < /dev/urandom 2> /dev/null | head -c 24) -4 MD5 HEX:$(tr -c -d '0-9A-F' < /dev/urandom 2> /dev/null | head -c 32) +cat > tmp/server.keys <<-EOF +1 MD5 HEX:6B5D3C6A2E4A74775E4F6F3B7A35453E6E5C5F302D783D2979505C663C295A5E +2 MD5 HEX:6B5D3C6A2E4A74775E4F6F3B7A35453E6E5C5F302D783D2979505C663C295A5E +3 MD5 HEX:6B5D3C6A2E4A74775E4F6F3B7A35453E6E5C5F302D783D2979505C663C295A5E +4 MD5 HEX:6B5D3C6A2E4A74775E4F6F3B7A35453E6E5C5F302D783D2979505C663C295A5E EOF -for key in 1 2 3 4; do +cat > tmp/client.keys <<-EOF +1 k]n\_0-x=)yP\f<)Z^ +2 ASCII:k]n\_0-x=)yP\f<)Z^ +3 MD5 ASCII:k]n\_0-x=)yP\f<)Z^ +4 MD5 HEX:6B5D3C6A2E4A74775E4F6F3B7A35453E6E5C5F302D783D2979505C663C295A5E +EOF + +keys=4 + +if grep -q 'FEAT_SECHASH 1' ../../config.h; then + hashes="MD5 SHA1 SHA256 SHA384 SHA512" +else + hashes="MD5" +fi + +for hash in $hashes; do + keys=$[$keys + 1] + key=$(echo $keys $hash HEX:$(tr -c -d '0-9A-F' < /dev/urandom 2> /dev/null | \ + head -c $[$RANDOM % 64 * 2 + 2])) + echo "$key" >> tmp/server.keys + echo "$key" >> tmp/client.keys +done + +for key in $(seq $keys); do client_server_options="key $key" run_test || test_fail check_chronyd_exit || test_fail @@ -31,7 +54,7 @@ check_chronyd_exit || test_fail check_sync && test_fail check_packet_interval || test_fail -server_conf="keyfile tmp/keys" +server_conf="keyfile tmp/server.keys" client_conf="" run_test || test_fail @@ -40,7 +63,7 @@ check_chronyd_exit || test_fail check_sync && test_fail check_packet_interval || test_fail -client_conf="keyfile tmp/keys" +client_conf="keyfile tmp/client.keys" clients=2 peers=2 max_sync_time=500