summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_peerConnection_relayOnly.html
blob: 49f4eca2b53e66598dcdf94260357dce4dd07a77 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
  bug: "1187775",
  title: "peer connection ICE fails on relay-only without TURN"
});

function PC_LOCAL_NO_CANDIDATES(test) {
  var isnt = can => is(can, null, "No candidates: " + JSON.stringify(can));
  test.pcLocal._pc.addEventListener("icecandidate", e => isnt(e.candidate));
}

function PC_BOTH_WAIT_FOR_ICE_FAILED(test) {
  var isFail = (f, reason, msg) =>
    f().then(() => { throw new Error(msg + " must fail"); },
             e => is(e.message, reason, msg + " must fail with: " + e.message));

  return Promise.all([
    isFail(() => waitForIceConnected(test, test.pcLocal), "ICE failed", "Local ICE"),
    isFail(() => waitForIceConnected(test, test.pcRemote), "ICE failed", "Remote ICE")
  ])
  .then(() => ok(true, "ICE on both sides must fail."));
}

var pushPrefs = (...p) => new Promise(r => SpecialPowers.pushPrefEnv({set: p}, r));
var test;

runNetworkTest(options =>
    pushPrefs(['media.peerconnection.ice.stun_client_maximum_transmits', 3],
              ['media.peerconnection.ice.trickle_grace_period', 5000]).then(() => {
  options = options || {};
  options.config_local = options.config_local || {};
  var servers = options.config_local.iceServers || [];
  // remove any turn servers
  options.config_local.iceServers = servers.filter(server =>
      server.urls.every(u => !u.toLowerCase().startsWith('turn')));

  // Here's the setting we're testing. Comment out and this test should fail:
  options.config_local.iceTransportPolicy = "relay";

  test = new PeerConnectionTest(options);
  test.setMediaConstraints([{audio: true}, {video: true}],
                           [{audio: true}, {video: true}]);
  test.chain.remove("PC_LOCAL_SETUP_ICE_LOGGER");  // Needed to suppress failing
  test.chain.remove("PC_REMOTE_SETUP_ICE_LOGGER"); // on ICE-failure.
  test.chain.insertAfter("PC_LOCAL_SETUP_ICE_HANDLER", PC_LOCAL_NO_CANDIDATES);
  test.chain.replace("PC_LOCAL_WAIT_FOR_ICE_CONNECTED", PC_BOTH_WAIT_FOR_ICE_FAILED);
  test.chain.removeAfter("PC_BOTH_WAIT_FOR_ICE_FAILED");
  test.run();
}));

</script>
</pre>
</body>
</html>