mediawiki-extensions-Visual.../modules/ve/test/dm/ve.dm.LeafNode.test.js
Ed Sanders d22c7f7773 Correct name of can(Node)HaveGrandchildren functions
Bug: 43893
Change-Id: I9fd2a1fd6e3ee0a7bdfc357b5d4e4e0fd3efa0a5
2013-03-13 23:25:33 +00: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, 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( ve.dm.LeafNodeStub );
/* Tests */
QUnit.test( 'canHaveChildren', 1, function ( assert ) {
var node = new ve.dm.LeafNodeStub();
assert.equal( node.canHaveChildren(), false );
} );
QUnit.test( 'canHaveChildrenNotContent', 1, function ( assert ) {
var node = new ve.dm.LeafNodeStub();
assert.equal( node.canHaveChildrenNotContent(), 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' );
} );