Extend mkcert.sh to support nameConstraints generation and more complex
[openssl.git] / test / ssl_test_ctx_test.c
1 /*
2  * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * Ideally, CONF should offer standard parsing methods and cover them
12  * in tests. But since we have no CONF tests, we use a custom test for now.
13  */
14
15 #include <stdio.h>
16
17 #include "e_os.h"
18 #include "ssl_test_ctx.h"
19 #include "testutil.h"
20 #include <openssl/e_os2.h>
21 #include <openssl/err.h>
22 #include <openssl/conf.h>
23 #include <openssl/ssl.h>
24
25 static CONF *conf = NULL;
26
27 typedef struct ssl_test_ctx_test_fixture {
28     const char *test_case_name;
29     const char *test_section;
30     /* Expected parsed configuration. */
31     SSL_TEST_CTX *expected_ctx;
32 } SSL_TEST_CTX_TEST_FIXTURE;
33
34 /* Returns 1 if the contexts are equal, 0 otherwise. */
35 static int SSL_TEST_CTX_equal(SSL_TEST_CTX *ctx, SSL_TEST_CTX *ctx2)
36 {
37     if (ctx->expected_result != ctx2->expected_result) {
38         fprintf(stderr, "ExpectedResult mismatch: %s vs %s.\n",
39                 ssl_test_result_name(ctx->expected_result),
40                 ssl_test_result_name(ctx2->expected_result));
41         return 0;
42     }
43     if (ctx->client_alert != ctx2->client_alert) {
44         fprintf(stderr, "ClientAlert mismatch: %s vs %s.\n",
45                 ssl_alert_name(ctx->client_alert),
46                 ssl_alert_name(ctx2->client_alert));
47         return 0;
48     }
49     if (ctx->server_alert != ctx2->server_alert) {
50         fprintf(stderr, "ServerAlert mismatch: %s vs %s.\n",
51                 ssl_alert_name(ctx->server_alert),
52                 ssl_alert_name(ctx2->server_alert));
53         return 0;
54     }
55     if (ctx->protocol != ctx2->protocol) {
56         fprintf(stderr, "ClientAlert mismatch: %s vs %s.\n",
57                 ssl_protocol_name(ctx->protocol),
58                 ssl_protocol_name(ctx2->protocol));
59         return 0;
60     }
61     if (ctx->client_verify_callback != ctx2->client_verify_callback) {
62         fprintf(stderr, "ClientVerifyCallback mismatch: %s vs %s.\n",
63                 ssl_verify_callback_name(ctx->client_verify_callback),
64                 ssl_verify_callback_name(ctx2->client_verify_callback));
65         return 0;
66     }
67     if (ctx->servername != ctx2->servername) {
68         fprintf(stderr, "ServerName mismatch: %s vs %s.\n",
69                 ssl_servername_name(ctx->servername),
70                 ssl_servername_name(ctx2->servername));
71         return 0;
72     }
73     if (ctx->expected_servername != ctx2->expected_servername) {
74         fprintf(stderr, "ExpectedServerName mismatch: %s vs %s.\n",
75                 ssl_servername_name(ctx->expected_servername),
76                 ssl_servername_name(ctx2->expected_servername));
77         return 0;
78     }
79     if (ctx->servername_callback != ctx2->servername_callback) {
80         fprintf(stderr, "ServerNameCallback mismatch: %s vs %s.\n",
81                 ssl_servername_callback_name(ctx->servername_callback),
82                 ssl_servername_callback_name(ctx2->servername_callback));
83         return 0;
84     }
85     if (ctx->session_ticket_expected != ctx2->session_ticket_expected) {
86         fprintf(stderr, "SessionTicketExpected mismatch: %s vs %s.\n",
87                 ssl_session_ticket_name(ctx->session_ticket_expected),
88                 ssl_session_ticket_name(ctx2->session_ticket_expected));
89         return 0;
90     }
91
92     return 1;
93 }
94
95 static SSL_TEST_CTX_TEST_FIXTURE set_up(const char *const test_case_name)
96 {
97     SSL_TEST_CTX_TEST_FIXTURE fixture;
98     fixture.test_case_name = test_case_name;
99     fixture.expected_ctx = SSL_TEST_CTX_new();
100     OPENSSL_assert(fixture.expected_ctx != NULL);
101     return fixture;
102 }
103
104 static int execute_test(SSL_TEST_CTX_TEST_FIXTURE fixture)
105 {
106     int success = 0;
107
108     SSL_TEST_CTX *ctx = SSL_TEST_CTX_create(conf, fixture.test_section);
109
110     if (ctx == NULL) {
111         fprintf(stderr, "Failed to parse good configuration %s.\n",
112                 fixture.test_section);
113         goto err;
114     }
115
116     if (!SSL_TEST_CTX_equal(ctx, fixture.expected_ctx))
117         goto err;
118
119     success = 1;
120  err:
121     SSL_TEST_CTX_free(ctx);
122     return success;
123 }
124
125 static int execute_failure_test(SSL_TEST_CTX_TEST_FIXTURE fixture)
126 {
127     SSL_TEST_CTX *ctx = SSL_TEST_CTX_create(conf, fixture.test_section);
128
129     if (ctx != NULL) {
130         fprintf(stderr, "Parsing bad configuration %s succeeded.\n",
131                 fixture.test_section);
132         SSL_TEST_CTX_free(ctx);
133         return 0;
134     }
135
136     return 1;
137 }
138
139 static void tear_down(SSL_TEST_CTX_TEST_FIXTURE fixture)
140 {
141     SSL_TEST_CTX_free(fixture.expected_ctx);
142     ERR_print_errors_fp(stderr);
143 }
144
145 #define SETUP_SSL_TEST_CTX_TEST_FIXTURE()                       \
146     SETUP_TEST_FIXTURE(SSL_TEST_CTX_TEST_FIXTURE, set_up)
147 #define EXECUTE_SSL_TEST_CTX_TEST()             \
148     EXECUTE_TEST(execute_test, tear_down)
149 #define EXECUTE_SSL_TEST_CTX_FAILURE_TEST()             \
150     EXECUTE_TEST(execute_failure_test, tear_down)
151
152 static int test_empty_configuration()
153 {
154     SETUP_SSL_TEST_CTX_TEST_FIXTURE();
155     fixture.test_section = "ssltest_default";
156     fixture.expected_ctx->expected_result = SSL_TEST_SUCCESS;
157     EXECUTE_SSL_TEST_CTX_TEST();
158 }
159
160 static int test_good_configuration()
161 {
162     SETUP_SSL_TEST_CTX_TEST_FIXTURE();
163     fixture.test_section = "ssltest_good";
164     fixture.expected_ctx->expected_result = SSL_TEST_SERVER_FAIL;
165     fixture.expected_ctx->client_alert = SSL_AD_UNKNOWN_CA;
166     fixture.expected_ctx->server_alert = 0;  /* No alert. */
167     fixture.expected_ctx->protocol = TLS1_1_VERSION;
168     fixture.expected_ctx->client_verify_callback = SSL_TEST_VERIFY_REJECT_ALL;
169     fixture.expected_ctx->servername = SSL_TEST_SERVERNAME_SERVER2;
170     fixture.expected_ctx->expected_servername = SSL_TEST_SERVERNAME_SERVER2;
171     fixture.expected_ctx->servername_callback =
172         SSL_TEST_SERVERNAME_IGNORE_MISMATCH;
173     fixture.expected_ctx->session_ticket_expected = SSL_TEST_SESSION_TICKET_YES;
174     fixture.expected_ctx->method = SSL_TEST_METHOD_DTLS;
175     EXECUTE_SSL_TEST_CTX_TEST();
176 }
177
178 static const char *bad_configurations[] = {
179     "ssltest_unknown_option",
180     "ssltest_unknown_expected_result",
181     "ssltest_unknown_alert",
182     "ssltest_unknown_protocol",
183     "ssltest_unknown_verify_callback",
184     "ssltest_unknown_servername",
185     "ssltest_unknown_servername_callback",
186     "ssltest_unknown_session_ticket_expected",
187     "ssltest_unknown_method",
188 };
189
190 static int test_bad_configuration(int idx)
191 {
192         SETUP_SSL_TEST_CTX_TEST_FIXTURE();
193         fixture.test_section = bad_configurations[idx];
194         EXECUTE_SSL_TEST_CTX_FAILURE_TEST();
195 }
196
197 int main(int argc, char **argv)
198 {
199     int result = 0;
200
201     if (argc != 2)
202         return 1;
203
204     conf = NCONF_new(NULL);
205     OPENSSL_assert(conf != NULL);
206
207     /* argv[1] should point to test/ssl_test_ctx_test.conf */
208     OPENSSL_assert(NCONF_load(conf, argv[1], NULL) > 0);
209
210
211     ADD_TEST(test_empty_configuration);
212     ADD_TEST(test_good_configuration);
213     ADD_ALL_TESTS(test_bad_configuration, OSSL_NELEM(bad_configurations));
214
215     result = run_tests(argv[0]);
216
217     NCONF_free(conf);
218
219     return result;
220 }