mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
a667425874
This is generally useful information, not only for dm Change-Id: I9511467285e9594b4a7aa659bf65bb0417da25a1
74 lines
1.9 KiB
JavaScript
74 lines
1.9 KiB
JavaScript
module( 've.NodeFactory' );
|
|
|
|
/* Stubs */
|
|
|
|
ve.NodeFactoryNodeStub = function( a, b ) {
|
|
this.a = a;
|
|
this.b = b;
|
|
};
|
|
|
|
ve.NodeFactoryNodeStub.rules = {
|
|
'canHaveChildren': false,
|
|
'canHaveGrandchildren': false
|
|
};
|
|
|
|
/* Tests */
|
|
|
|
test( 'register', 1, function() {
|
|
var factory = new ve.NodeFactory();
|
|
raises( function() {
|
|
factory.register( 'stub', 'not-a-function' );
|
|
},
|
|
/^Constructor must be a function, cannot be a string$/,
|
|
'throws an exception when trying to register a non-function value as a constructor'
|
|
);
|
|
} );
|
|
|
|
test( 'create', 2, function() {
|
|
var factory = new ve.NodeFactory();
|
|
raises( function() {
|
|
factory.createNode( 'stub', 23, { 'bar': 'baz' } );
|
|
},
|
|
/^Unknown node type: stub$/,
|
|
'throws an exception when trying to create a node of an unregistered type'
|
|
);
|
|
factory.register( 'stub', ve.NodeFactoryNodeStub );
|
|
deepEqual(
|
|
factory.createNode( 'stub', 16, { 'baz': 'quux' } ),
|
|
new ve.NodeFactoryNodeStub( 16, { 'baz': 'quux' } ),
|
|
'creates nodes of a registered type and passes through arguments'
|
|
);
|
|
} );
|
|
|
|
test( 'canNodeHaveChildren', 2, function() {
|
|
var factory = new ve.NodeFactory();
|
|
raises( function() {
|
|
factory.createNode( 'stub', 23, { 'bar': 'baz' } );
|
|
},
|
|
/^Unknown node type: stub$/,
|
|
'throws an exception when checking if a node of an unregistered type can have children'
|
|
);
|
|
factory.register( 'stub', ve.NodeFactoryNodeStub );
|
|
equal(
|
|
factory.canNodeHaveChildren( 'stub' ),
|
|
false,
|
|
'gets child rules for registered nodes'
|
|
);
|
|
} );
|
|
|
|
test( 'canNodeHaveGrandchildren', 2, function() {
|
|
var factory = new ve.NodeFactory();
|
|
raises( function() {
|
|
factory.createNode( 'stub', 23, { 'bar': 'baz' } );
|
|
},
|
|
/^Unknown node type: stub$/,
|
|
'throws an exception when checking if a node of an unregistered type can have grandchildren'
|
|
);
|
|
factory.register( 'stub', ve.NodeFactoryNodeStub );
|
|
equal(
|
|
factory.canNodeHaveGrandchildren( 'stub' ),
|
|
false,
|
|
'gets grandchild rules for registered nodes'
|
|
);
|
|
} );
|