當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript schema-node.model.SchemaNode類代碼示例

本文整理匯總了TypeScript中@connections/shared/schema-node.model.SchemaNode的典型用法代碼示例。如果您正苦於以下問題:TypeScript model.SchemaNode類的具體用法?TypeScript model.SchemaNode怎麽用?TypeScript model.SchemaNode使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了model.SchemaNode類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

  it("RemoveSourcesCommand 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 temp = CommandFactory.createRemoveSourcesCommand( [ node1, node2 ], "ident" );
    expect( temp instanceof RemoveSourcesCommand ).toBe( true );

    const cmd = temp as RemoveSourcesCommand;
    expect( cmd.id ).toBe( RemoveSourcesCommand.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";
    expect( cmd.getArg( RemoveSourcesCommand.removedSourcePaths ) ).toEqual( expectedSrcPaths );
    expect( cmd.toString() ).toEqual( "RemoveSourcesCommand, removedSourcePaths=" + expectedFull );
    expect( cmd.isUndoable() ).toBe( true );

    const json = cmd.toJSON();
    const tempRoundtrip = CommandFactory.decode( json );
    expect( tempRoundtrip instanceof RemoveSourcesCommand ).toBe( true );

    const roundtrip = tempRoundtrip as RemoveSourcesCommand;
    expect( roundtrip.id ).toBe( cmd.id );
    expect( roundtrip.args.size ).toBe( cmd.args.size );
    expect( roundtrip.getArg( RemoveSourcesCommand.removedSourcePaths ) ).toBe( cmd.getArg( RemoveSourcesCommand.removedSourcePaths ) );
  });
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:30,代碼來源:command-factory.spec.ts

示例2: beforeEach

  beforeEach(() => {
    fixture = TestBed.createComponent(SelectedNodeComponent);
    component = fixture.componentInstance;
    htmlElem = fixture.nativeElement;

    const node = new SchemaNode();
    node.setConnectionName(connectionName);
    node.setName(nodeName);
    component.node = node;

    fixture.detectChanges();
  });
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:12,代碼來源:selected-node.component.spec.ts

示例3: it

  it("should create, root only", () => {
    console.log("========== [SchemaNode] should create, root only");
    schemaNode = SchemaNode.create(
      {
        "name": "restaurants",
        "type": "collection",
        "path": "collection=restaurants",
        "connectionName": "conn1",
        "queryable": true,
        "children": [
        ],
      });

    expect(schemaNode.getName()).toEqual("restaurants");
    expect(schemaNode.getType()).toEqual("collection");
    expect(schemaNode.getPath()).toEqual("collection=restaurants");
    expect(schemaNode.getConnectionName()).toEqual("conn1");
    expect(schemaNode.isQueryable()).toEqual(true);
    expect(schemaNode.getMaxLevels()).toEqual(1);
  });
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:20,代碼來源:schema-node.model.spec.ts

示例4: describe

describe("SchemaNode", () => {
  let schemaNode: SchemaNode;

  beforeEach(() => {
    schemaNode = null;
  });

  it("should create, root only", () => {
    console.log("========== [SchemaNode] should create, root only");
    schemaNode = SchemaNode.create(
      {
        "name": "restaurants",
        "type": "collection",
        "path": "collection=restaurants",
        "connectionName": "conn1",
        "queryable": true,
        "children": [
        ],
      });

    expect(schemaNode.getName()).toEqual("restaurants");
    expect(schemaNode.getType()).toEqual("collection");
    expect(schemaNode.getPath()).toEqual("collection=restaurants");
    expect(schemaNode.getConnectionName()).toEqual("conn1");
    expect(schemaNode.isQueryable()).toEqual(true);
    expect(schemaNode.getMaxLevels()).toEqual(1);
  });

  it("should create, root with 2 children", () => {
    console.log("========== [SchemaNode] should create, root with 2 children");
    schemaNode = SchemaNode.create(
      {
        "name": "restaurants",
        "type": "collection",
        "path": "collection=restaurants",
        "connectionName": "conn1",
        "queryable": true,
        "children": [
          {
            "name": "grades",
            "type": "embedded",
            "path": "collection=restaurants/embedded=grades",
            "connectionName": "conn1",
            "queryable": true,
            "children": []
          },
          {
            "name": "address",
            "type": "embedded",
            "path": "collection=restaurants/embedded=address",
            "connectionName": "conn1",
            "queryable": true,
            "children": []
          },
        ],
      });

    expect(schemaNode.getName()).toEqual("restaurants");
    expect(schemaNode.getType()).toEqual("collection");
    expect(schemaNode.getPath()).toEqual("collection=restaurants");
    expect(schemaNode.getConnectionName()).toEqual("conn1");
    expect(schemaNode.isQueryable()).toEqual(true);
    expect(schemaNode.getMaxLevels()).toEqual(2);
    expect(schemaNode.getChildren().length).toEqual(2);

    expect(schemaNode.getChildren()[0].getName()).toEqual("grades");
    expect(schemaNode.getChildren()[0].getType()).toEqual("embedded");
    expect(schemaNode.getChildren()[0].getPath()).toEqual("collection=restaurants/embedded=grades");
    expect(schemaNode.getChildren()[0].getConnectionName()).toEqual("conn1");
    expect(schemaNode.getChildren()[0].isQueryable()).toEqual(true);
    expect(schemaNode.getChildren()[0].getMaxLevels()).toEqual(1);
    expect(schemaNode.getChildren()[0].getChildren().length).toEqual(0);

    expect(schemaNode.getChildren()[1].getName()).toEqual("address");
    expect(schemaNode.getChildren()[1].getType()).toEqual("embedded");
    expect(schemaNode.getChildren()[1].getPath()).toEqual("collection=restaurants/embedded=address");
    expect(schemaNode.getChildren()[1].getConnectionName()).toEqual("conn1");
    expect(schemaNode.getChildren()[1].isQueryable()).toEqual(true);
    expect(schemaNode.getChildren()[1].getMaxLevels()).toEqual(1);
    expect(schemaNode.getChildren()[1].getChildren().length).toEqual(0);
  });

  it("should create, root with 3 levels", () => {
    console.log("========== [SchemaNode] should create, root with 3 levels");
    schemaNode = SchemaNode.create(
      {
        "name": "myCatalog",
        "type": "catalog",
        "path": "catalog=myCatalog",
        "connectionName": "conn1",
        "queryable": false,
        "children": [
          {
            "name": "mySchema1",
            "type": "schema",
            "path": "catalog=myCatalog/schema=mySchema1",
            "connectionName": "conn1",
            "queryable": false,
            "children": [
              {
//.........這裏部分代碼省略.........
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:101,代碼來源:schema-node.model.spec.ts


注:本文中的@connections/shared/schema-node.model.SchemaNode類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。