mirror of
https://github.com/videojs/video.js.git
synced 2024-12-14 11:23:30 +02:00
a3b9b50e8b
test case for vjs.Component.dimension with 'auto'
193 lines
5.5 KiB
JavaScript
193 lines
5.5 KiB
JavaScript
module('Component');
|
|
|
|
var getFakePlayer = function(){
|
|
return {
|
|
// Fake player requries an ID
|
|
id: function(){ return 'player_1'; }
|
|
};
|
|
};
|
|
|
|
test('should create an element', function(){
|
|
var comp = new vjs.Component(getFakePlayer(), {});
|
|
|
|
ok(comp.el().nodeName);
|
|
});
|
|
|
|
test('should add a child component', function(){
|
|
var comp = new vjs.Component(getFakePlayer());
|
|
|
|
var child = comp.addChild('component');
|
|
|
|
ok(comp.children().length === 1);
|
|
ok(comp.children()[0] === child);
|
|
ok(comp.el().childNodes[0] === child.el());
|
|
ok(comp.getChild('component') === child);
|
|
ok(comp.getChildById(child.id()) === child);
|
|
});
|
|
|
|
test('should init child coponents from options', function(){
|
|
var comp = new vjs.Component(getFakePlayer(), {
|
|
children: {
|
|
'component': true
|
|
}
|
|
});
|
|
|
|
ok(comp.children().length === 1);
|
|
ok(comp.el().childNodes.length === 1);
|
|
});
|
|
|
|
test('should do a deep merge of child options', function(){
|
|
// Create a default option for component
|
|
vjs.Component.prototype.options_ = {
|
|
'example': {
|
|
'childOne': { 'foo': 'bar', 'asdf': 'fdsa' },
|
|
'childTwo': {},
|
|
'childThree': {}
|
|
}
|
|
};
|
|
|
|
var comp = new vjs.Component(getFakePlayer(), {
|
|
'example': {
|
|
'childOne': { 'foo': 'baz', 'abc': '123' },
|
|
'childThree': null,
|
|
'childFour': {}
|
|
}
|
|
});
|
|
|
|
var mergedOptions = comp.options();
|
|
var children = mergedOptions['example'];
|
|
|
|
ok(children['childOne']['foo'] === 'baz', 'value three levels deep overridden');
|
|
ok(children['childOne']['asdf'] === 'fdsa', 'value three levels deep maintained');
|
|
ok(children['childOne']['abc'] === '123', 'value three levels deep added');
|
|
ok(children['childTwo'], 'object two levels deep maintained');
|
|
ok(children['childThree'] === null, 'object two levels deep removed');
|
|
ok(children['childFour'], 'object two levels deep added');
|
|
|
|
ok(vjs.Component.prototype.options_['example']['childOne']['foo'] === 'bar', 'prototype options were not overridden');
|
|
|
|
// Reset default component options to none
|
|
vjs.Component.prototype.options_ = null;
|
|
});
|
|
|
|
test('should dispose of component and children', function(){
|
|
var comp = new vjs.Component(getFakePlayer());
|
|
|
|
// Add a child
|
|
var child = comp.addChild('Component');
|
|
ok(comp.children().length === 1);
|
|
|
|
// Add a listener
|
|
comp.on('click', function(){ return true; });
|
|
var data = vjs.getData(comp.el());
|
|
var id = comp.el()[vjs.expando];
|
|
|
|
comp.dispose();
|
|
|
|
ok(!comp.children(), 'component children were deleted');
|
|
ok(!comp.el(), 'component element was deleted');
|
|
ok(!child.children(), 'child children were deleted');
|
|
ok(!child.el(), 'child element was deleted');
|
|
ok(!vjs.cache[id], 'listener cache nulled');
|
|
ok(vjs.isEmpty(data), 'original listener cache object was emptied');
|
|
});
|
|
|
|
test('should add and remove event listeners to element', function(){
|
|
var comp = new vjs.Component(getFakePlayer(), {});
|
|
|
|
// No need to make this async because we're triggering events inline.
|
|
// We're going to trigger the event after removing the listener,
|
|
// So if we get extra asserts that's a problem.
|
|
expect(2);
|
|
|
|
var testListener = function(){
|
|
ok(true, 'fired event once');
|
|
ok(this === comp, 'listener has the component as context');
|
|
};
|
|
|
|
comp.on('test-event', testListener);
|
|
comp.trigger('test-event');
|
|
comp.off('test-event', testListener);
|
|
comp.trigger('test-event');
|
|
});
|
|
|
|
test('should trigger a listener once using one()', function(){
|
|
var comp = new vjs.Component(getFakePlayer(), {});
|
|
|
|
expect(1);
|
|
|
|
var testListener = function(){
|
|
ok(true, 'fired event once');
|
|
};
|
|
|
|
comp.one('test-event', testListener);
|
|
comp.trigger('test-event');
|
|
comp.trigger('test-event');
|
|
});
|
|
|
|
test('should trigger a listener when ready', function(){
|
|
expect(2);
|
|
|
|
var optionsReadyListener = function(){
|
|
ok(true, 'options listener fired');
|
|
};
|
|
var methodReadyListener = function(){
|
|
ok(true, 'ready method listener fired');
|
|
};
|
|
|
|
var comp = new vjs.Component(getFakePlayer(), {}, optionsReadyListener);
|
|
|
|
comp.triggerReady();
|
|
|
|
comp.ready(methodReadyListener);
|
|
|
|
// First two listeners should only be fired once and then removed
|
|
comp.triggerReady();
|
|
});
|
|
|
|
test('should add and remove a CSS class', function(){
|
|
var comp = new vjs.Component(getFakePlayer(), {});
|
|
|
|
comp.addClass('test-class');
|
|
ok(comp.el().className.indexOf('test-class') !== -1);
|
|
comp.removeClass('test-class');
|
|
ok(comp.el().className.indexOf('test-class') === -1);
|
|
});
|
|
|
|
test('should show and hide an element', function(){
|
|
var comp = new vjs.Component(getFakePlayer(), {});
|
|
|
|
comp.hide();
|
|
ok(comp.el().style.display === 'none');
|
|
comp.show();
|
|
ok(comp.el().style.display === 'block');
|
|
});
|
|
|
|
test('should change the width and height of a component', function(){
|
|
var container = document.createElement('div');
|
|
var comp = new vjs.Component(getFakePlayer(), {});
|
|
var el = comp.el();
|
|
var fixture = document.getElementById('qunit-fixture');
|
|
|
|
fixture.appendChild(container);
|
|
container.appendChild(el);
|
|
// Container of el needs dimensions or the component won't have dimensions
|
|
container.style.width = '1000px';
|
|
container.style.height = '1000px';
|
|
|
|
comp.width('50%');
|
|
comp.height('123px');
|
|
|
|
ok(comp.width() === 500, 'percent values working');
|
|
ok(vjs.getComputedStyleValue(el, 'width') === comp.width() + 'px', 'matches computed style');
|
|
ok(comp.height() === 123, 'px values working');
|
|
|
|
comp.width(321);
|
|
ok(comp.width() === 321, 'integer values working');
|
|
|
|
comp.width('auto');
|
|
comp.height('auto');
|
|
ok(comp.width() === 1000, 'forced width was removed');
|
|
ok(comp.height() === 0, 'forced height was removed');
|
|
});
|