summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webrtc/RTCIceConnectionState-candidate-pair.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webrtc/RTCIceConnectionState-candidate-pair.https.html')
-rw-r--r--testing/web-platform/tests/webrtc/RTCIceConnectionState-candidate-pair.https.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webrtc/RTCIceConnectionState-candidate-pair.https.html b/testing/web-platform/tests/webrtc/RTCIceConnectionState-candidate-pair.https.html
new file mode 100644
index 0000000000..3b2c253401
--- /dev/null
+++ b/testing/web-platform/tests/webrtc/RTCIceConnectionState-candidate-pair.https.html
@@ -0,0 +1,33 @@
+<!doctype html>
+<meta charset=utf-8>
+<meta name="timeout" content="long">
+<title>RTCIceConnectionState and RTCIceCandidatePair</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="RTCPeerConnection-helper.js"></script>
+<script>
+'use strict';
+
+promise_test(async t => {
+ const caller = new RTCPeerConnection();
+ t.add_cleanup(() => caller.close());
+ const callee = new RTCPeerConnection();
+ t.add_cleanup(() => callee.close());
+
+ const stream = await getNoiseStream({audio:true});
+ const [track] = stream.getTracks();
+ caller.addTrack(track, stream);
+ exchangeIceCandidates(caller, callee);
+ await exchangeOfferAnswer(caller, callee);
+ await listenToIceConnected(caller);
+
+ const report = await caller.getStats();
+ let succeededPairFound = false;
+ report.forEach(stats => {
+ if (stats.type == 'candidate-pair' && stats.state == 'succeeded')
+ succeededPairFound = true;
+ });
+ assert_true(succeededPairFound, 'A succeeded candidate-pair should exist');
+}, 'On ICE connected, getStats() contains a connected candidate-pair');
+
+</script>