gecko-dev/dom/media/tests/mochitest/test_peerConnection_basicAudioNATRelay.html
Byron Campen [:bwc] 37a184c8eb Bug 1231975 - Part 7: Disable trickle for the NAT tests, since trickle delays can cause lower priority pairs to get selected. r=drno
MozReview-Commit-ID: GaqZQxJ7g2E

--HG--
extra : rebase_source : 576924d843f24b943a7f4f9ead4cd5b83c3b62d1
2016-04-28 09:47:08 -05:00

45 lines
1.5 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<script type="application/javascript" src="nonTrickleIce.js"></script>
<script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
bug: "1231975",
title: "Basic audio-only peer connection with port dependent NAT"
});
var test;
runNetworkTest(options => {
SpecialPowers.pushPrefEnv(
{
'set': [
['media.peerconnection.nat_simulator.filtering_type', 'PORT_DEPENDENT'],
['media.peerconnection.nat_simulator.mapping_type', 'PORT_DEPENDENT']
]
}, function (options) {
options = options || {};
options.expectedLocalCandidateType = "serverreflexive";
options.expectedRemoteCandidateType = "relayed";
// If both have TURN, it is a toss-up which one will end up using a
// relay.
options.turn_disabled_local = true;
test = new PeerConnectionTest(options);
// Make sure we don't end up choosing the wrong thing due to delays in
// trickle. Once we are willing to accept trickle after ICE success, we
// can maybe wait a bit to allow things to stabilize.
// TODO(bug 1238249)
makeOffererNonTrickle(test.chain);
makeAnswererNonTrickle(test.chain);
test.setMediaConstraints([{audio: true}], [{audio: true}]);
test.run();
})
}, { useIceServer: true });
</script>
</pre>
</body>
</html>