2013-02-09 01:30:00 +03:00
|
|
|
module('Plugins');
|
2013-02-04 18:55:31 +03:00
|
|
|
|
|
|
|
test('Plugin should get initialized and receive options', function(){
|
|
|
|
expect(2);
|
|
|
|
|
|
|
|
vjs.plugin('myPlugin1', function(options){
|
|
|
|
ok(true, 'Plugin initialized');
|
|
|
|
ok(options['test'], 'Option passed through');
|
|
|
|
});
|
|
|
|
|
|
|
|
vjs.plugin('myPlugin2', function(options){
|
2013-02-09 01:30:00 +03:00
|
|
|
ok(false, 'Plugin initialized and should not have been');
|
2013-02-04 18:55:31 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
var player = PlayerTest.makePlayer({
|
|
|
|
'plugins': {
|
|
|
|
'myPlugin1': {
|
|
|
|
'test': true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
player.dispose();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Plugin should have the option of being initilized outside of player init', function(){
|
2013-02-04 21:31:53 +03:00
|
|
|
expect(3);
|
2013-02-04 18:55:31 +03:00
|
|
|
|
|
|
|
vjs.plugin('myPlugin3', function(options){
|
|
|
|
ok(true, 'Plugin initialized after player init');
|
|
|
|
ok(options['test'], 'Option passed through');
|
|
|
|
});
|
|
|
|
|
|
|
|
var player = PlayerTest.makePlayer({});
|
|
|
|
|
2013-02-04 21:43:16 +03:00
|
|
|
ok(player['myPlugin3'], 'Plugin has direct access on player instance');
|
2013-02-04 18:55:31 +03:00
|
|
|
|
2013-02-04 21:43:16 +03:00
|
|
|
player['myPlugin3']({
|
2013-02-04 18:55:31 +03:00
|
|
|
'test': true
|
|
|
|
});
|
|
|
|
|
|
|
|
player.dispose();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Plugin should be able to add a UI component', function(){
|
2013-02-04 21:31:53 +03:00
|
|
|
expect(2);
|
2013-02-04 18:55:31 +03:00
|
|
|
|
|
|
|
vjs.plugin('myPlugin4', function(options){
|
2013-02-04 21:31:53 +03:00
|
|
|
ok((this instanceof vjs.Player), 'Plugin executed in player scope by default');
|
2013-02-04 18:55:31 +03:00
|
|
|
this.addChild('component');
|
|
|
|
});
|
|
|
|
|
|
|
|
var player = PlayerTest.makePlayer({});
|
2013-02-04 21:43:16 +03:00
|
|
|
player['myPlugin4']({
|
2013-02-04 18:55:31 +03:00
|
|
|
'test': true
|
|
|
|
});
|
|
|
|
|
|
|
|
var comp = player.getChild('component');
|
2013-02-04 21:31:53 +03:00
|
|
|
ok(comp, 'Plugin added a component to the player');
|
2013-02-04 18:55:31 +03:00
|
|
|
|
|
|
|
player.dispose();
|
|
|
|
});
|
|
|
|
|
2013-02-05 03:13:37 +03:00
|
|
|
test('Plugin should overwrite plugin of same name', function(){
|
2013-02-09 01:30:00 +03:00
|
|
|
var v1Called = 0,
|
|
|
|
v2Called = 0,
|
2013-02-05 03:13:37 +03:00
|
|
|
v3Called = 0;
|
|
|
|
|
|
|
|
// Create initial plugin
|
|
|
|
vjs.plugin('myPlugin5', function(options){
|
|
|
|
v1Called++;
|
|
|
|
});
|
|
|
|
var player = PlayerTest.makePlayer({});
|
|
|
|
player['myPlugin5']({});
|
|
|
|
|
|
|
|
// Overwrite and create new player
|
|
|
|
vjs.plugin('myPlugin5', function(options){
|
|
|
|
v2Called++;
|
|
|
|
});
|
|
|
|
var player2 = PlayerTest.makePlayer({});
|
|
|
|
player2['myPlugin5']({});
|
|
|
|
|
|
|
|
// Overwrite and init new version on existing player
|
|
|
|
vjs.plugin('myPlugin5', function(options){
|
|
|
|
v3Called++;
|
|
|
|
});
|
|
|
|
player2['myPlugin5']({});
|
|
|
|
|
|
|
|
var comp = player.getChild('component');
|
|
|
|
ok(v1Called === 1, 'First version of plugin called once');
|
|
|
|
ok(v2Called === 1, 'Plugin overwritten for new player');
|
|
|
|
ok(v3Called === 1, 'Plugin overwritten for existing player');
|
|
|
|
|
|
|
|
player.dispose();
|
|
|
|
player2.dispose();
|
|
|
|
});
|
|
|
|
|