mediawiki-extensions-Visual.../tests/ve2/ve.NodeFactory.test.js
Trevor Parscal dc27d8acb4 Refactored dom wrapper functionality in ce nodes
* Moved implementation of getting and updating a DOM wrapper to ve.ce.BranchNode
* Updated ve.ce.BranchNode tests
* Renamed ve.NodeFactory.createNode to ve.NodeFactory.create
* Added  ve.NodeFactory.lookup which gets the constructor of a type
* Added attribute pass-through to ve.dm.BranchNodeStub

Change-Id: I8f5b7d3d3ae616cc5f39828b24b655163d782ae5
2012-05-04 13:31:14 -07:00

80 lines
2.1 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.create( '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.create( 'stub', 16, { 'baz': 'quux' } ),
new ve.NodeFactoryNodeStub( 16, { 'baz': 'quux' } ),
'creates nodes of a registered type and passes through arguments'
);
} );
test( 'lookup', 1, function() {
var factory = new ve.NodeFactory();
factory.register( 'stub', ve.NodeFactoryNodeStub );
strictEqual( factory.lookup( 'stub' ), ve.NodeFactoryNodeStub );
} );
test( 'canNodeHaveChildren', 2, function() {
var factory = new ve.NodeFactory();
raises( function() {
factory.create( '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 );
strictEqual(
factory.canNodeHaveChildren( 'stub' ),
false,
'gets child rules for registered nodes'
);
} );
test( 'canNodeHaveGrandchildren', 2, function() {
var factory = new ve.NodeFactory();
raises( function() {
factory.create( '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 );
strictEqual(
factory.canNodeHaveGrandchildren( 'stub' ),
false,
'gets grandchild rules for registered nodes'
);
} );