summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encrypted-media/scripts/temporary-license-type.js
blob: 44c9f158085fcffd42a8573e080d17939a7a866c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
function runTest(config,qualifier) {

    var testname = testnamePrefix(qualifier, config.keysystem) + ', cannot load persistent license into temporary session';

    var configuration = getSimpleConfigurationForContent(config.content);

    if (config.initDataType && config.initData) {
        configuration.initDataTypes = [config.initDataType];
    }

    async_test(function(test)
    {
        var initDataType;
        var initData;
        var mediaKeySession;

        function onFailure(error) {
            forceTestFailureFromPromise(test, error);
        }

        function processMessage(event)
        {
            assert_true(event instanceof window.MediaKeyMessageEvent);
            assert_equals(event.target, mediaKeySession);
            assert_equals(event.type, 'message');
            assert_in_array(event.messageType, ['license-request', 'individualization-request']);

            config.messagehandler(event.messageType, event.message).then( function(response) {
                mediaKeySession.update(response).then( test.step_func( function() {
                    if ( event.messageType !== 'license-request' ) {
                        return;
                    }
                    assert_unreached( "Update with incorrect license type should fail" )
                } ) ).catch( test.step_func( function( error ) {
                    if ( event.messageType !== 'license-request' ) {
                        forceTestFailureFromPromise(test, error);
                        return;
                    }

                    assert_throws_js(TypeError, () => { throw error; });
                    test.done();
                } ) );
            }).catch(onFailure);
        }

        navigator.requestMediaKeySystemAccess(config.keysystem, [configuration]).then(function(access) {
            initDataType = access.getConfiguration().initDataTypes[0];
            if (config.initDataType && config.initData) {
                initData = config.initData;
            } else {
                initData = getInitData(config.content, initDataType);
            }
            return access.createMediaKeys();
        }).then(test.step_func(function(mediaKeys) {
            mediaKeySession = mediaKeys.createSession('temporary');
            waitForEventAndRunStep('message', mediaKeySession, test.step_func(processMessage), test);
            return mediaKeySession.generateRequest(initDataType, initData);
        })).catch(onFailure);
    }, testname );

}