gecko/dom/media/tests/mochitest/test_peerConnection_errorCallbacks.html
Henrik Skupin c451b89535 Bug 881658 - Fix handling of error and event callbacks in current WebRTC Mochitests. r=jsmith
--HG--
extra : rebase_source : 1d98e4ce4f339f757f60b98e49ab2e28a8e5912f
2013-06-13 19:43:45 +02:00

70 lines
2.5 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="head.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
bug: "834270",
title: "Align PeerConnection error handling with WebRTC specification"
});
function errorCallback(nextStep) {
return function (err) {
ok(err, "Error is set");
ok(err.name && err.name.length, "Error name = " + err.name);
ok(err.message && err.message.length, "Error message = " + err.message);
nextStep();
}
};
function testCreateAnswerError() {
var pc = new mozRTCPeerConnection();
info ("Testing createAnswer error callback");
pc.createAnswer(unexpectedCallbackAndFinish("createAnswer before offer should fail"),
errorCallback(testSetLocalDescriptionError));
};
function testSetLocalDescriptionError() {
var pc = new mozRTCPeerConnection();
info ("Testing setLocalDescription error callback");
pc.setLocalDescription(new mozRTCSessionDescription({ sdp: "Picklechips!",
type: "offer" }),
unexpectedCallbackAndFinish("setLocalDescription with nonsense SDP should fail"),
errorCallback(testSetRemoteDescriptionError));
};
function testSetRemoteDescriptionError() {
var pc = new mozRTCPeerConnection();
info ("Testing setRemoteDescription error callback");
pc.setRemoteDescription(new mozRTCSessionDescription({ sdp: "Who?",
type: "offer" }),
unexpectedCallbackAndFinish("setRemoteDescription with nonsense SDP should fail"),
errorCallback(testAddIceCandidateError));
};
function testAddIceCandidateError() {
var pc = new mozRTCPeerConnection();
info ("Testing addIceCandidate error callback");
pc.addIceCandidate(new mozRTCIceCandidate({ candidate: "Pony Lords, jump!",
sdpMid: "whee",
sdpMLineIndex: 1 }),
unexpectedCallbackAndFinish("addIceCandidate with nonsense candidate should fail"),
errorCallback(SimpleTest.finish));
};
// No test for createOffer errors -- there's nothing we can do at this
// level to evoke an error in createOffer.
runTest(function () {
testCreateAnswerError();
});
</script>
</pre>
</body>
</html>