summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encrypted-media/scripts/setmediakeys.js
blob: a85adeaeafc63cf3f8224eee52d89aebab9b6450 (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
function runTest(config, qualifier) {
    var testname = testnamePrefix( qualifier, config.keysystem )
                                            + ', setMediaKeys';

    var configuration = getSimpleConfigurationForContent( config.content );

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

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

        // Test MediaKeys assignment.
        assert_equals(_video.mediaKeys, null);
        assert_equals(typeof _video.setMediaKeys, 'function');

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

        // Try setting mediaKeys to null.
        _video.setMediaKeys(null).then(function(result) {
            assert_equals(_video.mediaKeys, null);

            // setMediaKeys should fail when setting to the wrong type of object - Date.
            return _video.setMediaKeys(new Date());
        }).then(function (result) {
            assert_unreached('setMediaKeys should fail when setting to wrong kind of object (Date)');
        }, function(error) {
            // The error should be TypeError.
            assert_throws_js(TypeError, () => { throw error; },
                             'setMediaKeys should return a TypeError when setting to wrong kind of object (Date)');
            return navigator.requestMediaKeySystemAccess(config.keysystem, [configuration]);
        }).then(function(access) {
            assert_equals(access.keySystem, config.keysystem)
            return access.createMediaKeys();
        }).then(function(result) {
            _mediaKeys = result;
            assert_not_equals(_mediaKeys, null);
            assert_equals(typeof _mediaKeys.createSession, 'function');
            return _video.setMediaKeys(_mediaKeys);
        }).then(function(result) {
            assert_not_equals(_video.mediaKeys, null);
            assert_equals(_video.mediaKeys, _mediaKeys);
            test.done();
        }).catch(onFailure);
    }, testname);
}