summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_dataChannel_dtlsVersions.html
blob: 6f0cbc5d3db4298edab444932203bc126341fc63 (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
<!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}]);

    await test.run();
  }

  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);
    }
  });
</script>
</pre>
</body>
</html>