mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
fdf30b1ac8
Created an IndexValueStore class which can store any object and return an integer index to its hash map. Linear data is now stored in ve.dm.LinearData instances. Two subclasses for element and meta data contain methods specific to those data types (ElementLinearData and MetaLinearData). The static methods in ve.dm.Document that inspected data at a given offset are now instance methods of ve.dm.ElementLinearData. AnnotationSets (which are no longer OrderedHashSets) have been moved to /dm and also have to be instantiated with a pointer the store. Bug: 46320 Change-Id: I249a5d48726093d1cb3e36351893f4bff85f52e2
45 lines
1.3 KiB
JavaScript
45 lines
1.3 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 );
|
|
assert.deepEqual( node.getAnnotations(), [], 'undefined .annotations returns empty set' );
|
|
assert.equal( element.annotations, undefined, 'no .annotations property added' );
|
|
element.annotations = [0];
|
|
assert.deepEqual( node.getAnnotations(), [0] , 'annotations retrieve indexes when set' );
|
|
} );
|