diff options
Diffstat (limited to 'test/ssl-tests/17-renegotiate.conf.in')
-rw-r--r-- | test/ssl-tests/17-renegotiate.conf.in | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/test/ssl-tests/17-renegotiate.conf.in b/test/ssl-tests/17-renegotiate.conf.in index 6cecd7ed21..a081617724 100644 --- a/test/ssl-tests/17-renegotiate.conf.in +++ b/test/ssl-tests/17-renegotiate.conf.in @@ -17,12 +17,50 @@ package ssltests; our @tests = ( { - name => "renegotiate", + name => "renegotiate-client-no-resume", + server => { + "Options" => "NoResumptionOnRenegotiation" + }, + client => {}, + test => { + "Method" => "TLS", + "HandshakeMode" => "RenegotiateClient", + "ResumptionExpected" => "No", + "ExpectedResult" => "Success" + } + }, + { + name => "renegotiate-client-resume", + server => {}, + client => {}, + test => { + "Method" => "TLS", + "HandshakeMode" => "RenegotiateClient", + "ResumptionExpected" => "Yes", + "ExpectedResult" => "Success" + } + }, + { + name => "renegotiate-server-no-resume", + server => { + "Options" => "NoResumptionOnRenegotiation" + }, + client => {}, + test => { + "Method" => "TLS", + "HandshakeMode" => "RenegotiateServer", + "ResumptionExpected" => "No", + "ExpectedResult" => "Success" + } + }, + { + name => "renegotiate-server-resume", server => {}, client => {}, test => { "Method" => "TLS", - "HandshakeMode" => "Renegotiate", + "HandshakeMode" => "RenegotiateServer", + "ResumptionExpected" => "Yes", "ExpectedResult" => "Success" } }, |