本文整理匯總了TypeScript中@dataservices/virtualization/view-editor/command/command-factory.CommandFactory.createAddSourcesCommand方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript CommandFactory.createAddSourcesCommand方法的具體用法?TypeScript CommandFactory.createAddSourcesCommand怎麽用?TypeScript CommandFactory.createAddSourcesCommand使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@dataservices/virtualization/view-editor/command/command-factory.CommandFactory
的用法示例。
在下文中一共展示了CommandFactory.createAddSourcesCommand方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it("AddSourcesCommand Test", () => {
const conn1 = "conn1";
const conn2 = "conn2";
const path1 = "table=node1";
const path2 = "table=node2";
const node1 = SchemaNode.create( { connectionName: conn1, path: path1 } );
const node2 = SchemaNode.create( { connectionName: conn2, path: path2 } );
const tempCmd = CommandFactory.createAddSourcesCommand( [ node1, node2 ], "ident" );
expect( tempCmd instanceof AddSourcesCommand ).toBe( true );
const cmd = tempCmd as AddSourcesCommand;
expect( cmd.id ).toBe( AddSourcesCommand.id );
expect( cmd.args ).not.toBeNull();
expect( cmd.args.size ).toBe( 2 );
const expectedSrcPaths = "connection=" + conn1 + "/" + path1 + ", connection=" + conn2 + "/" + path2;
const expectedFull = expectedSrcPaths + ", ObjectId=ident";
const actual = cmd.getArg( AddSourcesCommand.addedSourcePaths );
expect( cmd.getArg( AddSourcesCommand.addedSourcePaths ) ).toEqual( expectedSrcPaths );
expect( cmd.toString() ).toBe( "AddSourcesCommand, addedSourcePaths=" + expectedFull );
expect( cmd.isUndoable() ).toBe( true );
const json = cmd.toJSON();
const tempRoundtrip = CommandFactory.decode( json );
expect( tempRoundtrip instanceof AddSourcesCommand ).toBe( true );
const roundtrip = tempRoundtrip as AddSourcesCommand;
expect( roundtrip.id ).toBe( cmd.id );
expect( roundtrip.args.size ).toBe( cmd.args.size );
expect( roundtrip.getArg( AddSourcesCommand.addedSourcePaths ) ).toBe( cmd.getArg( AddSourcesCommand.addedSourcePaths ) );
});