From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- dom/media/tests/mochitest/identity/idp-min.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dom/media/tests/mochitest/identity/idp-min.js (limited to 'dom/media/tests/mochitest/identity/idp-min.js') diff --git a/dom/media/tests/mochitest/identity/idp-min.js b/dom/media/tests/mochitest/identity/idp-min.js new file mode 100644 index 000000000..8e228b688 --- /dev/null +++ b/dom/media/tests/mochitest/identity/idp-min.js @@ -0,0 +1,24 @@ +(function(global) { + 'use strict'; + // A minimal implementation of the interface. + // Though this isn't particularly functional. + // This is needed so that we can have a "working" IdP served + // from two different locations in the tree. + global.rtcIdentityProvider.register({ + generateAssertion: function(payload, origin, usernameHint) { + dump('idp: generateAssertion(' + payload + ')\n'); + return Promise.resolve({ + idp: { domain: 'example.com', protocol: 'idp.js' }, + assertion: 'bogus' + }); + }, + + validateAssertion: function(assertion, origin) { + dump('idp: validateAssertion(' + assertion + ')\n'); + return Promise.resolve({ + identity: 'user@example.com', + contents: 'bogus' + }); + } + }); +}(this)); -- cgit v1.2.3