summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/unit/test_encrypted_client_hello_client_only.js
blob: 0949bc60382623f9d94461dbc78b3d541b2dee41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";

// Public Name = delegated-enabled.example.com
const ECH_CONFIG_FIXED =
  "AFD+DQBMTQAgACCKB1Y5SfrGIyk27W82xPpzWTDs3q72c04xSurDWlb9CgAEAAEAA2QdZGVsZWdhdGVkLWVuYWJsZWQuZXhhbXBsZS5jb20AAA==";
do_get_profile();

// An arbitrary, non-ECH server.
add_tls_server_setup(
  "DelegatedCredentialsServer",
  "test_delegated_credentials"
);

add_test(function () {
  clearSessionCache();
  run_next_test();
});

// Connect, sending ECH. The server is not configured for it,
// but *is* authoritative for the public name.
add_connection_test(
  "delegated-disabled.example.com",
  SSL_ERROR_ECH_RETRY_WITHOUT_ECH,
  null,
  null,
  null,
  null,
  ECH_CONFIG_FIXED
);