mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
e34ec4b479
Change-Id: Ibe53292f7269736750e03da49e5bb5913c0124ab
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
module( 've.ce.Node' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.ce.NodeStub = function( model ) {
|
|
// Inheritance
|
|
ve.ce.Node.call( this, 'stub', model );
|
|
};
|
|
|
|
ve.extendClass( ve.ce.NodeStub, ve.ce.Node );
|
|
|
|
ve.ce.factory.register( 'stub', ve.ce.NodeStub );
|
|
|
|
/* Tests */
|
|
|
|
test( 'getModel', 1, function() {
|
|
var model = new ve.dm.NodeStub( 'stub', 0 ),
|
|
view = new ve.ce.NodeStub( model );
|
|
strictEqual( view.getModel(), model, 'returns reference to model given to constructor' );
|
|
} );
|
|
|
|
test( 'getParent', 1, function() {
|
|
var a = new ve.ce.NodeStub( new ve.dm.NodeStub( 'stub', 0 ) );
|
|
strictEqual( a.getParent(), null, 'returns null if not attached' );
|
|
} );
|
|
|
|
test( 'attach', 2, function() {
|
|
var a = new ve.ce.NodeStub( new ve.dm.NodeStub( 'stub', 0 ) ),
|
|
b = new ve.ce.NodeStub( new ve.dm.NodeStub( 'stub', 0 ) );
|
|
a.on( 'attach', function( parent ) {
|
|
strictEqual( parent, b, 'attach event is called with parent as first argument' );
|
|
} );
|
|
a.attach( b );
|
|
strictEqual( a.getParent(), b, 'parent is set to given object after attach' );
|
|
} );
|
|
|
|
test( 'detach', 2, function() {
|
|
var a = new ve.ce.NodeStub( new ve.dm.NodeStub( 'stub', 0 ) ),
|
|
b = new ve.ce.NodeStub( new ve.dm.NodeStub( 'stub', 0 ) );
|
|
a.attach( b );
|
|
a.on( 'detach', function( parent ) {
|
|
strictEqual( parent, b, 'detach event is called with parent as first argument' );
|
|
} );
|
|
a.detach();
|
|
strictEqual( a.getParent(), null, 'parent is set null after detach' );
|
|
} );
|