summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_dataChannel_dtlsVersions.html
blob: 3bd08f531515c887609de5fa8d99086c7987e535 (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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "1284103",
    title: "Test basic data channel audio connection for supported DTLS versions"
  });

  async function testDtlsVersion(options, version) {
    await SpecialPowers.pushPrefEnv({
      set: [
        ["media.peerconnection.dtls.version.min", version],
        ["media.peerconnection.dtls.version.max", version]
      ]
    });

    const test = new PeerConnectionTest(options);
    addInitialDataChannel(test.chain);
    test.setMediaConstraints([{audio: true}], [{audio: true}]);

    // This inlines test.run(), to allow for multiple tests to run.
    test.updateChainSteps();
    await test.chain.execute();
    await test.close();
  }

  runNetworkTest(async (options) => {
    // 770 = DTLS 1.0, 771 = DTLS 1.2, 772 = DTLS 1.3
    for (var version = 770; version <= 772; version++) {
      await testDtlsVersion(options, version);
    }
    networkTestFinished();
  });
</script>
</pre>
</body>
</html>