summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/identity/test_fingerprints.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/media/tests/mochitest/identity/test_fingerprints.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/media/tests/mochitest/identity/test_fingerprints.html')
-rw-r--r--dom/media/tests/mochitest/identity/test_fingerprints.html112
1 files changed, 112 insertions, 0 deletions
diff --git a/dom/media/tests/mochitest/identity/test_fingerprints.html b/dom/media/tests/mochitest/identity/test_fingerprints.html
new file mode 100644
index 000000000..0fd065af2
--- /dev/null
+++ b/dom/media/tests/mochitest/identity/test_fingerprints.html
@@ -0,0 +1,112 @@
+<html>
+<head>
+<meta charset="utf-8" />
+<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
+<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
+</head>
+<body>
+ <script class="testbody" type="application/javascript">
+'use strict';
+
+// here we call the identity provider directly
+function getIdentityAssertion(fpArray) {
+ var Cu = SpecialPowers.Cu;
+ var rtcid = Cu.import('resource://gre/modules/media/IdpSandbox.jsm');
+ var sandbox = new rtcid.IdpSandbox('example.com', 'idp.js', window);
+ return sandbox.start()
+ .then(idp => SpecialPowers.wrap(idp)
+ .generateAssertion(JSON.stringify({ fingerprint: fpArray }),
+ 'https://example.com'))
+ .then(assertion => {
+ assertion = SpecialPowers.wrap(assertion);
+ var assertionString = btoa(JSON.stringify(assertion));
+ sandbox.stop();
+ return assertionString;
+ });
+}
+
+// This takes a real fingerprint and makes some extra bad ones.
+function makeFingerprints(algo, digest) {
+ var fingerprints = [];
+ fingerprints.push({ algorithm: algo, digest: digest });
+ for (var i = 0; i < 3; ++i) {
+ fingerprints.push({
+ algorithm: algo,
+ digest: digest.replace(/:./g, ':' + i.toString(16))
+ });
+ }
+ return fingerprints;
+}
+
+var fingerprintRegex = /^a=fingerprint:(\S+) (\S+)/m;
+var identityRegex = /^a=identity:(\S+)/m;
+
+function fingerprintSdp(fingerprints) {
+ return fingerprints.map(fp => 'a=fInGeRpRiNt:' + fp.algorithm +
+ ' ' + fp.digest + '\n').join('');
+}
+
+// Firefox only uses a single fingerprint.
+// That doesn't mean we have it create SDP that describes two.
+// This function synthesizes that SDP and tries to set it.
+function testMultipleFingerprints() {
+ // this one fails setRemoteDescription if the identity is not good
+ var pcStrict = new RTCPeerConnection({ peerIdentity: 'someone@example.com'});
+ // this one will be manually tweaked to have two fingerprints
+ var pcDouble = new RTCPeerConnection({});
+
+ var offer, match, fingerprints;
+
+ var fail = msg =>
+ (e => ok(false, 'error in ' + msg + ': ' +
+ (e.message ? (e.message + '\n' + e.stack) : e)));
+
+ navigator.mediaDevices.getUserMedia({ audio: true, fake: true })
+ .then(stream => {
+ ok(stream, 'Got fake stream');
+ pcDouble.addStream(stream);
+ return pcDouble.createOffer();
+ })
+ .then(o => {
+ offer = o;
+ ok(offer, 'Got offer');
+
+ match = offer.sdp.match(fingerprintRegex);
+ if (!match) {
+ throw new Error('No fingerprint in offer SDP');
+ }
+ fingerprints = makeFingerprints(match[1], match[2]);
+ return getIdentityAssertion(fingerprints);
+ })
+ .then(assertion => {
+ ok(assertion, 'Should have assertion');
+
+ var sdp = offer.sdp.slice(0, match.index) +
+ 'a=identity:' + assertion + '\n' +
+ fingerprintSdp(fingerprints.slice(1)) +
+ offer.sdp.slice(match.index);
+
+ var desc = new RTCSessionDescription({ type: 'offer', sdp: sdp });
+ return pcStrict.setRemoteDescription(desc);
+ })
+ .then(() => {
+ ok(true, 'Modified fingerprints were accepted');
+ }, error => {
+ var e = SpecialPowers.wrap(error);
+ ok(false, 'error in test: ' +
+ (e.message ? (e.message + '\n' + e.stack) : e));
+ })
+ .then(() => {
+ pcStrict.close();
+ pcDouble.close();
+ SimpleTest.finish();
+ });
+}
+
+SimpleTest.waitForExplicitFinish();
+SpecialPowers.pushPrefEnv({
+ set: [ [ 'media.peerconnection.identity.enabled', true ] ]
+}, testMultipleFingerprints);
+</script>
+ </body>
+</html>