mediawiki-extensions-Visual.../modules/ve/test/dm/ve.dm.LeafNode.test.js
James D. Forrester 82114467f1 Bump copyright notice year range to -2013 over -2012
199 files touched. Whee!

Change-Id: Id82ce4a32f833406db4a1cc585674f2bdb39ba0d
2013-02-19 15:37:34 -08:00

47 lines
1.4 KiB
JavaScript

/*!
* VisualEditor DataModel LeafNode tests.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
QUnit.module( 've.dm.LeafNode' );
/* Stubs */
ve.dm.LeafNodeStub = function VeDmLeafNodeStub( length, element ) {
// Parent constructor
ve.dm.LeafNode.call( this, 'leaf-stub', length, element );
};
ve.inheritClass( ve.dm.LeafNodeStub, ve.dm.LeafNode );
ve.dm.LeafNodeStub.static.name = 'leaf-stub';
ve.dm.LeafNodeStub.static.matchTagNames = [];
ve.dm.nodeFactory.register( 'leaf-stub', ve.dm.LeafNodeStub );
/* Tests */
QUnit.test( 'canHaveChildren', 1, function ( assert ) {
var node = new ve.dm.LeafNodeStub();
assert.equal( node.canHaveChildren(), false );
} );
QUnit.test( 'canHaveGrandchildren', 1, function ( assert ) {
var node = new ve.dm.LeafNodeStub();
assert.equal( node.canHaveGrandchildren(), false );
} );
QUnit.test( 'getAnnotations', 3, function ( assert ) {
var element = { 'type': 'leaf-stub' },
node = new ve.dm.LeafNodeStub( 0, element ),
annotationSet = new ve.AnnotationSet( [ new ve.dm.TextStyleBoldAnnotation() ] );
assert.deepEqual( node.getAnnotations(), new ve.AnnotationSet(),
'undefined .annotations returns empty set' );
assert.equal( element.annotations, undefined, 'no .annotations property added' );
element.annotations = annotationSet;
assert.ok( node.getAnnotations() === annotationSet, 'annotation set is reference equal' );
} );