summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-01-02 11:52:57 +0000
committerMatt Caswell <matt@openssl.org>2017-01-10 23:02:50 +0000
commit16abbd11cdc2124f12d90efffb5cd79236e72fa0 (patch)
treef8dc0498e2239375d987c66c031eff91808df0a6 /test
parentd24c6a34ce4af11cd09aadd6a0f356cb2bd7fa4f (diff)
Fix test_sslversions to know that TLSv1.3 sets record version to TLSv1.0
This also acts as a test for the bug fixed in the previous commit. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2157)
Diffstat (limited to 'test')
-rwxr-xr-xtest/recipes/70-test_sslversions.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/recipes/70-test_sslversions.t b/test/recipes/70-test_sslversions.t
index d2e6eb6719..ff4eac836e 100755
--- a/test/recipes/70-test_sslversions.t
+++ b/test/recipes/70-test_sslversions.t
@@ -87,7 +87,8 @@ $testtype = REVERSE_ORDER_VERSIONS;
$proxy->start();
$record = pop @{$proxy->record_list};
ok(TLSProxy::Message->success()
- && $record->version() == TLSProxy::Record::VERS_TLS_1_3,
+ && $record->version() == TLSProxy::Record::VERS_TLS_1_0
+ && TLSProxy::Proxy->is_tls13(),
"Reverse order versions");
#Test 6: no TLSv1.3 or TLSv1.2 version in supported versions extension, but
@@ -106,7 +107,8 @@ $testtype = WITH_TLS1_4;
$proxy->start();
$record = pop @{$proxy->record_list};
ok(TLSProxy::Message->success()
- && $record->version() == TLSProxy::Record::VERS_TLS_1_3,
+ && $record->version() == TLSProxy::Record::VERS_TLS_1_0
+ && TLSProxy::Proxy->is_tls13(),
"TLS1.4 in supported versions extension");
sub modify_supported_versions_filter