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


TypeScript model.SchemaNode.getConnectionName方法代碼示例

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


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

示例1: it

  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);
  });
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:53,代碼來源:schema-node.model.spec.ts


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