mediawiki-extensions-Visual.../modules/ve/test/ce/ve.ce.Node.test.js
Ed Sanders edcaaf9edc Use static.name once for ce and dm nodes
Add a static.name property to ce nodes and make sure both ce
and dm nodes always use the static.name property in constructors
and registration calls.

The result of this is that any given node type should now only
appear once in the code as a string.

Bug: 45701
Change-Id: Ibf31de16ab28ad58209c1443cd74f93dda278998
2013-03-07 17:19:39 -08:00

56 lines
1.7 KiB
JavaScript

/*!
* VisualEditor ContentEditable Node tests.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
QUnit.module( 've.ce.Node' );
/* Stubs */
ve.ce.NodeStub = function VeCeNodeStub( model ) {
// Parent constructor
ve.ce.Node.call( this, model );
};
ve.inheritClass( ve.ce.NodeStub, ve.ce.Node );
ve.ce.NodeStub.static.name = 'stub';
ve.ce.nodeFactory.register( ve.ce.NodeStub );
/* Tests */
QUnit.test( 'getModel', 1, function ( assert ) {
var model = new ve.dm.NodeStub( 'stub', 0 ),
view = new ve.ce.NodeStub( model );
assert.strictEqual( view.getModel(), model, 'returns reference to model given to constructor' );
} );
QUnit.test( 'getParent', 1, function ( assert ) {
var a = new ve.ce.NodeStub( new ve.dm.NodeStub( 'stub', 0 ) );
assert.strictEqual( a.getParent(), null, 'returns null if not attached' );
} );
QUnit.test( 'attach', 2, function ( assert ) {
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 ) {
assert.strictEqual( parent, b, 'attach event is called with parent as first argument' );
} );
a.attach( b );
assert.strictEqual( a.getParent(), b, 'parent is set to given object after attach' );
} );
QUnit.test( 'detach', 2, function ( assert ) {
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 ) {
assert.strictEqual( parent, b, 'detach event is called with parent as first argument' );
} );
a.detach();
assert.strictEqual( a.getParent(), null, 'parent is set null after detach' );
} );