mediawiki-extensions-Visual.../modules/ve/test/dm/ve.dm.AnnotationSet.test.js
Ed Sanders fdf30b1ac8 Store data in LinearData class with an index-value store for objects
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
2013-03-30 10:06:34 +00:00

67 lines
3.8 KiB
JavaScript

/*!
* VisualEditor AnnotationSet tests.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
QUnit.module( 've.dm.AnnotationSet' );
/* Tests */
QUnit.test( 'Basic usage', 27, function ( assert ) {
var annotationSet3,
store = new ve.dm.IndexValueStore(),
bold = new ve.dm.TextStyleBoldAnnotation(),
italic = new ve.dm.TextStyleItalicAnnotation(),
underline = new ve.dm.TextStyleUnderlineAnnotation(),
annotationSet = new ve.dm.AnnotationSet( store, [ bold, italic ] ),
annotationSet2 = new ve.dm.AnnotationSet( store, [ italic, underline ] ),
emptySet = new ve.dm.AnnotationSet( store );
assert.equal( annotationSet.getLength(), 2, 'getLength is 2' );
assert.equal( annotationSet.isEmpty(), false, 'isEmpty is false' );
assert.deepEqual( annotationSet.get( 0 ), bold, 'get(0) is bold' );
assert.equal( annotationSet.contains( italic ), true, 'contains italic' );
assert.equal( annotationSet.contains( underline ), false, 'doesn\'t contain underline' );
assert.equal( annotationSet.containsAnyOf( annotationSet2 ), true, 'containsAnyOf set2 is true' );
assert.equal( annotationSet.containsAnyOf( emptySet ), false, 'containsAnyOf empty set is false' );
assert.equal( annotationSet.containsAllOf( annotationSet2 ), false, 'containsAllOf set2 set is false' );
assert.equal( annotationSet.containsAllOf( annotationSet ), true, 'containsAllOf self is true' );
assert.equal( annotationSet.indexOf( italic ), 1, 'indexOf italic is 1' );
assert.equal( annotationSet.indexOf( underline ), -1, 'indexOf underline is -1' );
assert.equal( annotationSet.hasAnnotationWithName( 'textStyle/bold' ), true, 'hasAnnotationWithName textStyle/bold is true' );
assert.equal( annotationSet.hasAnnotationWithName( 'textStyle/underline' ), false, 'hasAnnotationWithName underline is false' );
annotationSet2.add( bold, 1 );
assert.equal( annotationSet2.indexOf( bold ), 1, 'set2 contains bold at 1 after add at 1' );
annotationSet2.remove( bold );
assert.equal( annotationSet2.contains( bold ), false, 'set2 doesn\'t contain bold after remove' );
annotationSet2.add( bold, 0 );
assert.equal( annotationSet2.indexOf( bold ), 0, 'set2 contains bold at 0 after add at 0' );
// set is now [ bold, italic, underline ]
annotationSet2.removeAt( 2 );
assert.equal( annotationSet2.contains( underline ), false, 'set2 doesn\'t contain underline after removeAt 2' );
annotationSet2.removeAll();
assert.equal( annotationSet2.isEmpty(), true, 'set2 is empty after removeAll' );
annotationSet2.addSet( annotationSet );
assert.equal( annotationSet.getLength(), 2, 'set2 has length 2 after addSet' );
annotationSet2.removeSet( annotationSet );
assert.equal( annotationSet2.isEmpty(), true, 'set2 is empty after removeSet' );
annotationSet2 = new ve.dm.AnnotationSet( store, [ italic, underline ] );
annotationSet2.removeNotInSet( annotationSet );
assert.equal( annotationSet.contains( italic ) && !annotationSet.contains( underline ), true, 'contains italic not underline after removeNotInSet' );
annotationSet2.add( underline, 1 );
annotationSet3 = annotationSet2.reversed();
assert.equal( annotationSet3.indexOf( underline ), 0, 'underline has indexOf 0 after reverse');
annotationSet3 = annotationSet.mergeWith( annotationSet2 );
assert.equal( annotationSet3.getLength(), 3, 'set merged with set2 has length 3');
annotationSet3 = annotationSet.diffWith( annotationSet2 );
assert.equal( annotationSet3.getLength(), 1, 'set diffed with set2 has length 1');
assert.equal( annotationSet3.contains( bold ), true, 'set diffed with set2 contains bold');
annotationSet3 = annotationSet.intersectWith( annotationSet2 );
assert.equal( annotationSet3.getLength(), 1, 'set intersected with set2 has length 1');
assert.equal( annotationSet3.contains( italic ), true, 'set intersected with set2 contains italic');
} );