2013-03-05 23:39:43 +03:00
|
|
|
module('Player Minified');
|
|
|
|
|
2013-06-24 22:47:47 +03:00
|
|
|
test('should be able to access expected player API methods', function() {
|
|
|
|
var player = PlayerTest.makePlayer();
|
|
|
|
|
|
|
|
// Native HTML5 Methods
|
|
|
|
ok(player.play, 'play exists');
|
|
|
|
ok(player.pause, 'pause exists');
|
|
|
|
ok(player.paused, 'paused exists');
|
|
|
|
ok(player.src, 'src exists');
|
|
|
|
ok(player.currentTime, 'currentTime exists');
|
|
|
|
ok(player.duration, 'duration exists');
|
|
|
|
ok(player.buffered, 'buffered exists');
|
|
|
|
ok(player.volume, 'volume exists');
|
|
|
|
ok(player.muted, 'muted exists');
|
|
|
|
ok(player.width, 'width exists');
|
|
|
|
ok(player.height, 'height exists');
|
|
|
|
ok(player.requestFullScreen, 'requestFullScreen exists');
|
|
|
|
ok(player.cancelFullScreen, 'cancelFullScreen exists');
|
|
|
|
|
|
|
|
// Added player methods
|
|
|
|
ok(player.ready, 'ready exists');
|
|
|
|
ok(player.on, 'on exists');
|
|
|
|
ok(player.off, 'off exists');
|
|
|
|
ok(player.one, 'one exists');
|
|
|
|
ok(player.bufferedPercent, 'bufferedPercent exists');
|
|
|
|
ok(player.dimensions, 'dimensions exists');
|
2013-07-30 23:58:00 +03:00
|
|
|
ok(player.addClass, 'addClass exists');
|
|
|
|
ok(player.removeClass, 'removeClass exists');
|
2013-08-10 00:29:22 +03:00
|
|
|
ok(player.usingNativeControls, 'usingNativeControls exists');
|
2013-06-24 22:47:47 +03:00
|
|
|
|
|
|
|
player.dispose();
|
|
|
|
});
|
2013-03-05 23:39:43 +03:00
|
|
|
|
|
|
|
test('should export ready api call to public', function() {
|
|
|
|
var videoTag = PlayerTest.makeTag();
|
|
|
|
|
|
|
|
var fixture = document.getElementById('qunit-fixture');
|
|
|
|
fixture.appendChild(videoTag);
|
|
|
|
|
2013-05-09 19:23:32 +03:00
|
|
|
var player = videojs('example_1');
|
2013-03-05 23:39:43 +03:00
|
|
|
ok(player.ready !== undefined, 'ready callback is defined');
|
|
|
|
player.dispose();
|
|
|
|
});
|
2013-03-06 00:23:01 +03:00
|
|
|
|
2013-08-23 21:15:58 +03:00
|
|
|
test('should export useful components to the public', function () {
|
2013-10-09 22:32:01 +03:00
|
|
|
ok(videojs.TOUCH_ENABLED, 'Touch detection should be public');
|
2013-08-23 21:15:58 +03:00
|
|
|
ok(videojs.ControlBar, 'ControlBar should be public');
|
|
|
|
ok(videojs.Button, 'Button should be public');
|
|
|
|
ok(videojs.PlayToggle, 'PlayToggle should be public');
|
|
|
|
ok(videojs.FullscreenToggle, 'FullscreenToggle should be public');
|
|
|
|
ok(videojs.BigPlayButton, 'BigPlayButton should be public');
|
|
|
|
ok(videojs.LoadingSpinner, 'LoadingSpinner should be public');
|
|
|
|
ok(videojs.CurrentTimeDisplay, 'CurrentTimeDisplay should be public');
|
|
|
|
ok(videojs.DurationDisplay, 'DurationDisplay should be public');
|
|
|
|
ok(videojs.TimeDivider, 'TimeDivider should be public');
|
|
|
|
ok(videojs.RemainingTimeDisplay, 'RemainingTimeDisplay should be public');
|
|
|
|
ok(videojs.Slider, 'Slider should be public');
|
|
|
|
ok(videojs.ProgressControl, 'ProgressControl should be public');
|
|
|
|
ok(videojs.SeekBar, 'SeekBar should be public');
|
|
|
|
ok(videojs.LoadProgressBar, 'LoadProgressBar should be public');
|
|
|
|
ok(videojs.PlayProgressBar, 'PlayProgressBar should be public');
|
|
|
|
ok(videojs.SeekHandle, 'SeekHandle should be public');
|
|
|
|
ok(videojs.VolumeControl, 'VolumeControl should be public');
|
|
|
|
ok(videojs.VolumeBar, 'VolumeBar should be public');
|
|
|
|
ok(videojs.VolumeLevel, 'VolumeLevel should be public');
|
|
|
|
ok(videojs.VolumeMenuButton, 'VolumeMenuButton should be public');
|
|
|
|
ok(videojs.VolumeHandle, 'VolumeHandle should be public');
|
|
|
|
ok(videojs.MuteToggle, 'MuteToggle should be public');
|
|
|
|
ok(videojs.PosterImage, 'PosterImage should be public');
|
|
|
|
ok(videojs.Menu, 'Menu should be public');
|
|
|
|
ok(videojs.MenuItem, 'MenuItem should be public');
|
|
|
|
ok(videojs.MenuButton, 'MenuButton should be public');
|
|
|
|
});
|
|
|
|
|
2013-03-06 00:23:01 +03:00
|
|
|
test('should be able to initialize player twice on the same tag using string reference', function() {
|
|
|
|
var videoTag = PlayerTest.makeTag();
|
|
|
|
var id = videoTag.id;
|
|
|
|
|
|
|
|
var fixture = document.getElementById('qunit-fixture');
|
|
|
|
fixture.appendChild(videoTag);
|
|
|
|
|
2013-05-09 19:23:32 +03:00
|
|
|
var player = videojs('example_1');
|
2013-03-06 00:23:01 +03:00
|
|
|
player.dispose();
|
|
|
|
ok(!document.getElementById(id), 'element is removed');
|
|
|
|
|
|
|
|
videoTag = PlayerTest.makeTag();
|
|
|
|
fixture.appendChild(videoTag);
|
|
|
|
|
2013-05-09 19:23:32 +03:00
|
|
|
player = videojs('example_1');
|
2013-03-06 00:23:01 +03:00
|
|
|
player.dispose();
|
|
|
|
});
|
2013-06-03 23:19:46 +03:00
|
|
|
|
2013-06-05 20:27:38 +03:00
|
|
|
test('videojs.players should be availble after minification', function() {
|
|
|
|
var videoTag = PlayerTest.makeTag();
|
|
|
|
var id = videoTag.id;
|
|
|
|
|
|
|
|
var fixture = document.getElementById('qunit-fixture');
|
|
|
|
fixture.appendChild(videoTag);
|
|
|
|
|
|
|
|
var player = videojs(id);
|
2013-08-10 00:29:22 +03:00
|
|
|
ok(videojs.players[id] === player, 'videojs.players is available');
|
2013-06-05 20:27:38 +03:00
|
|
|
|
|
|
|
player.dispose();
|
|
|
|
});
|