mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Automatic update from web-platform-testsUpdate external/wpt/webrtc/RTCRtpParameters* tests. This is in preparation for get/setParameters[1] and RTCRtpTransceiver[2]. Tests are updated to use promise_test and async/await to make them easier to write and to execute sequentially. Tests are updated to set up a call before getParameters() because many parameters are defined as "that has been negotiated". If we want to test what is returned before negotiation we should add that as separate tests. For now, this is necessary for the tests to run on [1][2]. Some tests are removed because they no longer reflect the spec. Because get/setParameters() and RTCRtpTransceiver has not landed yet, the tests are still expected to fail. [1] https://chromium-review.googlesource.com/c/chromium/src/+/1102436 [2] https://chromium-review.googlesource.com/c/chromium/src/+/1025771 Bug: 803494, 777617 Change-Id: I3f14a37925837576a602d91bb67e48181c56a946 Reviewed-on: https://chromium-review.googlesource.com/1102502 Reviewed-by: Harald Alvestrand <hta@chromium.org> Commit-Queue: Henrik Boström <hbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#571430} -- wpt-commits: 36fb033a4051e63a0ab4bd073fdaadf808953564 wpt-pr: 11526
207 lines
6.9 KiB
HTML
207 lines
6.9 KiB
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>RTCRtpParameters codecs</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:
|
|
// doOfferAnswerExchange
|
|
// validateSenderRtpParameters
|
|
|
|
/*
|
|
5.2. RTCRtpSender Interface
|
|
interface RTCRtpSender {
|
|
Promise<void> setParameters(optional RTCRtpParameters parameters);
|
|
RTCRtpParameters getParameters();
|
|
};
|
|
|
|
dictionary RTCRtpParameters {
|
|
DOMString transactionId;
|
|
sequence<RTCRtpEncodingParameters> encodings;
|
|
sequence<RTCRtpHeaderExtensionParameters> headerExtensions;
|
|
RTCRtcpParameters rtcp;
|
|
sequence<RTCRtpCodecParameters> codecs;
|
|
RTCDegradationPreference degradationPreference;
|
|
};
|
|
|
|
dictionary RTCRtpCodecParameters {
|
|
[readonly]
|
|
unsigned short payloadType;
|
|
|
|
[readonly]
|
|
DOMString mimeType;
|
|
|
|
[readonly]
|
|
unsigned long clockRate;
|
|
|
|
[readonly]
|
|
unsigned short channels;
|
|
|
|
[readonly]
|
|
DOMString sdpFmtpLine;
|
|
};
|
|
|
|
getParameters
|
|
- The codecs sequence is populated based on the codecs that have been negotiated
|
|
for sending, and which the user agent is currently capable of sending.
|
|
|
|
If setParameters has removed or reordered codecs, getParameters MUST return
|
|
the shortened/reordered list. However, every time codecs are renegotiated by
|
|
a new offer/answer exchange, the list of codecs MUST be restored to the full
|
|
negotiated set, in the priority order indicated by the remote description,
|
|
in effect discarding the effects of setParameters.
|
|
|
|
codecs
|
|
- When using the setParameters method, the codecs sequence from the corresponding
|
|
call to getParameters can be reordered and entries can be removed, but entries
|
|
cannot be added, and the RTCRtpCodecParameters dictionary members cannot be modified.
|
|
*/
|
|
|
|
// Get the first codec from param.codecs.
|
|
// Assert that param.codecs has at least one element
|
|
function getFirstCodec(param) {
|
|
const { codecs } = param;
|
|
assert_greater_than(codecs.length, 0);
|
|
return codecs[0];
|
|
}
|
|
|
|
/*
|
|
5.2. setParameters
|
|
7. If parameters.encodings.length is different from N, or if any parameter
|
|
in the parameters argument, marked as a Read-only parameter, has a value
|
|
that is different from the corresponding parameter value returned from
|
|
sender.getParameters(), abort these steps and return a promise rejected
|
|
with a newly created InvalidModificationError. Note that this also applies
|
|
to transactionId.
|
|
*/
|
|
promise_test(async t => {
|
|
const pc = new RTCPeerConnection();
|
|
t.add_cleanup(() => pc.close());
|
|
|
|
const { sender } = pc.addTransceiver('audio');
|
|
await doOfferAnswerExchange(t, pc);
|
|
|
|
const param = sender.getParameters();
|
|
validateSenderRtpParameters(param);
|
|
|
|
const codec = getFirstCodec(param);
|
|
|
|
if(codec.payloadType === undefined) {
|
|
codec.payloadType = 8;
|
|
} else {
|
|
codec.payloadType += 1;
|
|
}
|
|
|
|
return promise_rejects(t, 'InvalidModificationError',
|
|
sender.setParameters(param));
|
|
}, 'setParameters() with codec.payloadType modified should reject with InvalidModificationError');
|
|
|
|
promise_test(async t => {
|
|
const pc = new RTCPeerConnection();
|
|
t.add_cleanup(() => pc.close());
|
|
const { sender } = pc.addTransceiver('audio');
|
|
await doOfferAnswerExchange(t, pc);
|
|
const param = sender.getParameters();
|
|
validateSenderRtpParameters(param);
|
|
|
|
const codec = getFirstCodec(param);
|
|
|
|
if(codec.mimeType === undefined) {
|
|
codec.mimeType = 'audio/piedpiper';
|
|
} else {
|
|
codec.mimeType = `${codec.mimeType}-modified`;
|
|
}
|
|
|
|
return promise_rejects(t, 'InvalidModificationError',
|
|
sender.setParameters(param));
|
|
}, 'setParameters() with codec.mimeType modified should reject with InvalidModificationError');
|
|
|
|
promise_test(async t => {
|
|
const pc = new RTCPeerConnection();
|
|
t.add_cleanup(() => pc.close());
|
|
const { sender } = pc.addTransceiver('audio');
|
|
await doOfferAnswerExchange(t, pc);
|
|
const param = sender.getParameters();
|
|
validateSenderRtpParameters(param);
|
|
|
|
const codec = getFirstCodec(param);
|
|
|
|
if(codec.clockRate === undefined) {
|
|
codec.clockRate = 8000;
|
|
} else {
|
|
codec.clockRate += 1;
|
|
}
|
|
|
|
return promise_rejects(t, 'InvalidModificationError',
|
|
sender.setParameters(param));
|
|
}, 'setParameters() with codec.clockRate modified should reject with InvalidModificationError');
|
|
|
|
promise_test(async t => {
|
|
const pc = new RTCPeerConnection();
|
|
t.add_cleanup(() => pc.close());
|
|
const { sender } = pc.addTransceiver('audio');
|
|
await doOfferAnswerExchange(t, pc);
|
|
const param = sender.getParameters();
|
|
validateSenderRtpParameters(param);
|
|
|
|
const codec = getFirstCodec(param);
|
|
|
|
if(codec.channels === undefined) {
|
|
codec.channels = 6;
|
|
} else {
|
|
codec.channels += 1;
|
|
}
|
|
|
|
return promise_rejects(t, 'InvalidModificationError',
|
|
sender.setParameters(param));
|
|
}, 'setParameters() with codec.channels modified should reject with InvalidModificationError');
|
|
|
|
promise_test(async t => {
|
|
const pc = new RTCPeerConnection();
|
|
t.add_cleanup(() => pc.close());
|
|
const { sender } = pc.addTransceiver('audio');
|
|
await doOfferAnswerExchange(t, pc);
|
|
const param = sender.getParameters();
|
|
validateSenderRtpParameters(param);
|
|
|
|
const codec = getFirstCodec(param);
|
|
|
|
if(codec.sdpFmtpLine === undefined) {
|
|
codec.sdpFmtpLine = 'a=fmtp:98 0-15';
|
|
} else {
|
|
codec.sdpFmtpLine = `${codec.sdpFmtpLine};foo=1`;
|
|
}
|
|
|
|
return promise_rejects(t, 'InvalidModificationError',
|
|
sender.setParameters(param));
|
|
}, 'setParameters() with codec.sdpFmtpLine modified should reject with InvalidModificationError');
|
|
|
|
promise_test(async t => {
|
|
const pc = new RTCPeerConnection();
|
|
t.add_cleanup(() => pc.close());
|
|
const { sender } = pc.addTransceiver('audio');
|
|
await doOfferAnswerExchange(t, pc);
|
|
const param = sender.getParameters();
|
|
validateSenderRtpParameters(param);
|
|
|
|
const { codecs } = param;
|
|
|
|
codecs.push({
|
|
payloadType: 2,
|
|
mimeType: 'audio/piedpiper',
|
|
clockRate: 1000,
|
|
channels: 2
|
|
});
|
|
|
|
return promise_rejects(t, 'InvalidModificationError',
|
|
sender.setParameters(param));
|
|
}, 'setParameters() with new codecs inserted should reject with InvalidModificationError');
|
|
|
|
</script>
|