summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encrypted-media/scripts/setmediakeys-again-after-playback.js
blob: 772bfcaa872fc5c4afcb51ee9855bc8e31c087e4 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
function runTest(config, qualifier) {
    var testname = testnamePrefix(qualifier, config.keysystem)
                                    + ', setmediakeys again after playback';

    var configuration = getSimpleConfigurationForContent(config.content);

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

    async_test(function(test) {
        var _video = config.video,
            _access,
            _mediaKeys,
            _mediaKeySession,
            _mediaSource;

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

        function onMessage(event) {
            config.messagehandler(event.messageType, event.message).then( function(response) {
                _mediaKeySession.update(response).catch(onFailure).then(function() {
                    _video.play();
                });
            });
        }

        function onEncrypted(event) {
            waitForEventAndRunStep('message', _mediaKeySession, onMessage, test);
            _mediaKeySession.generateRequest(   config.initData ? config.initDataType : event.initDataType,
                                                config.initData || event.initData )
            .catch(onFailure);
        }

        function playVideo()
        {
            return new Promise(function(resolve) {
                _mediaKeySession = _mediaKeys.createSession('temporary');
                waitForEventAndRunStep('encrypted', _video, onEncrypted, test);
                _video.src = URL.createObjectURL(_mediaSource);
                resolve('success');
            });
        }

        navigator.requestMediaKeySystemAccess(config.keysystem, [configuration]).then(function(access) {
            _access = access;
            return _access.createMediaKeys();
        }).then(function(result) {
            _mediaKeys = result;
            return _video.setMediaKeys(_mediaKeys);
        }).then(function() {
            return config.servercertificate ? _mediaKeys.setServerCertificate( config.servercertificate ) : true;
        }).then(function( success ) {
            return testmediasource(config);
        }).then(function(source) {
            _mediaSource = source;
            return playVideo();
        }).then(function(results) {
            return _access.createMediaKeys();
        }).then(function(result) {
            _mediaKeys = result;
            return waitForEvent('playing', _video);
        }).then(test.step_func(function(result) {
            assert_false(_video.ended);
            return _video.setMediaKeys(_mediaKeys);
        })).then(function() {
            // Able to change MediaKeys while playing.
            // This is not required to fail.
            _video.src='';
            test.done();
        }, test.step_func(function(error) {
            assert_in_array(error.name, ['InvalidStateError','NotSupportedError']);
            _video.src='';
            test.done();
        })).catch(onFailure);
    }, testname);
}