summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encrypted-media/scripts/onencrypted.js
blob: acf0ffacc0cb4c3256e70b8473a40801e25fd2dd (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
function runTest(config) {
    var expectedInitData = [];
    expectedInitData.push(stringToUint8Array(atob(config.keys[0].initData)));
    expectedInitData.push(stringToUint8Array(atob(config.keys[1].initData)));

    // Will get 2 identical events, one for audio, one for video.
    var expectedEvents = 2;
    var currentData;

    async_test(function (test) {
        var video = config.video,
            mediaSource,
            onEncrypted = function (event) {
                currentData = new Uint8Array(event.initData);
                assert_equals(event.target, config.video);
                assert_true(event instanceof window.MediaEncryptedEvent);
                assert_equals(event.type, 'encrypted');
                assert_equals(event.initDataType, 'cenc');
                // At this point we do not know if the event is related to audio or video. So check for both expected init data
                assert_true(checkInitData(currentData, expectedInitData[0]) || checkInitData(currentData, expectedInitData[1]));

                if (--expectedEvents === 0) {
                    test.done();
                }
            };

        waitForEventAndRunStep('encrypted', video, onEncrypted, test);
        testmediasource(config).then(function (source) {
            mediaSource = source;
            config.video.src = URL.createObjectURL(mediaSource);
            return source.done;
        }).then(function(){
            video.play();
        });
    }, 'encrypted fired on encrypted media file.');
}

function checkInitData(data, expectedData) {
    if (data.length !== expectedData.length) {
        return false;
    }
    for (var i = 0; i < data.length; i++) {
        if (data[i] !== expectedData[i]) {
            return false;
        }
    }
    return true;
}