Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Unified Diff: third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-ice.html

Issue 2097563002: Split the mediastream module in Blink into mediastream and peerconnection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DEPS file Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-ice.html
diff --git a/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-ice.html b/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-ice.html
deleted file mode 100644
index aa189d6f9178cd106dc8f9d5bfb6426e35ea9c1f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection-ice.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-<!-- TODO(guidou): Convert test to testharness.js. crbug.com/614963 -->
-</head>
-<body>
-<script>
-description("Tests the RTCPeerConnection Ice functionality.");
-
-var pc = null;
-var iceCandidate = null;
-
-function onIceChange2()
-{
- if (pc.iceConnectionState === "closed") {
- testPassed("iceConnectionState is closed.");
- finishJSTest();
- }
-}
-
-function addIceCandidateSuccess1()
-{
- testPassed("addIceCandidateSuccess1 was called.");
- shouldNotThrow('pc.addIceCandidate({candidate: "candidate", sdpMid: 0}, addIceCandidateSuccess2, unexpectedCallback);');
-}
-
-function addIceCandidateSuccess2()
-{
- testPassed("addIceCandidateSuccess2 was called.");
- shouldNotThrow('pc.addIceCandidate({candidate: "candidate", sdpMLineIndex: 0}, addIceCandidateSuccess3, unexpectedCallback);');
-}
-
-function addIceCandidateSuccess3()
-{
- testPassed("addIceCandidateSuccess3 was called.");
- shouldNotThrow('pc.addIceCandidate({candidate: "candidate", sdpMid: 0, sdpMLineIndex: 0}, addIceCandidateSuccess4, unexpectedCallback);');
-}
-
-function addIceCandidateSuccess4()
-{
- testPassed("addIceCandidateSuccess4 was called.");
- pc.oniceconnectionstatechange = onIceChange2;
- pc.close();
-}
-
-function unexpectedCallback()
-{
- testFailed("unexpectedCallback was called.");
- finishJSTest();
-}
-
-function expectedTypeError(error)
-{
- window.error = error;
- shouldBe('error.name', '"TypeError"');
- testPassed("expectedTypeError was called.");
-}
-
-function onIceChange1()
-{
- if (pc.iceConnectionState === "completed") {
- testPassed("iceConnectionState is completed");
- iceCandidate = new RTCIceCandidate({candidate:"nano nano"});
- shouldNotThrow('pc.addIceCandidate(null, unexpectedCallback, unexpectedCallback).catch(expectedTypeError);');
- shouldNotThrow('pc.addIceCandidate({candidate: "candidate"}, unexpectedCallback, unexpectedCallback).catch(expectedTypeError);');
- shouldNotThrow('pc.addIceCandidate(iceCandidate, null, unexpectedCallback).catch(expectedTypeError);');
- shouldNotThrow('pc.addIceCandidate(iceCandidate, unexpectedCallback, null).catch(expectedTypeError);');
- shouldNotThrow('pc.addIceCandidate(iceCandidate, addIceCandidateSuccess1, unexpectedCallback);');
- }
-}
-
-function testExecutionOrderClosedConnection()
-{
- var localPeerConnection = new webkitRTCPeerConnection(null, null);
- localPeerConnection.close();
- var counter = 0;
- window.events = [];
- Promise.resolve().then(_ => events[counter++] = 1);
- var iceCandidate = new RTCIceCandidate({candidate:"nano nano"});
- localPeerConnection.addIceCandidate(iceCandidate, unexpectedCallback, error => {
- window.error = error;
- shouldBe('error.name', '"InvalidStateError"');
- shouldBe('error.toString()', '"InvalidStateError: The RTCPeerConnection\'s signalingState is \'closed\'."');
- events[counter++] = 2;
- });
- Promise.resolve().then(_ => {
- events[counter++] = 3;
- shouldBe('events', '[1,2,3]');
- });
-}
-
-shouldNotThrow('testExecutionOrderClosedConnection()');
-shouldNotThrow('pc = new webkitRTCPeerConnection(null, null);');
-pc.oniceconnectionstatechange = onIceChange1;
-
-window.jsTestIsAsync = true;
-window.successfullyParsed = true;
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698