blob: e5ff8adc0301123e314732281144013f3b39d5da [file] [log] [blame]
David Benjamin5a593af2014-08-11 19:51:50 -04001/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#ifndef HEADER_TEST_CONFIG
16#define HEADER_TEST_CONFIG
17
18#include <string>
19
20
21struct TestConfig {
22 TestConfig();
23
24 bool is_server;
David Benjamin6fd297b2014-08-11 18:43:38 -040025 bool is_dtls;
David Benjamin5a593af2014-08-11 19:51:50 -040026 bool resume;
27 bool fallback_scsv;
28 std::string key_file;
29 std::string cert_file;
30 std::string expected_server_name;
31 std::string expected_certificate_types;
32 bool require_any_client_certificate;
33 std::string advertise_npn;
34 std::string expected_next_proto;
35 bool false_start;
36 std::string select_next_proto;
37 bool async;
38 bool write_different_record_sizes;
39 bool cbc_record_splitting;
40 bool partial_write;
41 bool no_tls12;
42 bool no_tls11;
43 bool no_tls1;
44 bool no_ssl3;
David Benjamin6fd297b2014-08-11 18:43:38 -040045 bool cookie_exchange;
David Benjamina08e49d2014-08-24 01:46:07 -040046 std::string expected_channel_id;
47 std::string send_channel_id;
David Benjamine58c4f52014-08-24 03:47:07 -040048 bool shim_writes_first;
David Benjamin5c24a1d2014-08-31 00:59:27 -040049 bool tls_d5_bug;
David Benjamine78bfde2014-09-06 12:45:15 -040050 std::string host_name;
David Benjaminae2888f2014-09-06 12:58:58 -040051 std::string advertise_alpn;
52 std::string expected_alpn;
53 std::string expected_advertised_alpn;
54 std::string select_alpn;
David Benjamin01fe8202014-09-24 15:21:44 -040055 bool expect_session_miss;
Adam Langley75712922014-10-10 16:23:43 -070056 bool expect_extended_master_secret;
David Benjamin48cae082014-10-27 01:06:24 -040057 std::string psk;
58 std::string psk_identity;
David Benjamin5a593af2014-08-11 19:51:50 -040059};
60
61bool ParseConfig(int argc, char **argv, TestConfig *out_config);
62
63
64#endif // HEADER_TEST_CONFIG