@itwin/reports-config-widget-react 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_rebuild.json +48 -0
- package/.rush/temp/shrinkwrap-deps.json +868 -0
- package/CHANGELOG.json +17 -0
- package/CHANGELOG.md +11 -0
- package/LICENSE.md +9 -0
- package/README.md +38 -0
- package/__mocks__/fileMock.js +5 -0
- package/coverage/clover.xml +612 -0
- package/coverage/coverage-final.json +19 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +191 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov-report/src/ReportsConfigWidget.ts.html +193 -0
- package/coverage/lcov-report/src/index.html +116 -0
- package/coverage/lcov-report/src/test/index.html +116 -0
- package/coverage/lcov-report/src/test/test-utils.tsx.html +316 -0
- package/coverage/lcov-report/src/widget/ReportsConfigUiProvider.tsx.html +286 -0
- package/coverage/lcov-report/src/widget/components/ActionPanel.tsx.html +253 -0
- package/coverage/lcov-report/src/widget/components/AddMappingsModal.tsx.html +610 -0
- package/coverage/lcov-report/src/widget/components/DeleteModal.tsx.html +385 -0
- package/coverage/lcov-report/src/widget/components/Extraction.tsx.html +1030 -0
- package/coverage/lcov-report/src/widget/components/HorizontalTile.tsx.html +256 -0
- package/coverage/lcov-report/src/widget/components/LocalizedTablePaginator.tsx.html +262 -0
- package/coverage/lcov-report/src/widget/components/ReportAction.tsx.html +523 -0
- package/coverage/lcov-report/src/widget/components/ReportMappings.tsx.html +1135 -0
- package/coverage/lcov-report/src/widget/components/Reports.tsx.html +829 -0
- package/coverage/lcov-report/src/widget/components/ReportsContainer.tsx.html +193 -0
- package/coverage/lcov-report/src/widget/components/SearchBar.tsx.html +271 -0
- package/coverage/lcov-report/src/widget/components/SelectIModel.tsx.html +391 -0
- package/coverage/lcov-report/src/widget/components/index.html +296 -0
- package/coverage/lcov-report/src/widget/components/utils.tsx.html +562 -0
- package/coverage/lcov-report/src/widget/context/ReportsApiConfigContext.tsx.html +166 -0
- package/coverage/lcov-report/src/widget/context/index.html +116 -0
- package/coverage/lcov-report/src/widget/hooks/index.html +116 -0
- package/coverage/lcov-report/src/widget/hooks/useValidator.ts.html +295 -0
- package/coverage/lcov-report/src/widget/index.html +116 -0
- package/coverage/lcov.info +1260 -0
- package/jest.config.js +19 -0
- package/lib/cjs/ReportsConfigWidget.d.ts +10 -0
- package/lib/cjs/ReportsConfigWidget.d.ts.map +1 -0
- package/lib/cjs/ReportsConfigWidget.js +24 -0
- package/lib/cjs/ReportsConfigWidget.js.map +1 -0
- package/lib/cjs/reports-config-widget-react.d.ts +4 -0
- package/lib/cjs/reports-config-widget-react.d.ts.map +1 -0
- package/lib/cjs/reports-config-widget-react.js +20 -0
- package/lib/cjs/reports-config-widget-react.js.map +1 -0
- package/lib/cjs/test/ReportAction.test.d.ts +2 -0
- package/lib/cjs/test/ReportAction.test.d.ts.map +1 -0
- package/lib/cjs/test/ReportAction.test.js +194 -0
- package/lib/cjs/test/ReportAction.test.js.map +1 -0
- package/lib/cjs/test/ReportMappings.test.d.ts +2 -0
- package/lib/cjs/test/ReportMappings.test.d.ts.map +1 -0
- package/lib/cjs/test/ReportMappings.test.js +530 -0
- package/lib/cjs/test/ReportMappings.test.js.map +1 -0
- package/lib/cjs/test/Reports.test.d.ts +2 -0
- package/lib/cjs/test/Reports.test.d.ts.map +1 -0
- package/lib/cjs/test/Reports.test.js +232 -0
- package/lib/cjs/test/Reports.test.js.map +1 -0
- package/lib/cjs/test/WidgetHeader.test.d.ts +2 -0
- package/lib/cjs/test/WidgetHeader.test.d.ts.map +1 -0
- package/lib/cjs/test/WidgetHeader.test.js +30 -0
- package/lib/cjs/test/WidgetHeader.test.js.map +1 -0
- package/lib/cjs/test/test-utils.d.ts +69 -0
- package/lib/cjs/test/test-utils.d.ts.map +1 -0
- package/lib/cjs/test/test-utils.js +77 -0
- package/lib/cjs/test/test-utils.js.map +1 -0
- package/lib/cjs/tsconfig.tsbuildinfo +1 -0
- package/lib/cjs/widget/ReportsConfigUiProvider.d.ts +12 -0
- package/lib/cjs/widget/ReportsConfigUiProvider.d.ts.map +1 -0
- package/lib/cjs/widget/ReportsConfigUiProvider.js +55 -0
- package/lib/cjs/widget/ReportsConfigUiProvider.js.map +1 -0
- package/lib/cjs/widget/components/ActionPanel.d.ts +13 -0
- package/lib/cjs/widget/components/ActionPanel.d.ts.map +1 -0
- package/lib/cjs/widget/components/ActionPanel.js +39 -0
- package/lib/cjs/widget/components/ActionPanel.js.map +1 -0
- package/lib/cjs/widget/components/ActionPanel.scss +12 -0
- package/lib/cjs/widget/components/AddMappingsModal.d.ts +15 -0
- package/lib/cjs/widget/components/AddMappingsModal.d.ts.map +1 -0
- package/lib/cjs/widget/components/AddMappingsModal.js +118 -0
- package/lib/cjs/widget/components/AddMappingsModal.js.map +1 -0
- package/lib/cjs/widget/components/AddMappingsModal.scss +18 -0
- package/lib/cjs/widget/components/DeleteModal.d.ts +12 -0
- package/lib/cjs/widget/components/DeleteModal.d.ts.map +1 -0
- package/lib/cjs/widget/components/DeleteModal.js +65 -0
- package/lib/cjs/widget/components/DeleteModal.js.map +1 -0
- package/lib/cjs/widget/components/DeleteModal.scss +18 -0
- package/lib/cjs/widget/components/Extraction.d.ts +28 -0
- package/lib/cjs/widget/components/Extraction.d.ts.map +1 -0
- package/lib/cjs/widget/components/Extraction.js +193 -0
- package/lib/cjs/widget/components/Extraction.js.map +1 -0
- package/lib/cjs/widget/components/Extraction.scss +39 -0
- package/lib/cjs/widget/components/HorizontalTile.d.ts +13 -0
- package/lib/cjs/widget/components/HorizontalTile.d.ts.map +1 -0
- package/lib/cjs/widget/components/HorizontalTile.js +18 -0
- package/lib/cjs/widget/components/HorizontalTile.js.map +1 -0
- package/lib/cjs/widget/components/HorizontalTile.scss +32 -0
- package/lib/cjs/widget/components/LocalizedTablePaginator.d.ts +4 -0
- package/lib/cjs/widget/components/LocalizedTablePaginator.d.ts.map +1 -0
- package/lib/cjs/widget/components/LocalizedTablePaginator.js +41 -0
- package/lib/cjs/widget/components/LocalizedTablePaginator.js.map +1 -0
- package/lib/cjs/widget/components/ReportAction.d.ts +11 -0
- package/lib/cjs/widget/components/ReportAction.d.ts.map +1 -0
- package/lib/cjs/widget/components/ReportAction.js +101 -0
- package/lib/cjs/widget/components/ReportAction.js.map +1 -0
- package/lib/cjs/widget/components/ReportAction.scss +16 -0
- package/lib/cjs/widget/components/ReportMappings.d.ts +17 -0
- package/lib/cjs/widget/components/ReportMappings.d.ts.map +1 -0
- package/lib/cjs/widget/components/ReportMappings.js +174 -0
- package/lib/cjs/widget/components/ReportMappings.js.map +1 -0
- package/lib/cjs/widget/components/ReportMappings.scss +46 -0
- package/lib/cjs/widget/components/Reports.d.ts +7 -0
- package/lib/cjs/widget/components/Reports.d.ts.map +1 -0
- package/lib/cjs/widget/components/Reports.js +143 -0
- package/lib/cjs/widget/components/Reports.js.map +1 -0
- package/lib/cjs/widget/components/Reports.scss +36 -0
- package/lib/cjs/widget/components/ReportsContainer.d.ts +10 -0
- package/lib/cjs/widget/components/ReportsContainer.d.ts.map +1 -0
- package/lib/cjs/widget/components/ReportsContainer.js +34 -0
- package/lib/cjs/widget/components/ReportsContainer.js.map +1 -0
- package/lib/cjs/widget/components/ReportsContainer.scss +15 -0
- package/lib/cjs/widget/components/SearchBar.d.ts +10 -0
- package/lib/cjs/widget/components/SearchBar.d.ts.map +1 -0
- package/lib/cjs/widget/components/SearchBar.js +50 -0
- package/lib/cjs/widget/components/SearchBar.js.map +1 -0
- package/lib/cjs/widget/components/SearchBar.scss +27 -0
- package/lib/cjs/widget/components/SelectIModel.d.ts +9 -0
- package/lib/cjs/widget/components/SelectIModel.d.ts.map +1 -0
- package/lib/cjs/widget/components/SelectIModel.js +82 -0
- package/lib/cjs/widget/components/SelectIModel.js.map +1 -0
- package/lib/cjs/widget/components/SelectIModel.scss +15 -0
- package/lib/cjs/widget/components/utils.d.ts +23 -0
- package/lib/cjs/widget/components/utils.d.ts.map +1 -0
- package/lib/cjs/widget/components/utils.js +87 -0
- package/lib/cjs/widget/components/utils.js.map +1 -0
- package/lib/cjs/widget/components/utils.scss +39 -0
- package/lib/cjs/widget/context/ReportsApiConfigContext.d.ts +9 -0
- package/lib/cjs/widget/context/ReportsApiConfigContext.d.ts.map +1 -0
- package/lib/cjs/widget/context/ReportsApiConfigContext.js +37 -0
- package/lib/cjs/widget/context/ReportsApiConfigContext.js.map +1 -0
- package/lib/cjs/widget/hooks/useValidator.d.ts +8 -0
- package/lib/cjs/widget/hooks/useValidator.d.ts.map +1 -0
- package/lib/cjs/widget/hooks/useValidator.js +56 -0
- package/lib/cjs/widget/hooks/useValidator.js.map +1 -0
- package/lib/esm/ReportsConfigWidget.d.ts +10 -0
- package/lib/esm/ReportsConfigWidget.d.ts.map +1 -0
- package/lib/esm/ReportsConfigWidget.js +20 -0
- package/lib/esm/ReportsConfigWidget.js.map +1 -0
- package/lib/esm/reports-config-widget-react.d.ts +4 -0
- package/lib/esm/reports-config-widget-react.d.ts.map +1 -0
- package/lib/esm/reports-config-widget-react.js +8 -0
- package/lib/esm/reports-config-widget-react.js.map +1 -0
- package/lib/esm/test/ReportAction.test.d.ts +2 -0
- package/lib/esm/test/ReportAction.test.d.ts.map +1 -0
- package/lib/esm/test/ReportAction.test.js +170 -0
- package/lib/esm/test/ReportAction.test.js.map +1 -0
- package/lib/esm/test/ReportMappings.test.d.ts +2 -0
- package/lib/esm/test/ReportMappings.test.d.ts.map +1 -0
- package/lib/esm/test/ReportMappings.test.js +506 -0
- package/lib/esm/test/ReportMappings.test.js.map +1 -0
- package/lib/esm/test/Reports.test.d.ts +2 -0
- package/lib/esm/test/Reports.test.d.ts.map +1 -0
- package/lib/esm/test/Reports.test.js +208 -0
- package/lib/esm/test/Reports.test.js.map +1 -0
- package/lib/esm/test/WidgetHeader.test.d.ts +2 -0
- package/lib/esm/test/WidgetHeader.test.d.ts.map +1 -0
- package/lib/esm/test/WidgetHeader.test.js +25 -0
- package/lib/esm/test/WidgetHeader.test.js.map +1 -0
- package/lib/esm/test/test-utils.d.ts +69 -0
- package/lib/esm/test/test-utils.d.ts.map +1 -0
- package/lib/esm/test/test-utils.js +48 -0
- package/lib/esm/test/test-utils.js.map +1 -0
- package/lib/esm/tsconfig.tsbuildinfo +1 -0
- package/lib/esm/widget/ReportsConfigUiProvider.d.ts +12 -0
- package/lib/esm/widget/ReportsConfigUiProvider.d.ts.map +1 -0
- package/lib/esm/widget/ReportsConfigUiProvider.js +29 -0
- package/lib/esm/widget/ReportsConfigUiProvider.js.map +1 -0
- package/lib/esm/widget/components/ActionPanel.d.ts +13 -0
- package/lib/esm/widget/components/ActionPanel.d.ts.map +1 -0
- package/lib/esm/widget/components/ActionPanel.js +18 -0
- package/lib/esm/widget/components/ActionPanel.js.map +1 -0
- package/lib/esm/widget/components/ActionPanel.scss +12 -0
- package/lib/esm/widget/components/AddMappingsModal.d.ts +15 -0
- package/lib/esm/widget/components/AddMappingsModal.d.ts.map +1 -0
- package/lib/esm/widget/components/AddMappingsModal.js +94 -0
- package/lib/esm/widget/components/AddMappingsModal.js.map +1 -0
- package/lib/esm/widget/components/AddMappingsModal.scss +18 -0
- package/lib/esm/widget/components/DeleteModal.d.ts +12 -0
- package/lib/esm/widget/components/DeleteModal.d.ts.map +1 -0
- package/lib/esm/widget/components/DeleteModal.js +42 -0
- package/lib/esm/widget/components/DeleteModal.js.map +1 -0
- package/lib/esm/widget/components/DeleteModal.scss +18 -0
- package/lib/esm/widget/components/Extraction.d.ts +28 -0
- package/lib/esm/widget/components/Extraction.d.ts.map +1 -0
- package/lib/esm/widget/components/Extraction.js +169 -0
- package/lib/esm/widget/components/Extraction.js.map +1 -0
- package/lib/esm/widget/components/Extraction.scss +39 -0
- package/lib/esm/widget/components/HorizontalTile.d.ts +13 -0
- package/lib/esm/widget/components/HorizontalTile.d.ts.map +1 -0
- package/lib/esm/widget/components/HorizontalTile.js +11 -0
- package/lib/esm/widget/components/HorizontalTile.js.map +1 -0
- package/lib/esm/widget/components/HorizontalTile.scss +32 -0
- package/lib/esm/widget/components/LocalizedTablePaginator.d.ts +4 -0
- package/lib/esm/widget/components/LocalizedTablePaginator.d.ts.map +1 -0
- package/lib/esm/widget/components/LocalizedTablePaginator.js +18 -0
- package/lib/esm/widget/components/LocalizedTablePaginator.js.map +1 -0
- package/lib/esm/widget/components/ReportAction.d.ts +11 -0
- package/lib/esm/widget/components/ReportAction.d.ts.map +1 -0
- package/lib/esm/widget/components/ReportAction.js +77 -0
- package/lib/esm/widget/components/ReportAction.js.map +1 -0
- package/lib/esm/widget/components/ReportAction.scss +16 -0
- package/lib/esm/widget/components/ReportMappings.d.ts +17 -0
- package/lib/esm/widget/components/ReportMappings.d.ts.map +1 -0
- package/lib/esm/widget/components/ReportMappings.js +148 -0
- package/lib/esm/widget/components/ReportMappings.js.map +1 -0
- package/lib/esm/widget/components/ReportMappings.scss +46 -0
- package/lib/esm/widget/components/Reports.d.ts +7 -0
- package/lib/esm/widget/components/Reports.d.ts.map +1 -0
- package/lib/esm/widget/components/Reports.js +117 -0
- package/lib/esm/widget/components/Reports.js.map +1 -0
- package/lib/esm/widget/components/Reports.scss +36 -0
- package/lib/esm/widget/components/ReportsContainer.d.ts +10 -0
- package/lib/esm/widget/components/ReportsContainer.d.ts.map +1 -0
- package/lib/esm/widget/components/ReportsContainer.js +13 -0
- package/lib/esm/widget/components/ReportsContainer.js.map +1 -0
- package/lib/esm/widget/components/ReportsContainer.scss +15 -0
- package/lib/esm/widget/components/SearchBar.d.ts +10 -0
- package/lib/esm/widget/components/SearchBar.d.ts.map +1 -0
- package/lib/esm/widget/components/SearchBar.js +27 -0
- package/lib/esm/widget/components/SearchBar.js.map +1 -0
- package/lib/esm/widget/components/SearchBar.scss +27 -0
- package/lib/esm/widget/components/SelectIModel.d.ts +9 -0
- package/lib/esm/widget/components/SelectIModel.d.ts.map +1 -0
- package/lib/esm/widget/components/SelectIModel.js +59 -0
- package/lib/esm/widget/components/SelectIModel.js.map +1 -0
- package/lib/esm/widget/components/SelectIModel.scss +15 -0
- package/lib/esm/widget/components/utils.d.ts +23 -0
- package/lib/esm/widget/components/utils.d.ts.map +1 -0
- package/lib/esm/widget/components/utils.js +73 -0
- package/lib/esm/widget/components/utils.js.map +1 -0
- package/lib/esm/widget/components/utils.scss +39 -0
- package/lib/esm/widget/context/ReportsApiConfigContext.d.ts +9 -0
- package/lib/esm/widget/context/ReportsApiConfigContext.d.ts.map +1 -0
- package/lib/esm/widget/context/ReportsApiConfigContext.js +14 -0
- package/lib/esm/widget/context/ReportsApiConfigContext.js.map +1 -0
- package/lib/esm/widget/hooks/useValidator.d.ts +8 -0
- package/lib/esm/widget/hooks/useValidator.d.ts.map +1 -0
- package/lib/esm/widget/hooks/useValidator.js +50 -0
- package/lib/esm/widget/hooks/useValidator.js.map +1 -0
- package/lib/public/locales/en/ReportsConfigWidget.json +76 -0
- package/package.json +124 -0
- package/public/locales/en/ReportsConfigWidget.json +76 -0
- package/reports-config-widget-react.build.error.log +10 -0
- package/reports-config-widget-react.build.log +45 -0
- package/src/ReportsConfigWidget.ts +36 -0
- package/src/reports-config-widget-react.ts +7 -0
- package/src/test/ReportAction.test.tsx +258 -0
- package/src/test/ReportMappings.test.tsx +882 -0
- package/src/test/Reports.test.tsx +365 -0
- package/src/test/WidgetHeader.test.tsx +29 -0
- package/src/test/test-utils.tsx +77 -0
- package/src/widget/ReportsConfigUiProvider.tsx +67 -0
- package/src/widget/components/ActionPanel.scss +12 -0
- package/src/widget/components/ActionPanel.tsx +56 -0
- package/src/widget/components/AddMappingsModal.scss +18 -0
- package/src/widget/components/AddMappingsModal.tsx +175 -0
- package/src/widget/components/DeleteModal.scss +18 -0
- package/src/widget/components/DeleteModal.tsx +100 -0
- package/src/widget/components/Extraction.scss +39 -0
- package/src/widget/components/Extraction.tsx +315 -0
- package/src/widget/components/HorizontalTile.scss +32 -0
- package/src/widget/components/HorizontalTile.tsx +57 -0
- package/src/widget/components/LocalizedTablePaginator.tsx +59 -0
- package/src/widget/components/ReportAction.scss +16 -0
- package/src/widget/components/ReportAction.tsx +146 -0
- package/src/widget/components/ReportMappings.scss +46 -0
- package/src/widget/components/ReportMappings.tsx +350 -0
- package/src/widget/components/Reports.scss +36 -0
- package/src/widget/components/Reports.tsx +248 -0
- package/src/widget/components/ReportsContainer.scss +15 -0
- package/src/widget/components/ReportsContainer.tsx +36 -0
- package/src/widget/components/SearchBar.scss +27 -0
- package/src/widget/components/SearchBar.tsx +62 -0
- package/src/widget/components/SelectIModel.scss +15 -0
- package/src/widget/components/SelectIModel.tsx +102 -0
- package/src/widget/components/utils.scss +39 -0
- package/src/widget/components/utils.tsx +159 -0
- package/src/widget/context/ReportsApiConfigContext.tsx +27 -0
- package/src/widget/hooks/useValidator.ts +70 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,506 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
3
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
import React from "react";
|
|
6
|
+
import faker from "@faker-js/faker";
|
|
7
|
+
import "@testing-library/jest-dom";
|
|
8
|
+
import { NoRenderApp } from "@itwin/core-frontend";
|
|
9
|
+
import { ReportsConfigWidget } from "../ReportsConfigWidget";
|
|
10
|
+
import { setupServer } from "msw/node";
|
|
11
|
+
import { render, screen, TestUtils, waitForElementToBeRemoved, within, } from "./test-utils";
|
|
12
|
+
import userEvent from "@testing-library/user-event";
|
|
13
|
+
import * as moq from "typemoq";
|
|
14
|
+
import { rest } from "msw";
|
|
15
|
+
import { ReportMappings } from "../widget/components/ReportMappings";
|
|
16
|
+
import { Constants, IModelState } from "@itwin/imodels-client-management";
|
|
17
|
+
import { REPORTS_CONFIG_BASE_URL } from "../widget/ReportsConfigUiProvider";
|
|
18
|
+
import { REFRESH_DELAY } from "../widget/components/Extraction";
|
|
19
|
+
import { Presentation, SelectionChangeEvent, } from "@itwin/presentation-frontend";
|
|
20
|
+
// For the extraction test
|
|
21
|
+
jest.setTimeout(20000);
|
|
22
|
+
const mockITwinId = faker.datatype.uuid();
|
|
23
|
+
// Lets work with two iModels for now.
|
|
24
|
+
const mockIModelId1 = faker.datatype.uuid();
|
|
25
|
+
const mockIModelId2 = faker.datatype.uuid();
|
|
26
|
+
const mockReportId = faker.datatype.uuid();
|
|
27
|
+
const mockIModelsResponse = [
|
|
28
|
+
{
|
|
29
|
+
iModel: {
|
|
30
|
+
id: mockIModelId1,
|
|
31
|
+
displayName: faker.random.alpha(10),
|
|
32
|
+
name: faker.random.alpha(10),
|
|
33
|
+
description: faker.random.words(10),
|
|
34
|
+
createdDateTime: "2021-10-04T22:13:50.397Z",
|
|
35
|
+
state: IModelState.Initialized,
|
|
36
|
+
projectId: mockITwinId,
|
|
37
|
+
extent: null,
|
|
38
|
+
_links: {
|
|
39
|
+
creator: {
|
|
40
|
+
href: "",
|
|
41
|
+
},
|
|
42
|
+
namedVersions: {
|
|
43
|
+
href: "",
|
|
44
|
+
},
|
|
45
|
+
changesets: {
|
|
46
|
+
href: "",
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
iModel: {
|
|
53
|
+
id: mockIModelId2,
|
|
54
|
+
displayName: faker.random.alpha(10),
|
|
55
|
+
name: faker.random.alpha(10),
|
|
56
|
+
description: faker.random.words(10),
|
|
57
|
+
createdDateTime: "2021-10-04T22:13:50.397Z",
|
|
58
|
+
state: IModelState.Initialized,
|
|
59
|
+
projectId: mockITwinId,
|
|
60
|
+
extent: null,
|
|
61
|
+
_links: {
|
|
62
|
+
creator: {
|
|
63
|
+
href: "",
|
|
64
|
+
},
|
|
65
|
+
namedVersions: {
|
|
66
|
+
href: "",
|
|
67
|
+
},
|
|
68
|
+
changesets: {
|
|
69
|
+
href: "",
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
];
|
|
75
|
+
const mockProjectIModels = {
|
|
76
|
+
iModels: mockIModelsResponse.map((iModel) => ({
|
|
77
|
+
id: iModel.iModel.id,
|
|
78
|
+
displayName: iModel.iModel.displayName,
|
|
79
|
+
})),
|
|
80
|
+
_links: {
|
|
81
|
+
self: {
|
|
82
|
+
href: "",
|
|
83
|
+
},
|
|
84
|
+
prev: null,
|
|
85
|
+
next: null,
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
const mockReport = {
|
|
89
|
+
id: mockReportId,
|
|
90
|
+
displayName: faker.random.alpha(10),
|
|
91
|
+
description: faker.random.words(10),
|
|
92
|
+
deleted: false,
|
|
93
|
+
_links: {
|
|
94
|
+
project: {
|
|
95
|
+
href: "",
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
};
|
|
99
|
+
const mockReportMappingsFactory = () => {
|
|
100
|
+
return {
|
|
101
|
+
mappings: [
|
|
102
|
+
{
|
|
103
|
+
reportId: mockReportId,
|
|
104
|
+
mappingId: faker.datatype.uuid(),
|
|
105
|
+
imodelId: mockIModelId1,
|
|
106
|
+
_links: {
|
|
107
|
+
report: {
|
|
108
|
+
href: "",
|
|
109
|
+
},
|
|
110
|
+
mapping: {
|
|
111
|
+
href: "",
|
|
112
|
+
},
|
|
113
|
+
imodel: {
|
|
114
|
+
href: "",
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
reportId: mockReportId,
|
|
120
|
+
mappingId: faker.datatype.uuid(),
|
|
121
|
+
imodelId: mockIModelId2,
|
|
122
|
+
_links: {
|
|
123
|
+
report: {
|
|
124
|
+
href: "",
|
|
125
|
+
},
|
|
126
|
+
mapping: {
|
|
127
|
+
href: "",
|
|
128
|
+
},
|
|
129
|
+
imodel: {
|
|
130
|
+
href: "",
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
],
|
|
135
|
+
_links: {
|
|
136
|
+
next: undefined,
|
|
137
|
+
self: {
|
|
138
|
+
href: "",
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
const mockMappingsFactory = (mockReportMappings) => {
|
|
144
|
+
const mockMappings = mockReportMappings.mappings.map((mapping) => ({
|
|
145
|
+
mapping: {
|
|
146
|
+
id: mapping.mappingId,
|
|
147
|
+
mappingName: faker.random.alpha(10),
|
|
148
|
+
description: faker.random.words(10),
|
|
149
|
+
extractionEnabled: false,
|
|
150
|
+
createdOn: "",
|
|
151
|
+
createdBy: "",
|
|
152
|
+
modifiedOn: "",
|
|
153
|
+
modifiedBy: "",
|
|
154
|
+
_links: {
|
|
155
|
+
imodel: {
|
|
156
|
+
// Tie the mapping to to the iModel Id
|
|
157
|
+
href: mapping.imodelId,
|
|
158
|
+
},
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
}));
|
|
162
|
+
const iModelHandlers = mockMappings.map((mapping) => {
|
|
163
|
+
var _a, _b, _c, _d, _e;
|
|
164
|
+
return rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/imodels/${(_d = (_c = (_b = (_a = mapping.mapping) === null || _a === void 0 ? void 0 : _a._links) === null || _b === void 0 ? void 0 : _b.imodel) === null || _c === void 0 ? void 0 : _c.href) !== null && _d !== void 0 ? _d : ""}/mappings/${(_e = mapping.mapping) === null || _e === void 0 ? void 0 : _e.id}`, async (_req, res, ctx) => {
|
|
165
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mapping));
|
|
166
|
+
});
|
|
167
|
+
});
|
|
168
|
+
return [mockMappings, iModelHandlers];
|
|
169
|
+
};
|
|
170
|
+
const connectionMock = moq.Mock.ofType();
|
|
171
|
+
const selectionManagerMock = moq.Mock.ofType();
|
|
172
|
+
const selectionScopesManagerMock = moq.Mock.ofType();
|
|
173
|
+
jest.mock("@itwin/appui-react", () => ({
|
|
174
|
+
...jest.requireActual("@itwin/appui-react"),
|
|
175
|
+
useActiveIModelConnection: () => connectionMock.object,
|
|
176
|
+
}));
|
|
177
|
+
const server = setupServer();
|
|
178
|
+
beforeAll(async () => {
|
|
179
|
+
// This is required by the i18n module within iTwin.js
|
|
180
|
+
global.XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest; // eslint-disable-line @typescript-eslint/no-var-requires
|
|
181
|
+
await NoRenderApp.startup();
|
|
182
|
+
await Presentation.initialize();
|
|
183
|
+
const selectionSet = moq.Mock.ofType();
|
|
184
|
+
const onChanged = moq.Mock.ofType();
|
|
185
|
+
selectionSet.setup((x) => x.elements).returns(() => new Set([]));
|
|
186
|
+
selectionSet.setup((x) => x.onChanged).returns(() => onChanged.object);
|
|
187
|
+
connectionMock
|
|
188
|
+
.setup((x) => x.selectionSet)
|
|
189
|
+
.returns(() => selectionSet.object);
|
|
190
|
+
connectionMock.setup((x) => x.iModelId).returns(() => mockIModelId1);
|
|
191
|
+
connectionMock.setup((x) => x.iTwinId).returns(() => mockITwinId);
|
|
192
|
+
selectionManagerMock
|
|
193
|
+
.setup((x) => x.selectionChange)
|
|
194
|
+
.returns(() => new SelectionChangeEvent());
|
|
195
|
+
selectionScopesManagerMock
|
|
196
|
+
.setup(async (x) => x.getSelectionScopes(connectionMock.object))
|
|
197
|
+
.returns(async () => []);
|
|
198
|
+
selectionManagerMock
|
|
199
|
+
.setup((x) => x.scopes)
|
|
200
|
+
.returns(() => selectionScopesManagerMock.object);
|
|
201
|
+
Presentation.setSelectionManager(selectionManagerMock.object);
|
|
202
|
+
await TestUtils.initializeUiFramework(connectionMock.object);
|
|
203
|
+
await ReportsConfigWidget.initialize();
|
|
204
|
+
server.listen();
|
|
205
|
+
});
|
|
206
|
+
afterAll(() => {
|
|
207
|
+
TestUtils.terminateUiFramework();
|
|
208
|
+
server.close();
|
|
209
|
+
});
|
|
210
|
+
afterEach(() => {
|
|
211
|
+
server.resetHandlers();
|
|
212
|
+
});
|
|
213
|
+
describe("Report Mappings View", () => {
|
|
214
|
+
it("shows all report mappings", async () => {
|
|
215
|
+
var _a, _b, _c, _d, _e;
|
|
216
|
+
const mockReportMappings = mockReportMappingsFactory();
|
|
217
|
+
const [mockMappings, iModelHandlers] = mockMappingsFactory(mockReportMappings);
|
|
218
|
+
server.use(rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
219
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
220
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId1}`, async (_req, res, ctx) => {
|
|
221
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[0]));
|
|
222
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId2}`, async (_req, res, ctx) => {
|
|
223
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[1]));
|
|
224
|
+
}), ...iModelHandlers);
|
|
225
|
+
render(React.createElement(ReportMappings, { report: mockReport, goBack: jest.fn() }));
|
|
226
|
+
await waitForElementToBeRemoved(() => screen.getByText(/loading/i));
|
|
227
|
+
const horizontalTiles = screen.getAllByTestId("horizontal-tile");
|
|
228
|
+
expect(horizontalTiles).toHaveLength(mockMappings.length);
|
|
229
|
+
for (const [index, horizontalTile] of horizontalTiles.entries()) {
|
|
230
|
+
const reportMappingTile = within(horizontalTile);
|
|
231
|
+
const mockiModel = mockIModelsResponse.find((iModel) => { var _a, _b, _c; return iModel.iModel.id === ((_c = (_b = (_a = mockMappings[index].mapping) === null || _a === void 0 ? void 0 : _a._links) === null || _b === void 0 ? void 0 : _b.imodel) === null || _c === void 0 ? void 0 : _c.href); });
|
|
232
|
+
expect(reportMappingTile.getByText((_b = (_a = mockMappings[index].mapping) === null || _a === void 0 ? void 0 : _a.mappingName) !== null && _b !== void 0 ? _b : "")).toBeInTheDocument();
|
|
233
|
+
expect(reportMappingTile.getByTitle((_d = (_c = mockMappings[index].mapping) === null || _c === void 0 ? void 0 : _c.description) !== null && _d !== void 0 ? _d : "")).toBeInTheDocument();
|
|
234
|
+
expect(reportMappingTile.getByText((_e = mockiModel === null || mockiModel === void 0 ? void 0 : mockiModel.iModel.displayName) !== null && _e !== void 0 ? _e : "")).toBeInTheDocument();
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
it("search for a report mapping", async () => {
|
|
238
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
239
|
+
const mockReportMappings = mockReportMappingsFactory();
|
|
240
|
+
const [mockMappings, iModelHandlers] = mockMappingsFactory(mockReportMappings);
|
|
241
|
+
server.use(rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
242
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
243
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId1}`, async (_req, res, ctx) => {
|
|
244
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[0]));
|
|
245
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId2}`, async (_req, res, ctx) => {
|
|
246
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[1]));
|
|
247
|
+
}), ...iModelHandlers);
|
|
248
|
+
const { user } = render(React.createElement(ReportMappings, { report: mockReport, goBack: jest.fn() }));
|
|
249
|
+
await waitForElementToBeRemoved(() => screen.getByText(/loading/i));
|
|
250
|
+
const searchButton = within(screen.getByTestId(/search-bar/i)).getByRole("button");
|
|
251
|
+
await user.click(searchButton);
|
|
252
|
+
const searchInput = screen.getByRole("textbox", {
|
|
253
|
+
name: /search\-textbox/i,
|
|
254
|
+
});
|
|
255
|
+
// Be an exact match on display name.
|
|
256
|
+
await user.type(searchInput, (_b = (_a = mockMappings[0].mapping) === null || _a === void 0 ? void 0 : _a.mappingName) !== null && _b !== void 0 ? _b : "");
|
|
257
|
+
expect(screen.getAllByTestId("horizontal-tile")).toHaveLength(1);
|
|
258
|
+
expect(screen.getByText((_d = (_c = mockMappings[0].mapping) === null || _c === void 0 ? void 0 : _c.mappingName) !== null && _d !== void 0 ? _d : "")).toBeInTheDocument();
|
|
259
|
+
// Be an exact match on description.
|
|
260
|
+
await user.clear(searchInput);
|
|
261
|
+
await user.type(searchInput, (_f = (_e = mockMappings[0].mapping) === null || _e === void 0 ? void 0 : _e.description) !== null && _f !== void 0 ? _f : "");
|
|
262
|
+
expect(screen.getAllByTestId("horizontal-tile")).toHaveLength(1);
|
|
263
|
+
expect(screen.getByTitle((_h = (_g = mockMappings[0].mapping) === null || _g === void 0 ? void 0 : _g.description) !== null && _h !== void 0 ? _h : "")).toBeInTheDocument();
|
|
264
|
+
// Be an exact match on iModel Name.
|
|
265
|
+
const iModel = mockIModelsResponse.find((mockIModel) => { var _a, _b, _c; return mockIModel.iModel.id === ((_c = (_b = (_a = mockMappings[0].mapping) === null || _a === void 0 ? void 0 : _a._links) === null || _b === void 0 ? void 0 : _b.imodel) === null || _c === void 0 ? void 0 : _c.href); });
|
|
266
|
+
await user.clear(searchInput);
|
|
267
|
+
await user.type(searchInput, (_j = iModel === null || iModel === void 0 ? void 0 : iModel.iModel.displayName) !== null && _j !== void 0 ? _j : "");
|
|
268
|
+
expect(screen.getAllByTestId("horizontal-tile")).toHaveLength(1);
|
|
269
|
+
expect(screen.getByText((_k = iModel === null || iModel === void 0 ? void 0 : iModel.iModel.displayName) !== null && _k !== void 0 ? _k : "")).toBeInTheDocument();
|
|
270
|
+
});
|
|
271
|
+
it("remove a report mapping", async () => {
|
|
272
|
+
var _a;
|
|
273
|
+
const mockReportMappings = mockReportMappingsFactory();
|
|
274
|
+
const [_, iModelHandlers] = mockMappingsFactory(mockReportMappings);
|
|
275
|
+
const mockReportMappingsOriginalSize = mockReportMappings.mappings.length;
|
|
276
|
+
server.use(rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
277
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
278
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId1}`, async (_req, res, ctx) => {
|
|
279
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[0]));
|
|
280
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId2}`, async (_req, res, ctx) => {
|
|
281
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[1]));
|
|
282
|
+
}), ...iModelHandlers, rest.delete(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings/${(_a = mockReportMappings.mappings[0].mappingId) !== null && _a !== void 0 ? _a : ""}`, async (_req, res, ctx) => {
|
|
283
|
+
mockReportMappings.mappings = mockReportMappings.mappings.filter((mapping) => {
|
|
284
|
+
var _a;
|
|
285
|
+
return (_a = mapping.mappingId !== mockReportMappings.mappings[0].mappingId) !== null && _a !== void 0 ? _a : "";
|
|
286
|
+
});
|
|
287
|
+
return res(ctx.delay(100), ctx.status(204));
|
|
288
|
+
}));
|
|
289
|
+
const { user } = render(React.createElement(ReportMappings, { report: mockReport, goBack: jest.fn() }));
|
|
290
|
+
await waitForElementToBeRemoved(() => screen.getByText(/loading/i));
|
|
291
|
+
const firstMenuDropdown = within(screen.getAllByTestId(/tile-action-button/i)[0]).getByRole("button");
|
|
292
|
+
await user.click(firstMenuDropdown);
|
|
293
|
+
const removeButton = screen.getByRole("menuitem", { name: /remove/i });
|
|
294
|
+
await user.click(removeButton);
|
|
295
|
+
// Delete modal dialog should appear
|
|
296
|
+
expect(screen.getByRole("dialog")).toBeInTheDocument();
|
|
297
|
+
const deleteButton = screen.getByRole("button", {
|
|
298
|
+
name: /delete/i,
|
|
299
|
+
});
|
|
300
|
+
await user.click(deleteButton);
|
|
301
|
+
await waitForElementToBeRemoved(() => screen.getByTestId(/rcw-loading-delete/i));
|
|
302
|
+
await waitForElementToBeRemoved(() => screen.getByRole("dialog"));
|
|
303
|
+
// Should be one less mapping
|
|
304
|
+
expect(screen.getAllByTestId("horizontal-tile")).toHaveLength(mockReportMappingsOriginalSize - 1);
|
|
305
|
+
});
|
|
306
|
+
it("add mapping", async () => {
|
|
307
|
+
var _a, _b, _c, _d;
|
|
308
|
+
const mockReportMappings = mockReportMappingsFactory();
|
|
309
|
+
const [mockMappings, iModelHandlers] = mockMappingsFactory(mockReportMappings);
|
|
310
|
+
// Adding an extra unmapped mapping.
|
|
311
|
+
const extraMappingId = faker.datatype.uuid();
|
|
312
|
+
const extraMappingName = faker.random.alpha(10);
|
|
313
|
+
mockMappings.push({
|
|
314
|
+
mapping: {
|
|
315
|
+
id: extraMappingId,
|
|
316
|
+
mappingName: extraMappingName,
|
|
317
|
+
description: faker.random.words(10),
|
|
318
|
+
extractionEnabled: false,
|
|
319
|
+
createdOn: "",
|
|
320
|
+
createdBy: "",
|
|
321
|
+
modifiedOn: "",
|
|
322
|
+
modifiedBy: "",
|
|
323
|
+
_links: {
|
|
324
|
+
imodel: {
|
|
325
|
+
href: "",
|
|
326
|
+
},
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
});
|
|
330
|
+
const mockMappingsResponse = {
|
|
331
|
+
// Type guarding
|
|
332
|
+
mappings: mockMappings
|
|
333
|
+
.map((mapping) => mapping.mapping)
|
|
334
|
+
.filter((mapping) => !!mapping),
|
|
335
|
+
_links: {
|
|
336
|
+
next: undefined,
|
|
337
|
+
self: {
|
|
338
|
+
href: "",
|
|
339
|
+
},
|
|
340
|
+
},
|
|
341
|
+
};
|
|
342
|
+
server.use(rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
343
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
344
|
+
}), rest.get(`${Constants.api.baseUrl}`, async (_req, res, ctx) => {
|
|
345
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockProjectIModels));
|
|
346
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId1}`, async (_req, res, ctx) => {
|
|
347
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[0]));
|
|
348
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId2}`, async (_req, res, ctx) => {
|
|
349
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[1]));
|
|
350
|
+
}), rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/imodels/${mockProjectIModels.iModels[0].id}/mappings`, async (_req, res, ctx) => {
|
|
351
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockMappingsResponse));
|
|
352
|
+
}), rest.post(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
353
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
354
|
+
}), ...iModelHandlers);
|
|
355
|
+
const { user } = render(React.createElement(ReportMappings, { report: mockReport, goBack: jest.fn() }));
|
|
356
|
+
await waitForElementToBeRemoved(() => screen.getByText(/loading/i));
|
|
357
|
+
const addMappingButton = screen.getByRole("button", {
|
|
358
|
+
name: /addmapping/i,
|
|
359
|
+
});
|
|
360
|
+
await user.click(addMappingButton);
|
|
361
|
+
await waitForElementToBeRemoved(() => screen.getByTestId(/rcw-action-loading-spinner/i));
|
|
362
|
+
// Add modal dialog should appear
|
|
363
|
+
const modal = screen.getByRole("dialog");
|
|
364
|
+
expect(screen.getByRole("dialog")).toBeInTheDocument();
|
|
365
|
+
const withinModal = within(modal);
|
|
366
|
+
expect(withinModal.getByText(/addmappings/i)).toBeInTheDocument();
|
|
367
|
+
const addButton = withinModal.getByRole("button", {
|
|
368
|
+
name: /add/i,
|
|
369
|
+
});
|
|
370
|
+
// Add button should be disabled
|
|
371
|
+
expect(addButton).toBeDisabled();
|
|
372
|
+
// Already mapped mappings are disabled
|
|
373
|
+
for (let i = 0; i < mockMappings.length - 1; i++) {
|
|
374
|
+
const row = screen.getByRole("row", {
|
|
375
|
+
name: new RegExp(`toggle row selected ${(_a = mockMappings[i].mapping) === null || _a === void 0 ? void 0 : _a.mappingName} ${(_b = mockMappings[i].mapping) === null || _b === void 0 ? void 0 : _b.description}`, "i"),
|
|
376
|
+
});
|
|
377
|
+
const checkbox = within(row).getByRole("checkbox", {
|
|
378
|
+
name: /toggle row selected/i,
|
|
379
|
+
});
|
|
380
|
+
expect(checkbox).toBeDisabled();
|
|
381
|
+
}
|
|
382
|
+
// Click on checkbox on new mapping
|
|
383
|
+
const unmappedRow = screen.getByRole("row", {
|
|
384
|
+
name: new RegExp(`toggle row selected ${(_c = mockMappings[mockMappings.length - 1].mapping) === null || _c === void 0 ? void 0 : _c.mappingName} ${(_d = mockMappings[mockMappings.length - 1].mapping) === null || _d === void 0 ? void 0 : _d.description}`, "i"),
|
|
385
|
+
});
|
|
386
|
+
const enabledCheckbox = within(unmappedRow).getByRole("checkbox", {
|
|
387
|
+
name: /toggle row selected/i,
|
|
388
|
+
});
|
|
389
|
+
await user.click(enabledCheckbox);
|
|
390
|
+
await user.click(addButton);
|
|
391
|
+
// Modal should go away
|
|
392
|
+
await waitForElementToBeRemoved(() => screen.getByTestId(/rcw-action-loading-spinner/i));
|
|
393
|
+
await waitForElementToBeRemoved(() => screen.getByRole("dialog"));
|
|
394
|
+
});
|
|
395
|
+
it("odata feed url", async () => {
|
|
396
|
+
const mockReportMappings = mockReportMappingsFactory();
|
|
397
|
+
const [_, iModelHandlers] = mockMappingsFactory(mockReportMappings);
|
|
398
|
+
server.use(rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
399
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
400
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId1}`, async (_req, res, ctx) => {
|
|
401
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[0]));
|
|
402
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId2}`, async (_req, res, ctx) => {
|
|
403
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[1]));
|
|
404
|
+
}), ...iModelHandlers);
|
|
405
|
+
const { user } = render(React.createElement(ReportMappings, { report: mockReport, goBack: jest.fn() }));
|
|
406
|
+
await waitForElementToBeRemoved(() => screen.getByText(/loading/i));
|
|
407
|
+
const urlTextbox = screen.getByRole("textbox", {
|
|
408
|
+
name: /odatafeedurl/i,
|
|
409
|
+
});
|
|
410
|
+
expect(urlTextbox).toBeInTheDocument();
|
|
411
|
+
expect(screen.getByDisplayValue(`https://api.bentley.com/insights/reporting/odata/${mockReport.id}`)).toBeInTheDocument();
|
|
412
|
+
const copyButton = screen.getByRole("button", {
|
|
413
|
+
name: /copy/i,
|
|
414
|
+
});
|
|
415
|
+
await user.click(copyButton);
|
|
416
|
+
expect(screen.getByText(/copiedtoclipboard/i)).toBeInTheDocument();
|
|
417
|
+
});
|
|
418
|
+
it("full extraction", async () => {
|
|
419
|
+
const mockReportMappings = mockReportMappingsFactory();
|
|
420
|
+
const [_, iModelHandlers] = mockMappingsFactory(mockReportMappings);
|
|
421
|
+
const delay = REFRESH_DELAY;
|
|
422
|
+
// Faking timers currently makes all promise based queries from RTL become unpredictable.
|
|
423
|
+
// https://github.com/testing-library/dom-testing-library/issues/988
|
|
424
|
+
// Should come back to this later.
|
|
425
|
+
// Consequently, this test will be a bit slower.
|
|
426
|
+
// jest.useFakeTimers()
|
|
427
|
+
Element.prototype.scrollIntoView = jest.fn();
|
|
428
|
+
const mockIModel = mockIModelsResponse[0].iModel;
|
|
429
|
+
const mockRunId = faker.datatype.uuid();
|
|
430
|
+
const mockExtractionResponse = {
|
|
431
|
+
run: {
|
|
432
|
+
id: mockRunId,
|
|
433
|
+
_links: {
|
|
434
|
+
status: {
|
|
435
|
+
href: "",
|
|
436
|
+
},
|
|
437
|
+
},
|
|
438
|
+
},
|
|
439
|
+
};
|
|
440
|
+
let mockStatusResponse = {
|
|
441
|
+
status: {
|
|
442
|
+
state: "Queued",
|
|
443
|
+
reason: "",
|
|
444
|
+
},
|
|
445
|
+
};
|
|
446
|
+
server.use(rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`, async (_req, res, ctx) => {
|
|
447
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockReportMappings));
|
|
448
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId1}`, async (_req, res, ctx) => {
|
|
449
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[0]));
|
|
450
|
+
}), rest.get(`${Constants.api.baseUrl}/${mockIModelId2}`, async (_req, res, ctx) => {
|
|
451
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockIModelsResponse[1]));
|
|
452
|
+
}), ...iModelHandlers, rest.post(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/imodels/${mockIModel.id}/extraction/run`, async (_req, res, ctx) => {
|
|
453
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockExtractionResponse));
|
|
454
|
+
}), rest.get(`${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/extraction/status/${mockRunId}`, async (_req, res, ctx) => {
|
|
455
|
+
return res(ctx.delay(), ctx.status(200), ctx.json(mockStatusResponse));
|
|
456
|
+
}));
|
|
457
|
+
render(React.createElement(ReportMappings, { report: mockReport, goBack: jest.fn() }));
|
|
458
|
+
// https://github.com/testing-library/user-event/issues/833
|
|
459
|
+
const user = userEvent.setup({ delay: null });
|
|
460
|
+
await waitForElementToBeRemoved(() => screen.getByText(/loading/i));
|
|
461
|
+
const comboBox = screen.getByRole("combobox", {
|
|
462
|
+
name: /updatedataset/i,
|
|
463
|
+
});
|
|
464
|
+
await user.type(comboBox, mockIModel.displayName);
|
|
465
|
+
const option = screen.getByRole("option", {
|
|
466
|
+
name: mockIModel.displayName,
|
|
467
|
+
});
|
|
468
|
+
await user.click(option);
|
|
469
|
+
// Combobox should have correct status
|
|
470
|
+
const extractionComponent = screen.getByTestId("extraction-combo-box");
|
|
471
|
+
expect(within(extractionComponent).getByDisplayValue(mockIModel.displayName)).toBeInTheDocument();
|
|
472
|
+
// Should be two in the document. One in the status and the other in the list.
|
|
473
|
+
// TODO Assert that it is in the correct HorizontalTile
|
|
474
|
+
expect(screen.getAllByTitle(/starting/i)).toHaveLength(2);
|
|
475
|
+
const loadingStates = await screen.findAllByTitle(/loading/i);
|
|
476
|
+
expect(loadingStates).toHaveLength(2);
|
|
477
|
+
// act(() => {
|
|
478
|
+
// jest.advanceTimersByTime(2000)
|
|
479
|
+
// });
|
|
480
|
+
const queuedStates = await screen.findAllByTitle(/queued/i, undefined, {
|
|
481
|
+
timeout: delay,
|
|
482
|
+
});
|
|
483
|
+
expect(queuedStates).toHaveLength(2);
|
|
484
|
+
mockStatusResponse = {
|
|
485
|
+
status: {
|
|
486
|
+
state: "Running",
|
|
487
|
+
reason: "",
|
|
488
|
+
},
|
|
489
|
+
};
|
|
490
|
+
const runningStates = await screen.findAllByTitle(/running/i, undefined, {
|
|
491
|
+
timeout: delay,
|
|
492
|
+
});
|
|
493
|
+
expect(runningStates).toHaveLength(2);
|
|
494
|
+
mockStatusResponse = {
|
|
495
|
+
status: {
|
|
496
|
+
state: "Succeeded",
|
|
497
|
+
reason: "",
|
|
498
|
+
},
|
|
499
|
+
};
|
|
500
|
+
const succeededStates = await screen.findAllByTitle(/success/i, undefined, {
|
|
501
|
+
timeout: delay,
|
|
502
|
+
});
|
|
503
|
+
expect(succeededStates).toHaveLength(2);
|
|
504
|
+
});
|
|
505
|
+
});
|
|
506
|
+
//# sourceMappingURL=ReportMappings.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReportMappings.test.js","sourceRoot":"","sources":["../../../src/test/ReportMappings.test.tsx"],"names":[],"mappings":"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","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\nimport React from \"react\";\nimport faker from \"@faker-js/faker\";\nimport \"@testing-library/jest-dom\";\nimport type {\n IModelConnection,\n SelectionSet,\n SelectionSetEvent,\n} from \"@itwin/core-frontend\";\nimport { NoRenderApp } from \"@itwin/core-frontend\";\nimport { ReportsConfigWidget } from \"../ReportsConfigWidget\";\nimport { setupServer } from \"msw/node\";\nimport {\n render,\n screen,\n TestUtils,\n waitForElementToBeRemoved,\n within,\n} from \"./test-utils\";\nimport userEvent from \"@testing-library/user-event\";\nimport * as moq from \"typemoq\";\nimport type { RequestHandler } from \"msw\";\nimport { rest } from \"msw\";\nimport type {\n ExtractionStatus,\n Mapping,\n MappingCollection,\n MappingSingle,\n Report,\n ReportMappingCollection,\n} from \"@itwin/insights-client\";\nimport { ReportMappings } from \"../widget/components/ReportMappings\";\nimport { Constants, IModelState } from \"@itwin/imodels-client-management\";\nimport { REPORTS_CONFIG_BASE_URL } from \"../widget/ReportsConfigUiProvider\";\nimport { REFRESH_DELAY } from \"../widget/components/Extraction\";\nimport type {\n SelectionManager,\n SelectionScopesManager,\n} from \"@itwin/presentation-frontend\";\nimport {\n Presentation,\n SelectionChangeEvent,\n} from \"@itwin/presentation-frontend\";\nimport type { BeEvent } from \"@itwin/core-bentley\";\n\n// For the extraction test\njest.setTimeout(20000);\n\nconst mockITwinId = faker.datatype.uuid();\n// Lets work with two iModels for now.\nconst mockIModelId1 = faker.datatype.uuid();\nconst mockIModelId2 = faker.datatype.uuid();\n\nconst mockReportId = faker.datatype.uuid();\n\nconst mockIModelsResponse = [\n {\n iModel: {\n id: mockIModelId1,\n displayName: faker.random.alpha(10),\n name: faker.random.alpha(10),\n description: faker.random.words(10),\n createdDateTime: \"2021-10-04T22:13:50.397Z\",\n state: IModelState.Initialized,\n projectId: mockITwinId,\n extent: null,\n _links: {\n creator: {\n href: \"\",\n },\n namedVersions: {\n href: \"\",\n },\n changesets: {\n href: \"\",\n },\n },\n },\n },\n {\n iModel: {\n id: mockIModelId2,\n displayName: faker.random.alpha(10),\n name: faker.random.alpha(10),\n description: faker.random.words(10),\n createdDateTime: \"2021-10-04T22:13:50.397Z\",\n state: IModelState.Initialized,\n projectId: mockITwinId,\n extent: null,\n _links: {\n creator: {\n href: \"\",\n },\n namedVersions: {\n href: \"\",\n },\n changesets: {\n href: \"\",\n },\n },\n },\n },\n];\n\nconst mockProjectIModels = {\n iModels: mockIModelsResponse.map((iModel) => ({\n id: iModel.iModel.id,\n displayName: iModel.iModel.displayName,\n })),\n _links: {\n self: {\n href: \"\",\n },\n prev: null,\n next: null,\n },\n};\n\nconst mockReport: Report = {\n id: mockReportId,\n displayName: faker.random.alpha(10),\n description: faker.random.words(10),\n deleted: false,\n _links: {\n project: {\n href: \"\",\n },\n },\n};\n\nconst mockReportMappingsFactory = (): ReportMappingCollection => {\n return {\n mappings: [\n {\n reportId: mockReportId,\n mappingId: faker.datatype.uuid(),\n imodelId: mockIModelId1,\n _links: {\n report: {\n href: \"\",\n },\n mapping: {\n href: \"\",\n },\n imodel: {\n href: \"\",\n },\n },\n },\n {\n reportId: mockReportId,\n mappingId: faker.datatype.uuid(),\n imodelId: mockIModelId2,\n _links: {\n report: {\n href: \"\",\n },\n mapping: {\n href: \"\",\n },\n imodel: {\n href: \"\",\n },\n },\n },\n ],\n _links: {\n next: undefined,\n self: {\n href: \"\",\n },\n },\n };\n};\n\nconst mockMappingsFactory = (\n mockReportMappings: ReportMappingCollection\n): [MappingSingle[], RequestHandler[]] => {\n const mockMappings: MappingSingle[] = mockReportMappings.mappings!.map(\n (mapping) => ({\n mapping: {\n id: mapping.mappingId,\n mappingName: faker.random.alpha(10),\n description: faker.random.words(10),\n extractionEnabled: false,\n createdOn: \"\",\n createdBy: \"\",\n modifiedOn: \"\",\n modifiedBy: \"\",\n _links: {\n imodel: {\n // Tie the mapping to to the iModel Id\n href: mapping.imodelId,\n },\n },\n },\n })\n );\n\n const iModelHandlers: RequestHandler[] = mockMappings.map((mapping) =>\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/imodels/${\n mapping.mapping?._links?.imodel?.href ?? \"\"\n }/mappings/${mapping.mapping?.id}`,\n async (_req, res, ctx) => {\n return res(ctx.delay(), ctx.status(200), ctx.json(mapping));\n }\n )\n );\n\n return [mockMappings, iModelHandlers];\n};\n\nconst connectionMock = moq.Mock.ofType<IModelConnection>();\nconst selectionManagerMock = moq.Mock.ofType<SelectionManager>();\nconst selectionScopesManagerMock = moq.Mock.ofType<SelectionScopesManager>();\n\njest.mock(\"@itwin/appui-react\", () => ({\n ...jest.requireActual(\"@itwin/appui-react\"),\n useActiveIModelConnection: () => connectionMock.object,\n}));\n\nconst server = setupServer();\n\nbeforeAll(async () => {\n // This is required by the i18n module within iTwin.js\n (global as any).XMLHttpRequest = require(\"xmlhttprequest\").XMLHttpRequest; // eslint-disable-line @typescript-eslint/no-var-requires\n await NoRenderApp.startup();\n await Presentation.initialize();\n const selectionSet = moq.Mock.ofType<SelectionSet>();\n const onChanged = moq.Mock.ofType<BeEvent<(ev: SelectionSetEvent) => void>>();\n selectionSet.setup((x) => x.elements).returns(() => new Set([]));\n selectionSet.setup((x) => x.onChanged).returns(() => onChanged.object);\n connectionMock\n .setup((x) => x.selectionSet)\n .returns(() => selectionSet.object);\n connectionMock.setup((x) => x.iModelId).returns(() => mockIModelId1);\n connectionMock.setup((x) => x.iTwinId).returns(() => mockITwinId);\n\n selectionManagerMock\n .setup((x) => x.selectionChange)\n .returns(() => new SelectionChangeEvent());\n\n selectionScopesManagerMock\n .setup(async (x) => x.getSelectionScopes(connectionMock.object))\n .returns(async () => []);\n selectionManagerMock\n .setup((x) => x.scopes)\n .returns(() => selectionScopesManagerMock.object);\n\n Presentation.setSelectionManager(selectionManagerMock.object);\n await TestUtils.initializeUiFramework(connectionMock.object);\n await ReportsConfigWidget.initialize();\n server.listen();\n});\n\nafterAll(() => {\n TestUtils.terminateUiFramework();\n server.close();\n});\n\nafterEach(() => {\n server.resetHandlers();\n});\n\ndescribe(\"Report Mappings View\", () => {\n it(\"shows all report mappings\", async () => {\n const mockReportMappings = mockReportMappingsFactory();\n const [mockMappings, iModelHandlers] =\n mockMappingsFactory(mockReportMappings);\n\n server.use(\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId1}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[0])\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId2}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[1])\n );\n }\n ),\n ...iModelHandlers\n );\n\n render(<ReportMappings report={mockReport} goBack={jest.fn()} />);\n\n await waitForElementToBeRemoved(() => screen.getByText(/loading/i));\n\n const horizontalTiles = screen.getAllByTestId(\"horizontal-tile\");\n\n expect(horizontalTiles).toHaveLength(mockMappings.length);\n\n for (const [index, horizontalTile] of horizontalTiles.entries()) {\n const reportMappingTile = within(horizontalTile);\n const mockiModel = mockIModelsResponse.find(\n (iModel) =>\n iModel.iModel.id === mockMappings[index].mapping?._links?.imodel?.href\n );\n expect(\n reportMappingTile.getByText(\n mockMappings[index].mapping?.mappingName ?? \"\"\n )\n ).toBeInTheDocument();\n expect(\n reportMappingTile.getByTitle(\n mockMappings[index].mapping?.description ?? \"\"\n )\n ).toBeInTheDocument();\n expect(\n reportMappingTile.getByText(mockiModel?.iModel.displayName ?? \"\")\n ).toBeInTheDocument();\n }\n });\n\n it(\"search for a report mapping\", async () => {\n const mockReportMappings = mockReportMappingsFactory();\n const [mockMappings, iModelHandlers] =\n mockMappingsFactory(mockReportMappings);\n\n server.use(\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId1}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[0])\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId2}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[1])\n );\n }\n ),\n ...iModelHandlers\n );\n\n const { user } = render(\n <ReportMappings report={mockReport} goBack={jest.fn()} />\n );\n\n await waitForElementToBeRemoved(() => screen.getByText(/loading/i));\n\n const searchButton = within(screen.getByTestId(/search-bar/i)).getByRole(\n \"button\"\n );\n await user.click(searchButton);\n const searchInput = screen.getByRole(\"textbox\", {\n name: /search\\-textbox/i,\n });\n\n // Be an exact match on display name.\n await user.type(searchInput, mockMappings[0].mapping?.mappingName ?? \"\");\n expect(screen.getAllByTestId(\"horizontal-tile\")).toHaveLength(1);\n expect(\n screen.getByText(mockMappings[0].mapping?.mappingName ?? \"\")\n ).toBeInTheDocument();\n\n // Be an exact match on description.\n await user.clear(searchInput);\n await user.type(searchInput, mockMappings[0].mapping?.description ?? \"\");\n expect(screen.getAllByTestId(\"horizontal-tile\")).toHaveLength(1);\n expect(\n screen.getByTitle(mockMappings[0].mapping?.description ?? \"\")\n ).toBeInTheDocument();\n\n // Be an exact match on iModel Name.\n const iModel = mockIModelsResponse.find(\n (mockIModel) =>\n mockIModel.iModel.id === mockMappings[0].mapping?._links?.imodel?.href\n );\n await user.clear(searchInput);\n await user.type(searchInput, iModel?.iModel.displayName ?? \"\");\n expect(screen.getAllByTestId(\"horizontal-tile\")).toHaveLength(1);\n expect(\n screen.getByText(iModel?.iModel.displayName ?? \"\")\n ).toBeInTheDocument();\n });\n\n it(\"remove a report mapping\", async () => {\n const mockReportMappings = mockReportMappingsFactory();\n const [_, iModelHandlers] = mockMappingsFactory(mockReportMappings);\n\n const mockReportMappingsOriginalSize = mockReportMappings.mappings!.length;\n\n server.use(\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId1}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[0])\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId2}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[1])\n );\n }\n ),\n ...iModelHandlers,\n rest.delete(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings/${\n mockReportMappings.mappings![0].mappingId ?? \"\"\n }`,\n async (_req, res, ctx) => {\n mockReportMappings.mappings = mockReportMappings.mappings!.filter(\n (mapping) =>\n mapping.mappingId !== mockReportMappings.mappings![0].mappingId ??\n \"\"\n );\n return res(ctx.delay(100), ctx.status(204));\n }\n )\n );\n\n const { user } = render(\n <ReportMappings report={mockReport} goBack={jest.fn()} />\n );\n\n await waitForElementToBeRemoved(() => screen.getByText(/loading/i));\n\n const firstMenuDropdown = within(\n screen.getAllByTestId(/tile-action-button/i)[0]\n ).getByRole(\"button\");\n await user.click(firstMenuDropdown);\n const removeButton = screen.getByRole(\"menuitem\", { name: /remove/i });\n await user.click(removeButton);\n // Delete modal dialog should appear\n expect(screen.getByRole(\"dialog\")).toBeInTheDocument();\n\n const deleteButton = screen.getByRole(\"button\", {\n name: /delete/i,\n });\n\n await user.click(deleteButton);\n\n await waitForElementToBeRemoved(() =>\n screen.getByTestId(/rcw-loading-delete/i)\n );\n await waitForElementToBeRemoved(() => screen.getByRole(\"dialog\"));\n\n // Should be one less mapping\n expect(screen.getAllByTestId(\"horizontal-tile\")).toHaveLength(\n mockReportMappingsOriginalSize - 1\n );\n });\n\n it(\"add mapping\", async () => {\n const mockReportMappings = mockReportMappingsFactory();\n const [mockMappings, iModelHandlers] =\n mockMappingsFactory(mockReportMappings);\n\n // Adding an extra unmapped mapping.\n const extraMappingId = faker.datatype.uuid();\n const extraMappingName = faker.random.alpha(10);\n\n mockMappings.push({\n mapping: {\n id: extraMappingId,\n mappingName: extraMappingName,\n description: faker.random.words(10),\n extractionEnabled: false,\n createdOn: \"\",\n createdBy: \"\",\n modifiedOn: \"\",\n modifiedBy: \"\",\n _links: {\n imodel: {\n href: \"\",\n },\n },\n },\n });\n\n const mockMappingsResponse: MappingCollection = {\n // Type guarding\n mappings: mockMappings\n .map((mapping) => mapping.mapping)\n .filter((mapping): mapping is Mapping => !!mapping),\n _links: {\n next: undefined,\n self: {\n href: \"\",\n },\n },\n };\n\n server.use(\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n rest.get(`${Constants.api.baseUrl}`, async (_req, res, ctx) => {\n return res(ctx.delay(), ctx.status(200), ctx.json(mockProjectIModels));\n }),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId1}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[0])\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId2}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[1])\n );\n }\n ),\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/imodels/${mockProjectIModels.iModels[0].id}/mappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockMappingsResponse)\n );\n }\n ),\n rest.post(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n ...iModelHandlers\n );\n\n const { user } = render(\n <ReportMappings report={mockReport} goBack={jest.fn()} />\n );\n\n await waitForElementToBeRemoved(() => screen.getByText(/loading/i));\n\n const addMappingButton = screen.getByRole(\"button\", {\n name: /addmapping/i,\n });\n\n await user.click(addMappingButton);\n\n await waitForElementToBeRemoved(() =>\n screen.getByTestId(/rcw-action-loading-spinner/i)\n );\n // Add modal dialog should appear\n const modal = screen.getByRole(\"dialog\");\n expect(screen.getByRole(\"dialog\")).toBeInTheDocument();\n\n const withinModal = within(modal);\n expect(withinModal.getByText(/addmappings/i)).toBeInTheDocument();\n\n const addButton = withinModal.getByRole(\"button\", {\n name: /add/i,\n });\n // Add button should be disabled\n expect(addButton).toBeDisabled();\n\n // Already mapped mappings are disabled\n for (let i = 0; i < mockMappings.length - 1; i++) {\n const row = screen.getByRole(\"row\", {\n name: new RegExp(\n `toggle row selected ${mockMappings[i].mapping?.mappingName} ${mockMappings[i].mapping?.description}`,\n \"i\"\n ),\n });\n\n const checkbox = within(row).getByRole(\"checkbox\", {\n name: /toggle row selected/i,\n });\n expect(checkbox).toBeDisabled();\n }\n\n // Click on checkbox on new mapping\n const unmappedRow = screen.getByRole(\"row\", {\n name: new RegExp(\n `toggle row selected ${\n mockMappings[mockMappings.length - 1].mapping?.mappingName\n } ${mockMappings[mockMappings.length - 1].mapping?.description}`,\n \"i\"\n ),\n });\n\n const enabledCheckbox = within(unmappedRow).getByRole(\"checkbox\", {\n name: /toggle row selected/i,\n });\n\n await user.click(enabledCheckbox);\n\n await user.click(addButton);\n // Modal should go away\n await waitForElementToBeRemoved(() =>\n screen.getByTestId(/rcw-action-loading-spinner/i)\n );\n await waitForElementToBeRemoved(() => screen.getByRole(\"dialog\"));\n });\n\n it(\"odata feed url\", async () => {\n const mockReportMappings = mockReportMappingsFactory();\n const [_, iModelHandlers] = mockMappingsFactory(mockReportMappings);\n\n server.use(\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId1}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[0])\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId2}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[1])\n );\n }\n ),\n ...iModelHandlers\n );\n\n const { user } = render(\n <ReportMappings report={mockReport} goBack={jest.fn()} />\n );\n\n await waitForElementToBeRemoved(() => screen.getByText(/loading/i));\n\n const urlTextbox = screen.getByRole(\"textbox\", {\n name: /odatafeedurl/i,\n });\n expect(urlTextbox).toBeInTheDocument();\n expect(\n screen.getByDisplayValue(\n `https://api.bentley.com/insights/reporting/odata/${mockReport.id}`\n )\n ).toBeInTheDocument();\n\n const copyButton = screen.getByRole(\"button\", {\n name: /copy/i,\n });\n\n await user.click(copyButton);\n expect(screen.getByText(/copiedtoclipboard/i)).toBeInTheDocument();\n });\n\n it(\"full extraction\", async () => {\n const mockReportMappings = mockReportMappingsFactory();\n const [_, iModelHandlers] = mockMappingsFactory(mockReportMappings);\n\n const delay = REFRESH_DELAY;\n\n // Faking timers currently makes all promise based queries from RTL become unpredictable.\n // https://github.com/testing-library/dom-testing-library/issues/988\n // Should come back to this later.\n // Consequently, this test will be a bit slower.\n // jest.useFakeTimers()\n\n Element.prototype.scrollIntoView = jest.fn();\n\n const mockIModel = mockIModelsResponse[0].iModel;\n const mockRunId = faker.datatype.uuid();\n\n const mockExtractionResponse = {\n run: {\n id: mockRunId,\n _links: {\n status: {\n href: \"\",\n },\n },\n },\n };\n\n let mockStatusResponse: ExtractionStatus = {\n status: {\n state: \"Queued\",\n reason: \"\",\n },\n };\n\n server.use(\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/reports/${mockReportId}/datasources/imodelMappings`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockReportMappings)\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId1}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[0])\n );\n }\n ),\n rest.get(\n `${Constants.api.baseUrl}/${mockIModelId2}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockIModelsResponse[1])\n );\n }\n ),\n ...iModelHandlers,\n rest.post(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/imodels/${mockIModel.id}/extraction/run`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockExtractionResponse)\n );\n }\n ),\n rest.get(\n `${REPORTS_CONFIG_BASE_URL}/insights/reporting/datasources/extraction/status/${mockRunId}`,\n async (_req, res, ctx) => {\n return res(\n ctx.delay(),\n ctx.status(200),\n ctx.json(mockStatusResponse)\n );\n }\n )\n );\n\n render(<ReportMappings report={mockReport} goBack={jest.fn()} />);\n\n // https://github.com/testing-library/user-event/issues/833\n const user = userEvent.setup({ delay: null });\n\n await waitForElementToBeRemoved(() => screen.getByText(/loading/i));\n\n const comboBox = screen.getByRole(\"combobox\", {\n name: /updatedataset/i,\n });\n await user.type(comboBox, mockIModel.displayName);\n\n const option = screen.getByRole(\"option\", {\n name: mockIModel.displayName,\n });\n\n await user.click(option);\n\n // Combobox should have correct status\n const extractionComponent = screen.getByTestId(\"extraction-combo-box\");\n expect(\n within(extractionComponent).getByDisplayValue(mockIModel.displayName)\n ).toBeInTheDocument();\n // Should be two in the document. One in the status and the other in the list.\n // TODO Assert that it is in the correct HorizontalTile\n expect(screen.getAllByTitle(/starting/i)).toHaveLength(2);\n\n const loadingStates = await screen.findAllByTitle(/loading/i);\n expect(loadingStates).toHaveLength(2);\n\n // act(() => {\n // jest.advanceTimersByTime(2000)\n // });\n const queuedStates = await screen.findAllByTitle(/queued/i, undefined, {\n timeout: delay,\n });\n expect(queuedStates).toHaveLength(2);\n\n mockStatusResponse = {\n status: {\n state: \"Running\",\n reason: \"\",\n },\n };\n\n const runningStates = await screen.findAllByTitle(/running/i, undefined, {\n timeout: delay,\n });\n expect(runningStates).toHaveLength(2);\n\n mockStatusResponse = {\n status: {\n state: \"Succeeded\",\n reason: \"\",\n },\n };\n\n const succeededStates = await screen.findAllByTitle(/success/i, undefined, {\n timeout: delay,\n });\n expect(succeededStates).toHaveLength(2);\n });\n});\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Reports.test.d.ts","sourceRoot":"","sources":["../../../src/test/Reports.test.tsx"],"names":[],"mappings":"AAKA,OAAO,2BAA2B,CAAC"}
|