1*e0c4386eSCy Schubert /*
2*e0c4386eSCy Schubert * Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved.
3*e0c4386eSCy Schubert *
4*e0c4386eSCy Schubert * Licensed under the Apache License 2.0 (the "License"). You may not use
5*e0c4386eSCy Schubert * this file except in compliance with the License. You can obtain a copy
6*e0c4386eSCy Schubert * in the file LICENSE in the source distribution or at
7*e0c4386eSCy Schubert * https://www.openssl.org/source/license.html
8*e0c4386eSCy Schubert */
9*e0c4386eSCy Schubert
10*e0c4386eSCy Schubert #include "testutil.h"
11*e0c4386eSCy Schubert #include <openssl/ssl.h>
12*e0c4386eSCy Schubert
13*e0c4386eSCy Schubert typedef struct {
14*e0c4386eSCy Schubert int min_version;
15*e0c4386eSCy Schubert int max_version;
16*e0c4386eSCy Schubert int min_ok;
17*e0c4386eSCy Schubert int max_ok;
18*e0c4386eSCy Schubert int expected_min;
19*e0c4386eSCy Schubert int expected_max;
20*e0c4386eSCy Schubert } version_test;
21*e0c4386eSCy Schubert
22*e0c4386eSCy Schubert static const version_test version_testdata[] = {
23*e0c4386eSCy Schubert /* min max ok expected min expected max */
24*e0c4386eSCy Schubert {0, 0, 1, 1, 0, 0},
25*e0c4386eSCy Schubert {TLS1_VERSION, TLS1_2_VERSION, 1, 1, TLS1_VERSION, TLS1_2_VERSION},
26*e0c4386eSCy Schubert {TLS1_2_VERSION, TLS1_2_VERSION, 1, 1, TLS1_2_VERSION, TLS1_2_VERSION},
27*e0c4386eSCy Schubert {TLS1_2_VERSION, TLS1_1_VERSION, 1, 1, TLS1_2_VERSION, TLS1_1_VERSION},
28*e0c4386eSCy Schubert {7, 42, 0, 0, 0, 0},
29*e0c4386eSCy Schubert };
30*e0c4386eSCy Schubert
test_set_min_max_version(int idx_tst)31*e0c4386eSCy Schubert static int test_set_min_max_version(int idx_tst)
32*e0c4386eSCy Schubert {
33*e0c4386eSCy Schubert SSL_CTX *ctx = NULL;
34*e0c4386eSCy Schubert SSL *ssl = NULL;
35*e0c4386eSCy Schubert int testresult = 0;
36*e0c4386eSCy Schubert version_test t = version_testdata[idx_tst];
37*e0c4386eSCy Schubert
38*e0c4386eSCy Schubert ctx = SSL_CTX_new(TLS_server_method());
39*e0c4386eSCy Schubert if (ctx == NULL)
40*e0c4386eSCy Schubert goto end;
41*e0c4386eSCy Schubert
42*e0c4386eSCy Schubert ssl = SSL_new(ctx);
43*e0c4386eSCy Schubert if (ssl == NULL)
44*e0c4386eSCy Schubert goto end;
45*e0c4386eSCy Schubert
46*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_CTX_set_min_proto_version(ctx, t.min_version), t.min_ok))
47*e0c4386eSCy Schubert goto end;
48*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_CTX_set_max_proto_version(ctx, t.max_version), t.max_ok))
49*e0c4386eSCy Schubert goto end;
50*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_CTX_get_min_proto_version(ctx), t.expected_min))
51*e0c4386eSCy Schubert goto end;
52*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_CTX_get_max_proto_version(ctx), t.expected_max))
53*e0c4386eSCy Schubert goto end;
54*e0c4386eSCy Schubert
55*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_set_min_proto_version(ssl, t.min_version), t.min_ok))
56*e0c4386eSCy Schubert goto end;
57*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_set_max_proto_version(ssl, t.max_version), t.max_ok))
58*e0c4386eSCy Schubert goto end;
59*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_get_min_proto_version(ssl), t.expected_min))
60*e0c4386eSCy Schubert goto end;
61*e0c4386eSCy Schubert if (!TEST_int_eq(SSL_get_max_proto_version(ssl), t.expected_max))
62*e0c4386eSCy Schubert goto end;
63*e0c4386eSCy Schubert
64*e0c4386eSCy Schubert testresult = 1;
65*e0c4386eSCy Schubert
66*e0c4386eSCy Schubert end:
67*e0c4386eSCy Schubert SSL_free(ssl);
68*e0c4386eSCy Schubert SSL_CTX_free(ctx);
69*e0c4386eSCy Schubert return testresult;
70*e0c4386eSCy Schubert }
71*e0c4386eSCy Schubert
setup_tests(void)72*e0c4386eSCy Schubert int setup_tests(void)
73*e0c4386eSCy Schubert {
74*e0c4386eSCy Schubert ADD_ALL_TESTS(test_set_min_max_version, sizeof(version_testdata) / sizeof(version_test));
75*e0c4386eSCy Schubert return 1;
76*e0c4386eSCy Schubert }
77