Files
tubestation/testing/web-platform/tests/webrtc/RTCRtpReceiver-getParameters.html
Dominique Hazael-Massieux 8ce4a22374 Bug 1604779 [wpt PR 20832] - Align with latest version of WebRTC spec, a=testonly
Automatic update from web-platform-tests
Align with latest version of WebRTC spec (#20832)

* Remove test for getDefaultIceServers which is no longer in the WebRTC spec

* Remove unneeded dependency on getUserMedia for testing WebRTC stats

* Fix bug in reading stats on receiver

The test was trying to read the stats on the receiver using the track from the sender rather than the receiver

* Remove obsolete RTCMediaStreamStats tests

* Align with latest set of mandatory to implement stats

From https://w3c.github.io/webrtc-pc/webrtc.html#mandatory-to-implement-stats

* Remove test for obsolete 'stream' stats

* Remove RTCRtpParameters features removed from the spec

* Align with removal of encodings as receiverparameters

Also, use getTransceivers() rather than getReceivers() since stopped receivers aren't provided in getReceivers()

* encodings is only for SenderParameters now

* Align with specs on content of rtpencoding parameters

* Remove abandonned datachannel priority attribute

* Align with removal of rtcoauthcredential

* Remove test for obsoleted RTCMediaStreamStats

* Align with latest MTI stats hiearchy

based on https://w3c.github.io/webrtc-pc/webrtc.html#mandatory-to-implement-stats
--

wpt-commits: 24221e0d284146ed5c47cd20b116e0ccf8cda081
wpt-pr: 20832
2020-10-08 10:17:50 +00:00

74 lines
2.7 KiB
HTML

<!doctype html>
<meta charset=utf-8>
<title>RTCRtpReceiver.prototype.getParameters</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="dictionary-helper.js"></script>
<script src="RTCRtpParameters-helper.js"></script>
<script>
'use strict';
// Test is based on the following editor draft:
// https://w3c.github.io/webrtc-pc/archives/20170605/webrtc.html
// The following helper functions are called from RTCRtpParameters-helper.js:
// validateReceiverRtpParameters
/*
Validates the RTCRtpParameters returned from RTCRtpReceiver.prototype.getParameters
5.3. RTCRtpReceiver Interface
getParameters
When getParameters is called, the RTCRtpParameters dictionary is constructed
as follows:
- The headerExtensions sequence is populated based on the header extensions that
the receiver is currently prepared to receive.
- The codecs sequence is populated based on the codecs that the receiver is currently
prepared to receive.
- rtcp.reducedSize is set to true if the receiver is currently prepared to receive
reduced-size RTCP packets, and false otherwise. rtcp.cname is left undefined.
*/
promise_test(async t => {
const pc = new RTCPeerConnection();
t.add_cleanup(() => pc.close());
pc.addTransceiver('audio');
const callee = await doOfferAnswerExchange(t, pc);
const param = callee.getTransceivers()[0].receiver.getParameters();
validateReceiverRtpParameters(param);
assert_greater_than(param.headerExtensions.length, 0);
assert_greater_than(param.codecs.length, 0);
}, 'getParameters() with audio receiver');
promise_test(async t => {
const pc = new RTCPeerConnection();
t.add_cleanup(() => pc.close());
pc.addTransceiver('video');
const callee = await doOfferAnswerExchange(t, pc);
const param = callee.getTransceivers()[0].receiver.getParameters();
validateReceiverRtpParameters(param);
assert_greater_than(param.headerExtensions.length, 0);
assert_greater_than(param.codecs.length, 0);
}, 'getParameters() with video receiver');
promise_test(async t => {
const pc = new RTCPeerConnection();
t.add_cleanup(() => pc.close());
pc.addTransceiver('video', {
sendEncodings: [
{ rid: "rid1" },
{ rid: "rid2" }
]
});
const callee = await doOfferAnswerExchange(t, pc);
const param = callee.getTransceivers()[0].receiver.getParameters();
validateReceiverRtpParameters(param);
assert_greater_than(param.headerExtensions.length, 0);
assert_greater_than(param.codecs.length, 0);
}, 'getParameters() with simulcast video receiver');
</script>