当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript model.SchemaNode.getPath方法代码示例

本文整理汇总了TypeScript中@connections/shared/schema-node.model.SchemaNode.getPath方法的典型用法代码示例。如果您正苦于以下问题:TypeScript model.SchemaNode.getPath方法的具体用法?TypeScript model.SchemaNode.getPath怎么用?TypeScript model.SchemaNode.getPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@connections/shared/schema-node.model.SchemaNode的用法示例。


在下文中一共展示了model.SchemaNode.getPath方法的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.getPath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。