blob: dc5e8d3ff55c1d1d99bedb53472acb7119e5b9df [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 Benjamin5a593af2014-08-11 19:51:50 -040048};
49
50bool ParseConfig(int argc, char **argv, TestConfig *out_config);
51
52
53#endif // HEADER_TEST_CONFIG