mirror of
https://github.com/videojs/video.js.git
synced 2024-12-14 11:23:30 +02:00
4d97dd4d29
- Fixed a console error in dom tests from loading a track source - Switched to non-fetching poster urls in tests to prevent errors - Stubbed XHR for TextTrack tests to prevent log errors - Fixed text track console errors that stubbing async didn't catch because there's some async happening in tracks that makes it so - XHR isn't even used until the test is complete - Removed extra code - Added player.dispose more places and fixed attributes test
142 lines
4.0 KiB
JavaScript
142 lines
4.0 KiB
JavaScript
import TextTrackMenuItem from '../../../src/js/control-bar/text-track-controls/text-track-menu-item.js';
|
|
import TestHelpers from '../test-helpers.js';
|
|
import * as browser from '../../../src/js/utils/browser.js';
|
|
|
|
q.module('Text Track Controls', {
|
|
'setup': function() {
|
|
this.clock = sinon.useFakeTimers();
|
|
},
|
|
'teardown': function() {
|
|
this.clock.restore();
|
|
}
|
|
});
|
|
|
|
var track = {
|
|
kind: 'captions',
|
|
label: 'test'
|
|
};
|
|
|
|
test('should be displayed when text tracks list is not empty', function() {
|
|
let player = TestHelpers.makePlayer({
|
|
tracks: [track]
|
|
});
|
|
|
|
this.clock.tick(1000);
|
|
|
|
ok(!player.controlBar.captionsButton.hasClass('vjs-hidden'), 'control is displayed');
|
|
equal(player.textTracks().length, 1, 'textTracks contains one item');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
test('should be displayed when a text track is added to an empty track list', function() {
|
|
var player = TestHelpers.makePlayer();
|
|
|
|
player.addRemoteTextTrack(track);
|
|
|
|
ok(!player.controlBar.captionsButton.hasClass('vjs-hidden'), 'control is displayed');
|
|
equal(player.textTracks().length, 1, 'textTracks contains one item');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
test('should not be displayed when text tracks list is empty', function() {
|
|
var player = TestHelpers.makePlayer();
|
|
|
|
ok(player.controlBar.captionsButton.hasClass('vjs-hidden'), 'control is not displayed');
|
|
equal(player.textTracks().length, 0, 'textTracks is empty');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
test('should not be displayed when last text track is removed', function() {
|
|
var player = TestHelpers.makePlayer({
|
|
tracks: [track]
|
|
});
|
|
|
|
player.removeRemoteTextTrack(player.textTracks()[0]);
|
|
|
|
ok(player.controlBar.captionsButton.hasClass('vjs-hidden'), 'control is not displayed');
|
|
equal(player.textTracks().length, 0, 'textTracks is empty');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
test('menu should contain "Settings", "Off" and one track', function() {
|
|
var player = TestHelpers.makePlayer({
|
|
tracks: [track]
|
|
}),
|
|
menuItems;
|
|
|
|
this.clock.tick(1000);
|
|
|
|
menuItems = player.controlBar.captionsButton.items;
|
|
|
|
equal(menuItems.length, 3, 'menu contains three items');
|
|
equal(menuItems[0].track.label, 'captions settings', 'menu contains "captions settings"');
|
|
equal(menuItems[1].track.label, 'captions off', 'menu contains "captions off"');
|
|
equal(menuItems[2].track.label, 'test', 'menu contains "test" track');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
test('menu should update with addRemoteTextTrack', function() {
|
|
var player = TestHelpers.makePlayer({
|
|
tracks: [track]
|
|
});
|
|
|
|
this.clock.tick(1000);
|
|
|
|
player.addRemoteTextTrack(track);
|
|
|
|
equal(player.controlBar.captionsButton.items.length, 4, 'menu does contain added track');
|
|
equal(player.textTracks().length, 2, 'textTracks contains two items');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
test('menu should update with removeRemoteTextTrack', function() {
|
|
var player = TestHelpers.makePlayer({
|
|
tracks: [track, track]
|
|
});
|
|
|
|
this.clock.tick(1000);
|
|
|
|
player.removeRemoteTextTrack(player.textTracks()[0]);
|
|
|
|
equal(player.controlBar.captionsButton.items.length, 3, 'menu does not contain removed track');
|
|
equal(player.textTracks().length, 1, 'textTracks contains one item');
|
|
|
|
player.dispose();
|
|
});
|
|
|
|
if (!browser.IS_IE8) {
|
|
// This test doesn't work on IE8.
|
|
// However, this test tests a specific with iOS7 where the TextTrackList doesn't report track mode changes.
|
|
// TODO: figure out why this test doens't work on IE8. https://github.com/videojs/video.js/issues/1861
|
|
test('menu items should polyfill mode change events', function() {
|
|
var player = TestHelpers.makePlayer({}),
|
|
changes,
|
|
trackMenuItem;
|
|
|
|
// emulate a TextTrackList that doesn't report track mode changes,
|
|
// like iOS7
|
|
player.textTracks().onchange = undefined;
|
|
trackMenuItem = new TextTrackMenuItem(player, {
|
|
track: track
|
|
});
|
|
|
|
player.textTracks().on('change', function() {
|
|
changes++;
|
|
});
|
|
changes = 0;
|
|
trackMenuItem.trigger('tap');
|
|
equal(changes, 1, 'taps trigger change events');
|
|
|
|
trackMenuItem.trigger('click');
|
|
equal(changes, 2, 'clicks trigger change events');
|
|
|
|
player.dispose();
|
|
});
|
|
}
|