mirror of
https://github.com/videojs/video.js.git
synced 2024-12-12 11:15:04 +02:00
a8ff970d4a
Broke out bind, guid, and element data functions from Lib Separated out more dom functions in to dom.js Broke out URL functions into url.js Removed setLocalStorage since it wasn't being used Moved browser tests out of lib Moved log functions into their own file Removed trim() since it wasn't being used Moved formatTime into its own file Moved round into its own file and renamed roundFloat() Moved capitalize into its own file and renamed as toTitleCase() Moved createTimeRange into its own file Removed Lib.arr.forEach infavor of the native forEach Removed Lib.obj.create in favor of native Object.create (ES6-sham) Removed obj.each in favor of native Object.getOwnPropertyNames().forEach() Removed obj.merge and copy. Using lodash.assign instead. Replaced Lib.obj.isPlain with lodash.isPlainObject Removed Lib.obj.isArray in favor of the native Array.isArray Also removed the lib.js tests file as all tests have been moved or removed. Removed Lib.isEmpty in favor of !Object.getOwnPropertyNames().length Switched Util.mergeOptions and deepMerge to use new mergeOptions() Moved Lib.TEST_VID to Html5.TEST_VID Removed Lib references everywhere. Woo! Attempting to fix sourcemap test errors by setting grunt-browserify version Switched to object.assign from lodash.assign Removed unused 'inherits' dependency Reorganzied test files and added '.test' to file names Combined js/core.js and js/video.js Moved events.js into the utils directory
67 lines
2.1 KiB
JavaScript
67 lines
2.1 KiB
JavaScript
import videojs from '../../src/js/video.js';
|
|
import TestHelpers from './test-helpers.js';
|
|
import Player from '../../src/js/player.js';
|
|
import Options from '../../src/js/options.js';
|
|
import document from 'global/document';
|
|
|
|
q.module('video.js');
|
|
|
|
test('should create a video tag and have access children in old IE', function(){
|
|
var fixture = document.getElementById('qunit-fixture');
|
|
|
|
fixture.innerHTML += '<video id="test_vid_id"><source type="video/mp4"></video>';
|
|
|
|
var vid = document.getElementById('test_vid_id');
|
|
|
|
ok(vid.childNodes.length === 1);
|
|
ok(vid.childNodes[0].getAttribute('type') === 'video/mp4');
|
|
});
|
|
|
|
test('should return a video player instance', function(){
|
|
var fixture = document.getElementById('qunit-fixture');
|
|
fixture.innerHTML += '<video id="test_vid_id"></video><video id="test_vid_id2"></video>';
|
|
|
|
var player = videojs('test_vid_id');
|
|
ok(player, 'created player from tag');
|
|
ok(player.id() === 'test_vid_id');
|
|
ok(Player.players['test_vid_id'] === player, 'added player to global reference');
|
|
|
|
var playerAgain = videojs('test_vid_id');
|
|
ok(player === playerAgain, 'did not create a second player from same tag');
|
|
|
|
var tag2 = document.getElementById('test_vid_id2');
|
|
var player2 = videojs(tag2);
|
|
ok(player2.id() === 'test_vid_id2', 'created player from element');
|
|
});
|
|
|
|
test('should add the value to the languages object', function() {
|
|
var code, data, result;
|
|
|
|
code = 'es';
|
|
data = {'Hello': 'Hola'};
|
|
result = videojs.addLanguage(code, data);
|
|
|
|
ok(Options['languages'][code], 'should exist');
|
|
equal(Options['languages'][code], data, 'should match');
|
|
deepEqual(result[code], Options['languages'][code], 'should also match');
|
|
});
|
|
|
|
|
|
test('should expose plugin registry function', function() {
|
|
var pluginName, pluginFunction, player;
|
|
|
|
pluginName = 'foo';
|
|
pluginFunction = function(options) {
|
|
console.log(this);
|
|
};
|
|
|
|
ok(videojs.plugin, 'should exist');
|
|
|
|
videojs.plugin(pluginName, pluginFunction);
|
|
|
|
player = TestHelpers.makePlayer();
|
|
|
|
ok(player.foo, 'should exist');
|
|
equal(player.foo, pluginFunction, 'should be equal');
|
|
});
|