OLD | NEW |
1 Tests RTCPeerConnection remoteDescription. | 1 Tests RTCPeerConnection remoteDescription. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS pc.setRemoteDescription(null) threw exception TypeError: Failed to execute
'setRemoteDescription' on 'RTCPeerConnection': parameter 1 is not of type 'RTCSe
ssionDescription'.. | 6 PASS testExecutionOrderClosedConnection() did not throw exception. |
7 PASS pc.setRemoteDescription(sessionDescription, requestSucceeded1, requestFaile
d1); did not throw exception. | 7 PASS pc.setRemoteDescription().catch(expectedTypeError) did not throw exception. |
| 8 PASS pc.setRemoteDescription(null).catch(expectedInvalidSessionDescription) did
not throw exception. |
| 9 PASS pc.setRemoteDescription(sessionDescription, requestSucceeded1, unexpectedCa
llback); did not throw exception. |
| 10 PASS error.name is "TypeError" |
| 11 PASS orderCounter is 1 |
| 12 PASS error is "The RTCPeerConnection's signalingState is 'closed'." |
| 13 PASS orderCounter is 2 |
| 14 PASS error.name is "TypeError" |
| 15 PASS orderCounter is 3 |
| 16 PASS error.name is "TypeError" |
| 17 PASS expectedTypeError was called. |
| 18 PASS expectedInvalidSessionDescription was called. |
8 PASS requestSucceeded was called. | 19 PASS requestSucceeded was called. |
9 PASS pc.setRemoteDescription(sessionDescription, requestSucceeded2, requestFaile
d2); did not throw exception. | 20 PASS pc.setRemoteDescription(sessionDescription, unexpectedCallback, requestFail
ed2); did not throw exception. |
10 PASS requestFailed was called. | 21 PASS requestFailed was called. |
11 PASS pc.remoteDescription.type is "answer" | 22 PASS pc.remoteDescription.type is "answer" |
12 PASS pc.remoteDescription.sdp is "remote" | 23 PASS pc.remoteDescription.sdp is "remote" |
13 PASS pc.remoteDescription.type is "answer" | 24 PASS pc.remoteDescription.type is "answer" |
14 PASS pc.remoteDescription.sdp is "remote" | 25 PASS pc.remoteDescription.sdp is "remote" |
15 PASS successfullyParsed is true | 26 PASS successfullyParsed is true |
16 | 27 |
17 TEST COMPLETE | 28 TEST COMPLETE |
18 | 29 |
OLD | NEW |