@dxc-technology/halstack-react 3.4.1 → 4.0.0
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/{dist/BackgroundColorContext.js → BackgroundColorContext.js} +0 -0
- package/{dist/ThemeContext.js → ThemeContext.js} +74 -64
- package/{dist/select/Select.js → V3Select/V3Select.js} +127 -163
- package/V3Select/index.d.ts +27 -0
- package/{dist/textarea/Textarea.js → V3Textarea/V3Textarea.js} +4 -4
- package/V3Textarea/index.d.ts +27 -0
- package/{dist/accordion → accordion}/Accordion.js +0 -0
- package/accordion/index.d.ts +28 -0
- package/{dist/accordion-group → accordion-group}/AccordionGroup.js +0 -0
- package/accordion-group/index.d.ts +16 -0
- package/{dist/alert → alert}/Alert.js +6 -6
- package/alert/index.d.ts +51 -0
- package/{dist/badge → badge}/Badge.js +0 -0
- package/{dist/box → box}/Box.js +0 -0
- package/box/index.d.ts +25 -0
- package/{dist/button → button}/Button.js +3 -3
- package/button/Button.stories.js +27 -0
- package/button/index.d.ts +24 -0
- package/{dist/card → card}/Card.js +0 -0
- package/card/index.d.ts +22 -0
- package/{dist/checkbox → checkbox}/Checkbox.js +4 -5
- package/checkbox/index.d.ts +24 -0
- package/{dist/chip → chip}/Chip.js +0 -0
- package/chip/index.d.ts +22 -0
- package/{dist/common → common}/OpenSans.css +0 -0
- package/{dist/common → common}/RequiredComponent.js +0 -0
- package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
- package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/{dist/common → common}/utils.js +0 -0
- package/{dist/common → common}/variables.js +344 -138
- package/{dist/date → date}/Date.js +4 -6
- package/date/index.d.ts +27 -0
- package/{dist/new-date/NewDate.js → date-input/DateInput.js} +69 -72
- package/date-input/index.d.ts +95 -0
- package/{dist/dialog → dialog}/Dialog.js +0 -0
- package/dialog/index.d.ts +18 -0
- package/{dist/dropdown → dropdown}/Dropdown.js +0 -0
- package/dropdown/index.d.ts +26 -0
- package/file-input/FileInput.js +644 -0
- package/file-input/FileItem.js +287 -0
- package/file-input/index.d.ts +81 -0
- package/{dist/footer → footer}/Footer.js +44 -18
- package/footer/Icons.js +77 -0
- package/footer/index.d.ts +25 -0
- package/{dist/header → header}/Header.js +122 -55
- package/header/Icons.js +59 -0
- package/header/index.d.ts +25 -0
- package/{dist/heading → heading}/Heading.js +12 -0
- package/heading/index.d.ts +17 -0
- package/input-text/Icons.js +22 -0
- package/{dist/input-text → input-text}/InputText.js +7 -9
- package/input-text/index.d.ts +36 -0
- package/{dist/layout → layout}/ApplicationLayout.js +5 -9
- package/layout/Icons.js +55 -0
- package/{dist/link → link}/Link.js +4 -8
- package/link/index.d.ts +23 -0
- package/main.d.ts +40 -0
- package/{dist/main.js → main.js} +37 -29
- package/{dist/number/Number.js → number-input/NumberInput.js} +9 -11
- package/{dist/number/NumberContext.js → number-input/NumberInputContext.js} +2 -2
- package/number-input/index.d.ts +113 -0
- package/package.json +21 -16
- package/paginator/Icons.js +66 -0
- package/{dist/paginator → paginator}/Paginator.js +53 -37
- package/paginator/index.d.ts +20 -0
- package/{dist/password/Password.js → password-input/PasswordInput.js} +17 -14
- package/password-input/index.d.ts +94 -0
- package/{dist/progress-bar → progress-bar}/ProgressBar.js +1 -1
- package/progress-bar/index.d.ts +18 -0
- package/{dist/radio → radio}/Radio.js +0 -0
- package/radio/index.d.ts +23 -0
- package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +1 -1
- package/resultsetTable/index.d.ts +19 -0
- package/select/Select.js +1138 -0
- package/select/index.d.ts +131 -0
- package/{dist/sidenav → sidenav}/Sidenav.js +6 -4
- package/sidenav/index.d.ts +13 -0
- package/{dist/slider → slider}/Slider.js +104 -19
- package/slider/index.d.ts +29 -0
- package/{dist/spinner → spinner}/Spinner.js +0 -0
- package/spinner/index.d.ts +17 -0
- package/{dist/switch → switch}/Switch.js +0 -0
- package/switch/index.d.ts +24 -0
- package/{dist/table → table}/Table.js +0 -0
- package/table/index.d.ts +13 -0
- package/{dist/tabs → tabs}/Tabs.js +0 -0
- package/tabs/index.d.ts +19 -0
- package/{dist/tag → tag}/Tag.js +26 -32
- package/tag/index.d.ts +24 -0
- package/{dist/new-input-text/NewInputText.js → text-input/TextInput.js} +343 -312
- package/text-input/index.d.ts +135 -0
- package/{dist/new-textarea/NewTextarea.js → textarea/Textarea.js} +68 -45
- package/textarea/index.d.ts +117 -0
- package/{dist/toggle → toggle}/Toggle.js +0 -0
- package/toggle/index.d.ts +21 -0
- package/{dist/toggle-group → toggle-group}/ToggleGroup.js +132 -28
- package/toggle-group/index.d.ts +21 -0
- package/{dist/upload → upload}/Upload.js +0 -0
- package/{dist/upload → upload}/buttons-upload/ButtonsUpload.js +7 -11
- package/upload/buttons-upload/Icons.js +40 -0
- package/{dist/upload → upload}/dragAndDropArea/DragAndDropArea.js +14 -14
- package/upload/dragAndDropArea/Icons.js +39 -0
- package/{dist/upload → upload}/file-upload/FileToUpload.js +26 -21
- package/upload/file-upload/Icons.js +66 -0
- package/{dist/upload → upload}/files-upload/FilesToUpload.js +0 -0
- package/upload/index.d.ts +15 -0
- package/upload/transaction/Icons.js +160 -0
- package/{dist/upload → upload}/transaction/Transaction.js +11 -38
- package/{dist/upload → upload}/transactions/Transactions.js +0 -0
- package/{dist/useTheme.js → useTheme.js} +0 -0
- package/wizard/Icons.js +65 -0
- package/{dist/wizard → wizard}/Wizard.js +3 -9
- package/wizard/index.d.ts +18 -0
- package/README.md +0 -66
- package/babel.config.js +0 -8
- package/dist/checkbox/Checkbox.stories.js +0 -144
- package/dist/checkbox/readme.md +0 -116
- package/dist/date/Date.stories.js +0 -205
- package/dist/date/readme.md +0 -73
- package/dist/footer/Footer.stories.js +0 -94
- package/dist/footer/dxc_logo.svg +0 -15
- package/dist/footer/readme.md +0 -41
- package/dist/header/Header.stories.js +0 -176
- package/dist/header/close_icon.svg +0 -1
- package/dist/header/dxc_logo_black.svg +0 -8
- package/dist/header/hamb_menu_black.svg +0 -1
- package/dist/header/hamb_menu_white.svg +0 -1
- package/dist/header/readme.md +0 -33
- package/dist/input-text/InputText.stories.js +0 -209
- package/dist/input-text/error.svg +0 -1
- package/dist/input-text/readme.md +0 -91
- package/dist/layout/facebook.svg +0 -45
- package/dist/layout/linkedin.svg +0 -50
- package/dist/layout/twitter.svg +0 -53
- package/dist/link/readme.md +0 -51
- package/dist/paginator/images/next.svg +0 -3
- package/dist/paginator/images/nextPage.svg +0 -3
- package/dist/paginator/images/previous.svg +0 -3
- package/dist/paginator/images/previousPage.svg +0 -3
- package/dist/paginator/readme.md +0 -50
- package/dist/password/styles.css +0 -3
- package/dist/progress-bar/ProgressBar.stories.js +0 -280
- package/dist/progress-bar/readme.md +0 -63
- package/dist/radio/Radio.stories.js +0 -166
- package/dist/radio/readme.md +0 -70
- package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
- package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
- package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
- package/dist/select/Select.stories.js +0 -235
- package/dist/select/readme.md +0 -72
- package/dist/slider/Slider.stories.js +0 -241
- package/dist/slider/readme.md +0 -64
- package/dist/spinner/Spinner.stories.js +0 -183
- package/dist/spinner/readme.md +0 -65
- package/dist/switch/Switch.stories.js +0 -134
- package/dist/switch/readme.md +0 -133
- package/dist/tabs/Tabs.stories.js +0 -130
- package/dist/tabs/readme.md +0 -78
- package/dist/tabs-for-sections/TabsForSections.js +0 -92
- package/dist/tabs-for-sections/readme.md +0 -78
- package/dist/toggle/Toggle.stories.js +0 -297
- package/dist/toggle/readme.md +0 -80
- package/dist/upload/Upload.stories.js +0 -72
- package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
- package/dist/upload/buttons-upload/upload-button.svg +0 -1
- package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
- package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
- package/dist/upload/file-upload/audio-icon.svg +0 -4
- package/dist/upload/file-upload/close.svg +0 -4
- package/dist/upload/file-upload/file-icon.svg +0 -4
- package/dist/upload/file-upload/video-icon.svg +0 -4
- package/dist/upload/readme.md +0 -37
- package/dist/upload/transaction/audio-icon-err.svg +0 -4
- package/dist/upload/transaction/audio-icon.svg +0 -4
- package/dist/upload/transaction/error-icon.svg +0 -4
- package/dist/upload/transaction/file-icon-err.svg +0 -4
- package/dist/upload/transaction/file-icon.svg +0 -4
- package/dist/upload/transaction/image-icon-err.svg +0 -4
- package/dist/upload/transaction/image-icon.svg +0 -4
- package/dist/upload/transaction/success-icon.svg +0 -4
- package/dist/upload/transaction/video-icon-err.svg +0 -4
- package/dist/upload/transaction/video-icon.svg +0 -4
- package/dist/wizard/invalid_icon.svg +0 -5
- package/dist/wizard/valid_icon.svg +0 -5
- package/dist/wizard/validation-wrong.svg +0 -6
- package/test/Accordion.test.js +0 -33
- package/test/AccordionGroup.test.js +0 -125
- package/test/Alert.test.js +0 -53
- package/test/Box.test.js +0 -10
- package/test/Button.test.js +0 -18
- package/test/Card.test.js +0 -30
- package/test/Checkbox.test.js +0 -45
- package/test/Chip.test.js +0 -25
- package/test/Date.test.js +0 -393
- package/test/Dialog.test.js +0 -23
- package/test/Dropdown.test.js +0 -145
- package/test/Footer.test.js +0 -99
- package/test/Header.test.js +0 -39
- package/test/Heading.test.js +0 -35
- package/test/InputText.test.js +0 -240
- package/test/Link.test.js +0 -43
- package/test/NewDate.test.js +0 -203
- package/test/NewInputText.test.js +0 -817
- package/test/NewTextarea.test.js +0 -201
- package/test/Number.test.js +0 -241
- package/test/Paginator.test.js +0 -177
- package/test/Password.test.js +0 -76
- package/test/ProgressBar.test.js +0 -35
- package/test/Radio.test.js +0 -37
- package/test/ResultsetTable.test.js +0 -330
- package/test/Select.test.js +0 -189
- package/test/Sidenav.test.js +0 -45
- package/test/Slider.test.js +0 -82
- package/test/Spinner.test.js +0 -32
- package/test/Switch.test.js +0 -45
- package/test/Table.test.js +0 -36
- package/test/Tabs.test.js +0 -109
- package/test/TabsForSections.test.js +0 -34
- package/test/Tag.test.js +0 -32
- package/test/TextArea.test.js +0 -52
- package/test/ToggleGroup.test.js +0 -81
- package/test/Upload.test.js +0 -60
- package/test/Wizard.test.js +0 -130
- package/test/mocks/pngMock.js +0 -1
- package/test/mocks/svgMock.js +0 -1
package/test/Header.test.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { render, fireEvent } from "@testing-library/react";
|
|
3
|
-
import DxcHeader from "../src/header/Header";
|
|
4
|
-
import icon from "../../app/src/images/linkedin.svg";
|
|
5
|
-
|
|
6
|
-
describe("Header component tests", () => {
|
|
7
|
-
test("Header renders with default logo", () => {
|
|
8
|
-
const { getByRole } = render(<DxcHeader></DxcHeader>);
|
|
9
|
-
expect(getByRole("img")).toBeTruthy();
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
test("Header renders with logo", () => {
|
|
13
|
-
const { getByRole } = render(<DxcHeader logoSrc={icon}></DxcHeader>);
|
|
14
|
-
expect(getByRole("img")).toBeTruthy();
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
test("Call correct function on logo click", () => {
|
|
18
|
-
const onClick = jest.fn();
|
|
19
|
-
const { getByRole } = render(<DxcHeader onClick={onClick}></DxcHeader>);
|
|
20
|
-
const logo = getByRole("img");
|
|
21
|
-
fireEvent.click(logo);
|
|
22
|
-
expect(onClick).toHaveBeenCalled();
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
test("Header renders with correct children", () => {
|
|
26
|
-
//We need to force the offsetWidth value
|
|
27
|
-
Object.defineProperty(HTMLElement.prototype, "offsetWidth", { configurable: true, value: 1024 });
|
|
28
|
-
|
|
29
|
-
const { getByText } = render(<DxcHeader content={<p>header-child-text</p>}></DxcHeader>);
|
|
30
|
-
expect(getByText("header-child-text")).toBeTruthy();
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
test("Header renders menu button in mobile", () => {
|
|
34
|
-
Object.defineProperty(HTMLElement.prototype, "offsetWidth", { configurable: true, value: 425 });
|
|
35
|
-
|
|
36
|
-
const { getByText } = render(<DxcHeader responsiveContent={(closeMenu) => <p>header-child-text</p>}></DxcHeader>);
|
|
37
|
-
expect(getByText("Menu")).toBeTruthy();
|
|
38
|
-
});
|
|
39
|
-
});
|
package/test/Heading.test.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { render } from "@testing-library/react";
|
|
3
|
-
import DxcHeading from "../src/heading/Heading";
|
|
4
|
-
|
|
5
|
-
describe("Heading component tests", () => {
|
|
6
|
-
test("Footer renders with default level", () => {
|
|
7
|
-
const { getByText } = render(<DxcHeading text="my-heading-test"></DxcHeading>);
|
|
8
|
-
expect(getByText("my-heading-test")).toBeTruthy();
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
test("Footer renders with level 1", () => {
|
|
12
|
-
const { getByText } = render(<DxcHeading text="my-heading-test" level={1}></DxcHeading>);
|
|
13
|
-
expect(getByText("my-heading-test")).toBeTruthy();
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
test("Footer renders with level 2", () => {
|
|
17
|
-
const { getByText } = render(<DxcHeading text="my-heading-test" level={2}></DxcHeading>);
|
|
18
|
-
expect(getByText("my-heading-test")).toBeTruthy();
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
test("Footer renders with level 3", () => {
|
|
22
|
-
const { getByText } = render(<DxcHeading text="my-heading-test" level={3}></DxcHeading>);
|
|
23
|
-
expect(getByText("my-heading-test")).toBeTruthy();
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
test("Footer renders with level 4", () => {
|
|
27
|
-
const { getByText } = render(<DxcHeading text="my-heading-test" level={4}></DxcHeading>);
|
|
28
|
-
expect(getByText("my-heading-test")).toBeTruthy();
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
test("Footer renders with level 5", () => {
|
|
32
|
-
const { getByText } = render(<DxcHeading text="my-heading-test" level={5}></DxcHeading>);
|
|
33
|
-
expect(getByText("my-heading-test")).toBeTruthy();
|
|
34
|
-
});
|
|
35
|
-
});
|
package/test/InputText.test.js
DELETED
|
@@ -1,240 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { render, fireEvent, waitFor, screen, act, waitForElementToBeRemoved } from "@testing-library/react";
|
|
3
|
-
import userEvent from "@testing-library/user-event";
|
|
4
|
-
|
|
5
|
-
import icon from "../../app/src/images/invision.svg";
|
|
6
|
-
|
|
7
|
-
import DxcInputText from "../src/input-text/InputText";
|
|
8
|
-
|
|
9
|
-
const countries = ["Albania", "Andorra", "Armenia", "Austria", "Azerbaijan"];
|
|
10
|
-
|
|
11
|
-
//Mock of popper.js because of an issue with createRange function
|
|
12
|
-
//(https://github.com/popperjs/popper-core/issues/478)
|
|
13
|
-
jest.mock("popper.js", () => {
|
|
14
|
-
const PopperJS = jest.requireActual("popper.js");
|
|
15
|
-
|
|
16
|
-
return class {
|
|
17
|
-
static placements = PopperJS.placements;
|
|
18
|
-
|
|
19
|
-
constructor() {
|
|
20
|
-
return {
|
|
21
|
-
destroy: () => {},
|
|
22
|
-
scheduleUpdate: () => {},
|
|
23
|
-
update: () => {},
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
};
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
describe("InputText component tests", () => {
|
|
30
|
-
test("Input renders with correct label", () => {
|
|
31
|
-
const { getByText } = render(<DxcInputText label="Input label" />);
|
|
32
|
-
expect(getByText("Input label")).toBeTruthy();
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
test("onChange function is called correctly", () => {
|
|
36
|
-
const onChange = jest.fn();
|
|
37
|
-
const { getByRole } = render(<DxcInputText label="Input label" onChange={onChange} />);
|
|
38
|
-
const input = getByRole("textbox");
|
|
39
|
-
userEvent.type(input, "20000");
|
|
40
|
-
expect(onChange).toHaveBeenCalled();
|
|
41
|
-
expect(onChange).toHaveBeenCalledWith("20000");
|
|
42
|
-
});
|
|
43
|
-
test("onBlur function is called correctly", () => {
|
|
44
|
-
const onBlur = jest.fn();
|
|
45
|
-
const onChange = jest.fn();
|
|
46
|
-
|
|
47
|
-
const { getByRole } = render(<DxcInputText label="Input label" onChange={onChange} onBlur={onBlur} />);
|
|
48
|
-
const input = getByRole("textbox");
|
|
49
|
-
userEvent.type(input, "Test value");
|
|
50
|
-
fireEvent.blur(input);
|
|
51
|
-
expect(onBlur).toHaveBeenCalled();
|
|
52
|
-
expect(onBlur).toHaveBeenCalledWith("Test value");
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
test("Uncontrolled component", () => {
|
|
56
|
-
const onChange = jest.fn();
|
|
57
|
-
const { getByRole } = render(<DxcInputText label="Input label" onChange={onChange} />);
|
|
58
|
-
const input = getByRole("textbox");
|
|
59
|
-
userEvent.type(input, "20000");
|
|
60
|
-
expect(onChange).toHaveBeenCalled();
|
|
61
|
-
expect(onChange).toHaveBeenCalledWith("20000");
|
|
62
|
-
expect(input.value).toBe("20000");
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
test("Controlled component", () => {
|
|
66
|
-
const onChange = jest.fn();
|
|
67
|
-
const onBlur = jest.fn();
|
|
68
|
-
const { getByRole } = render(
|
|
69
|
-
<DxcInputText label="Input label" value="Test value" onChange={onChange} onBlur={onBlur} />
|
|
70
|
-
);
|
|
71
|
-
const input = getByRole("textbox");
|
|
72
|
-
userEvent.type(input, "20000");
|
|
73
|
-
expect(onChange).toHaveBeenCalled();
|
|
74
|
-
expect(input.value).toBe("Test value");
|
|
75
|
-
fireEvent.blur(input);
|
|
76
|
-
expect(onBlur).toHaveBeenCalled();
|
|
77
|
-
expect(onBlur).toHaveBeenCalledWith("Test value");
|
|
78
|
-
});
|
|
79
|
-
test("Prefix icon onClick", () => {
|
|
80
|
-
const onClick = jest.fn();
|
|
81
|
-
const { getByRole } = render(<DxcInputText label="Input label" prefixIconSrc={icon} onClickPrefix={onClick} />);
|
|
82
|
-
const prefixIcon = getByRole("img");
|
|
83
|
-
userEvent.click(prefixIcon);
|
|
84
|
-
expect(onClick).toHaveBeenCalled();
|
|
85
|
-
});
|
|
86
|
-
test("Suffix icon onClick", () => {
|
|
87
|
-
const onClick = jest.fn();
|
|
88
|
-
const { getByRole } = render(<DxcInputText label="Input label" suffixIconSrc={icon} onClickSuffix={onClick} />);
|
|
89
|
-
const suffixIcon = getByRole("img");
|
|
90
|
-
userEvent.click(suffixIcon);
|
|
91
|
-
expect(onClick).toHaveBeenCalled();
|
|
92
|
-
});
|
|
93
|
-
});
|
|
94
|
-
|
|
95
|
-
describe("Autocomplete component Synchronous tests", () => {
|
|
96
|
-
test("Autocomplete no matches found is shown", async () => {
|
|
97
|
-
const onChangeAtocomplete = jest.fn();
|
|
98
|
-
render(
|
|
99
|
-
<DxcInputText label="Autocomplete Countries" autocompleteOptions={countries} onChange={onChangeAtocomplete} />
|
|
100
|
-
);
|
|
101
|
-
const input = screen.getByRole("textbox");
|
|
102
|
-
fireEvent.focus(input);
|
|
103
|
-
expect(screen.getByText("Andorra")).toBeTruthy();
|
|
104
|
-
userEvent.type(input, "X");
|
|
105
|
-
expect(screen.getByText("No matches found.")).toBeTruthy();
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
test("Autocomplete suggestions are shown", async () => {
|
|
109
|
-
const onChangeAtocomplete = jest.fn();
|
|
110
|
-
render(
|
|
111
|
-
<DxcInputText label="Autocomplete Countries" autocompleteOptions={countries} onChange={onChangeAtocomplete} />
|
|
112
|
-
);
|
|
113
|
-
const input = screen.getByRole("textbox");
|
|
114
|
-
fireEvent.focus(input);
|
|
115
|
-
expect(screen.getByText("Andorra")).toBeTruthy();
|
|
116
|
-
});
|
|
117
|
-
|
|
118
|
-
test("Autocomplete UNCONTROLLED suggestion selected", async () => {
|
|
119
|
-
const onChangeAtocomplete = jest.fn();
|
|
120
|
-
render(
|
|
121
|
-
<DxcInputText label="Autocomplete Countries" autocompleteOptions={countries} onChange={onChangeAtocomplete} />
|
|
122
|
-
);
|
|
123
|
-
const input = screen.getByRole("textbox");
|
|
124
|
-
fireEvent.focus(input);
|
|
125
|
-
expect(screen.getByText("Andorra")).toBeTruthy();
|
|
126
|
-
userEvent.type(screen.getByRole("textbox"), "Alb");
|
|
127
|
-
expect(onChangeAtocomplete).toHaveBeenCalled();
|
|
128
|
-
expect(screen.getByText("Albania")).toBeTruthy();
|
|
129
|
-
const suggestion1 = screen.getByText("Albania");
|
|
130
|
-
act(() => {
|
|
131
|
-
userEvent.click(suggestion1);
|
|
132
|
-
});
|
|
133
|
-
|
|
134
|
-
// expect(onChangeAtocomplete).toHaveBeenCalledWith("Albania");
|
|
135
|
-
expect(screen.getByRole("textbox").value).toBe("Albania");
|
|
136
|
-
});
|
|
137
|
-
|
|
138
|
-
test("Autocomplete CONTROLLED suggestions selected", async () => {
|
|
139
|
-
const onChangeAtocomplete = jest.fn();
|
|
140
|
-
render(
|
|
141
|
-
<DxcInputText
|
|
142
|
-
label="Autocomplete Countries"
|
|
143
|
-
value="Andorra"
|
|
144
|
-
autocompleteOptions={countries}
|
|
145
|
-
onChange={onChangeAtocomplete}
|
|
146
|
-
/>
|
|
147
|
-
);
|
|
148
|
-
const input = screen.getByRole("textbox");
|
|
149
|
-
fireEvent.focus(input);
|
|
150
|
-
expect(screen.getByText("Andorra")).toBeTruthy();
|
|
151
|
-
|
|
152
|
-
expect(screen.getByText("Andorra")).toBeTruthy();
|
|
153
|
-
const suggestion1 = screen.getByText("Andorra");
|
|
154
|
-
act(() => {
|
|
155
|
-
userEvent.click(suggestion1);
|
|
156
|
-
});
|
|
157
|
-
|
|
158
|
-
expect(onChangeAtocomplete).toHaveBeenCalledWith("Andorra");
|
|
159
|
-
});
|
|
160
|
-
});
|
|
161
|
-
|
|
162
|
-
describe("InputText component Asynchronous Autocomplete tests", () => {
|
|
163
|
-
test("Autocomplete Searching is shown", async () => {
|
|
164
|
-
const callbackFunc = jest.fn(() => new Promise((resolve) => setTimeout(resolve(["Italy", "Spain"]), 1000)));
|
|
165
|
-
|
|
166
|
-
const onChangeAtocomplete = jest.fn();
|
|
167
|
-
render(
|
|
168
|
-
<DxcInputText label="Autocomplete Countries" autocompleteOptions={callbackFunc} onChange={onChangeAtocomplete} />
|
|
169
|
-
);
|
|
170
|
-
const input = screen.getByRole("textbox");
|
|
171
|
-
fireEvent.focus(input);
|
|
172
|
-
await waitForElementToBeRemoved(() => screen.getByText(/Searching.../i));
|
|
173
|
-
expect(screen.getByText("Italy")).toBeTruthy();
|
|
174
|
-
expect(screen.getByText("Spain")).toBeTruthy();
|
|
175
|
-
});
|
|
176
|
-
|
|
177
|
-
test("Asynchronous UNCONTROLLED autocomplete tests", async () => {
|
|
178
|
-
const callbackFunc = jest.fn(() => new Promise((resolve) => setTimeout(resolve(["Italy", "Spain"]), 1000)));
|
|
179
|
-
const onChangeAtocomplete = jest.fn();
|
|
180
|
-
render(
|
|
181
|
-
<DxcInputText label="Autocomplete Countries" onChange={onChangeAtocomplete} autocompleteOptions={callbackFunc} />
|
|
182
|
-
);
|
|
183
|
-
const input = screen.getByRole("textbox");
|
|
184
|
-
fireEvent.focus(input);
|
|
185
|
-
userEvent.type(input, "And");
|
|
186
|
-
await waitForElementToBeRemoved(() => screen.getByText(/Searching.../i));
|
|
187
|
-
expect(screen.getByText("Italy")).toBeTruthy();
|
|
188
|
-
expect(screen.getByText("Spain")).toBeTruthy();
|
|
189
|
-
const suggestion1 = screen.getByText("Spain");
|
|
190
|
-
act(() => {
|
|
191
|
-
userEvent.click(suggestion1);
|
|
192
|
-
});
|
|
193
|
-
expect(onChangeAtocomplete).toHaveBeenCalledWith("Spain");
|
|
194
|
-
expect(screen.getByRole("textbox").value).toBe("Spain");
|
|
195
|
-
});
|
|
196
|
-
|
|
197
|
-
test("Asynchronous CONTROLLED autocomplete tests", async () => {
|
|
198
|
-
const callbackFunc = jest.fn(() => new Promise((resolve) => setTimeout(resolve(["Italy", "Spain"]), 3000)));
|
|
199
|
-
const onChangeAtocomplete = jest.fn();
|
|
200
|
-
render(
|
|
201
|
-
<DxcInputText
|
|
202
|
-
label="Autocomplete Countries"
|
|
203
|
-
value="test value"
|
|
204
|
-
onChange={onChangeAtocomplete}
|
|
205
|
-
autocompleteOptions={callbackFunc}
|
|
206
|
-
/>
|
|
207
|
-
);
|
|
208
|
-
const input = screen.getByRole("textbox");
|
|
209
|
-
fireEvent.focus(input);
|
|
210
|
-
userEvent.type(input, "And");
|
|
211
|
-
await waitForElementToBeRemoved(() => screen.getByText(/Searching.../i));
|
|
212
|
-
expect(screen.getByText("Italy")).toBeTruthy();
|
|
213
|
-
expect(screen.getByText("Spain")).toBeTruthy();
|
|
214
|
-
const suggestion1 = screen.getByText("Spain");
|
|
215
|
-
act(() => {
|
|
216
|
-
userEvent.click(suggestion1);
|
|
217
|
-
});
|
|
218
|
-
expect(onChangeAtocomplete).toHaveBeenCalledWith("Spain");
|
|
219
|
-
expect(screen.getByRole("textbox").value).toBe("test value");
|
|
220
|
-
});
|
|
221
|
-
|
|
222
|
-
test("Asynchronous autocomplete request failed", async () => {
|
|
223
|
-
const errorCallbackFunc = jest.fn(() => new Promise((resolve, reject) => setTimeout(reject("E"), 3000)));
|
|
224
|
-
const onChangeAtocomplete = jest.fn();
|
|
225
|
-
|
|
226
|
-
render(
|
|
227
|
-
<DxcInputText
|
|
228
|
-
label="Autocomplete Countries"
|
|
229
|
-
value="test value"
|
|
230
|
-
onChange={onChangeAtocomplete}
|
|
231
|
-
autocompleteOptions={errorCallbackFunc}
|
|
232
|
-
/>
|
|
233
|
-
);
|
|
234
|
-
|
|
235
|
-
const input = screen.getByRole("textbox");
|
|
236
|
-
fireEvent.focus(input);
|
|
237
|
-
await waitForElementToBeRemoved(() => screen.getByText(/Searching.../i));
|
|
238
|
-
expect(screen.getByText("Error fetching data")).toBeTruthy();
|
|
239
|
-
});
|
|
240
|
-
});
|
package/test/Link.test.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { render, fireEvent } from "@testing-library/react";
|
|
3
|
-
import DxcLink from "../src/link/Link";
|
|
4
|
-
|
|
5
|
-
describe("Link component tests", () => {
|
|
6
|
-
test("Link renders with correct text", () => {
|
|
7
|
-
const { getByText } = render(<DxcLink text="Link" />);
|
|
8
|
-
expect(getByText("Link")).toBeTruthy();
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
test("Link renders with correct href", () => {
|
|
12
|
-
const { getByRole } = render(<DxcLink text="Link" href="/testPage" />);
|
|
13
|
-
expect(getByRole("link").getAttribute("href")).toEqual("/testPage");
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
test("Link renders with correct disabled state", () => {
|
|
17
|
-
const { getByText } = render(<DxcLink text="Link" href="/testPage" disabled={true} />);
|
|
18
|
-
expect(getByText("Link").hasAttribute("href")).toBeFalsy();
|
|
19
|
-
const { getByText: getByTextLinkButton } = render(<DxcLink text="LinkButton" onClick={() => console.log("Andorra")} disabled={true} />);
|
|
20
|
-
expect(getByTextLinkButton("LinkButton").hasAttribute("onclick")).toBeFalsy();
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
test("Link open new tab", () => {
|
|
24
|
-
const { getByRole } = render(<DxcLink text="Link" href="/testPage" newWindow={true} />);
|
|
25
|
-
expect(getByRole("link").getAttribute("target")).toEqual("_blank");
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
test("Link onClick called", () => {
|
|
29
|
-
const onClick = jest.fn();
|
|
30
|
-
const { getByText } = render(<DxcLink text="Link" onClick={onClick} />);
|
|
31
|
-
const link = getByText("Link");
|
|
32
|
-
fireEvent.click(link);
|
|
33
|
-
expect(onClick).toHaveBeenCalled();
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
test("Disabled link onClick not called", () => {
|
|
37
|
-
const onClick = jest.fn();
|
|
38
|
-
const { getByText } = render(<DxcLink text="Link" onClick={onClick} disabled={true} />);
|
|
39
|
-
const link = getByText("Link");
|
|
40
|
-
fireEvent.click(link);
|
|
41
|
-
expect(onClick).toHaveBeenCalledTimes(0);
|
|
42
|
-
});
|
|
43
|
-
});
|
package/test/NewDate.test.js
DELETED
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { render, fireEvent } from "@testing-library/react";
|
|
3
|
-
import userEvent from "@testing-library/user-event";
|
|
4
|
-
|
|
5
|
-
import DxcNewDate from "../src/new-date/NewDate";
|
|
6
|
-
|
|
7
|
-
describe("NewDate component tests", () => {
|
|
8
|
-
test("Renders with correct label, helper text, optional, placeholder and clearable action", () => {
|
|
9
|
-
const { getByText, getByRole, getAllByRole } = render(
|
|
10
|
-
<DxcNewDate label="Example label" helperText="Example of helper text" placeholder optional clearable />
|
|
11
|
-
);
|
|
12
|
-
const input = getByRole("textbox");
|
|
13
|
-
expect(getByText("Example label")).toBeTruthy();
|
|
14
|
-
expect(getByText("Example of helper text")).toBeTruthy();
|
|
15
|
-
expect(getByText("(Optional)")).toBeTruthy();
|
|
16
|
-
expect(input.getAttribute("placeholder")).toBe("DD-MM-YYYY");
|
|
17
|
-
userEvent.type(input, "10/90/2010");
|
|
18
|
-
const closeAction = getAllByRole("button")[0];
|
|
19
|
-
userEvent.click(closeAction);
|
|
20
|
-
expect(input.value).toBe("");
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
test("Renders with personalized error", () => {
|
|
24
|
-
const { getByText } = render(<DxcNewDate error="Personalized error." />);
|
|
25
|
-
|
|
26
|
-
expect(getByText("Personalized error.")).toBeTruthy();
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
test("Renders with correct format: user typed date but it's invalid", () => {
|
|
30
|
-
const { getByText, getByRole } = render(<DxcNewDate label="With format MM/dd/yyyy" format="MM/dd/yyyy" />);
|
|
31
|
-
const input = getByRole("textbox");
|
|
32
|
-
|
|
33
|
-
userEvent.type(input, "10/90/2010");
|
|
34
|
-
fireEvent.blur(input);
|
|
35
|
-
expect(getByText("Invalid date.")).toBeTruthy();
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
test("Calendar renders with correct date: today's date", () => {
|
|
39
|
-
const { getByText, getByRole } = render(<DxcNewDate />);
|
|
40
|
-
const calendarAction = getByRole("button");
|
|
41
|
-
const d = new Date();
|
|
42
|
-
const options = { weekday: "short", month: "short", day: "numeric" };
|
|
43
|
-
|
|
44
|
-
userEvent.click(calendarAction);
|
|
45
|
-
expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
test("Calendar renders with correct date: value prop", () => {
|
|
49
|
-
const { getByText, getByRole } = render(<DxcNewDate value="20-10-2019" />);
|
|
50
|
-
const calendarAction = getByRole("button");
|
|
51
|
-
const d = new Date(2019, 9, 20);
|
|
52
|
-
const options = { weekday: "short", month: "short", day: "numeric" };
|
|
53
|
-
|
|
54
|
-
userEvent.click(calendarAction);
|
|
55
|
-
expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
test("Calendar renders with correct date: user typed value", () => {
|
|
59
|
-
const { getByText, getByRole } = render(<DxcNewDate />);
|
|
60
|
-
const calendarAction = getByRole("button");
|
|
61
|
-
const d = new Date(2010, 0, 1);
|
|
62
|
-
const options = { weekday: "short", month: "short", day: "numeric" };
|
|
63
|
-
const input = getByRole("textbox");
|
|
64
|
-
|
|
65
|
-
userEvent.type(input, "01-01-2010");
|
|
66
|
-
userEvent.click(calendarAction);
|
|
67
|
-
expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
test("Calendar renders with correct date: invalid date, renders with today's date", () => {
|
|
71
|
-
const { getByText, getByRole } = render(<DxcNewDate />);
|
|
72
|
-
const calendarAction = getByRole("button");
|
|
73
|
-
const d = new Date();
|
|
74
|
-
const options = { weekday: "short", month: "short", day: "numeric" };
|
|
75
|
-
const input = getByRole("textbox");
|
|
76
|
-
|
|
77
|
-
userEvent.type(input, "01-01-xxxx");
|
|
78
|
-
fireEvent.blur(input);
|
|
79
|
-
expect(getByText("Invalid date.")).toBeTruthy();
|
|
80
|
-
userEvent.click(calendarAction);
|
|
81
|
-
expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
test("Selecting a date from the calendar with an specific format", () => {
|
|
85
|
-
const { getByText, getByRole } = render(<DxcNewDate label="With format M-dd-yyyy" format="M-dd-yyyy" />);
|
|
86
|
-
const input = getByRole("textbox");
|
|
87
|
-
const calendarAction = getByRole("button");
|
|
88
|
-
userEvent.click(calendarAction);
|
|
89
|
-
const dayButton = getByRole("button", { name: "10" });
|
|
90
|
-
fireEvent.click(dayButton);
|
|
91
|
-
const d = new Date();
|
|
92
|
-
d.setDate(10);
|
|
93
|
-
const options = { weekday: "short", month: "short", day: "numeric" };
|
|
94
|
-
expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
|
|
95
|
-
fireEvent.keyDown(document, { key: "Esc", code: "Esc", keyCode: 27, charCode: 27 });
|
|
96
|
-
expect(input.value).toBe(`${d.getMonth() + 1}-10-${d.getFullYear()}`);
|
|
97
|
-
});
|
|
98
|
-
|
|
99
|
-
test("Selecting a date from the calendar (using keyboard presses)", () => {
|
|
100
|
-
const { getByRole } = render(<DxcNewDate />);
|
|
101
|
-
const calendarAction = getByRole("button");
|
|
102
|
-
const input = getByRole("textbox");
|
|
103
|
-
|
|
104
|
-
userEvent.type(input, "01-01-2010");
|
|
105
|
-
userEvent.click(calendarAction);
|
|
106
|
-
fireEvent.keyDown(document, { key: "ArrowRight", code: "ArrowRight", keyCode: 39, charCode: 39 });
|
|
107
|
-
fireEvent.keyDown(document, { key: "ArrowRight", code: "ArrowRight", keyCode: 39, charCode: 39 });
|
|
108
|
-
fireEvent.keyDown(document, { key: "ArrowRight", code: "ArrowRight", keyCode: 39, charCode: 39 });
|
|
109
|
-
fireEvent.keyDown(document, { key: "ArrowLeft", code: "ArrowLeft", keyCode: 37, charCode: 37 });
|
|
110
|
-
fireEvent.keyDown(document, { key: "Esc", code: "Esc", keyCode: 27, charCode: 27 });
|
|
111
|
-
expect(input.value).toBe("03-01-2010");
|
|
112
|
-
});
|
|
113
|
-
|
|
114
|
-
test("onChange & onBlur functions are called correctly", () => {
|
|
115
|
-
const onBlur = jest.fn();
|
|
116
|
-
const onChange = jest.fn();
|
|
117
|
-
const { getByRole } = render(<DxcNewDate onChange={onChange} onBlur={onBlur} />);
|
|
118
|
-
const input = getByRole("textbox");
|
|
119
|
-
const d = new Date(2011, 9, 10);
|
|
120
|
-
|
|
121
|
-
userEvent.type(input, "10-10-2011");
|
|
122
|
-
expect(input.value).toBe("10-10-2011");
|
|
123
|
-
expect(onChange).toHaveBeenCalledTimes(10);
|
|
124
|
-
expect(onChange).toHaveBeenCalledWith({ value: "10-10-2011", date: d });
|
|
125
|
-
fireEvent.blur(input);
|
|
126
|
-
expect(onBlur).toHaveBeenCalled();
|
|
127
|
-
expect(onBlur).toHaveBeenCalledWith({ value: "10-10-2011", error: null, date: d });
|
|
128
|
-
});
|
|
129
|
-
|
|
130
|
-
test("onChange & onBlur functions are called correctly, also with errors", () => {
|
|
131
|
-
const onBlur = jest.fn();
|
|
132
|
-
const onChange = jest.fn();
|
|
133
|
-
const { getByRole } = render(<DxcNewDate onChange={onChange} onBlur={onBlur} />);
|
|
134
|
-
const input = getByRole("textbox");
|
|
135
|
-
const d = new Date(2011, 9, 10);
|
|
136
|
-
|
|
137
|
-
userEvent.type(input, "10-10-");
|
|
138
|
-
expect(input.value).toBe("10-10-");
|
|
139
|
-
expect(onChange).toHaveBeenCalledTimes(6);
|
|
140
|
-
expect(onChange).toHaveBeenCalledWith({ value: "10-10-", date: null });
|
|
141
|
-
fireEvent.blur(input);
|
|
142
|
-
expect(onBlur).toHaveBeenCalled();
|
|
143
|
-
expect(onBlur).toHaveBeenCalledWith({ value: "10-10-", error: "Invalid date.", date: null });
|
|
144
|
-
});
|
|
145
|
-
|
|
146
|
-
test("onBlur function removes the error when it is fixed", () => {
|
|
147
|
-
const onBlur = jest.fn();
|
|
148
|
-
const { getByRole } = render(<DxcNewDate onBlur={onBlur} />);
|
|
149
|
-
const input = getByRole("textbox");
|
|
150
|
-
const d = new Date(2002, 1, 20);
|
|
151
|
-
|
|
152
|
-
userEvent.type(input, "test");
|
|
153
|
-
expect(input.value).toBe("test");
|
|
154
|
-
fireEvent.blur(input);
|
|
155
|
-
expect(onBlur).toHaveBeenCalled();
|
|
156
|
-
expect(onBlur).toHaveBeenCalledWith({ value: "test", error: "Invalid date.", date: null });
|
|
157
|
-
userEvent.clear(input);
|
|
158
|
-
userEvent.type(input, "20-02-2002");
|
|
159
|
-
expect(input.value).toBe("20-02-2002");
|
|
160
|
-
fireEvent.blur(input);
|
|
161
|
-
expect(onBlur).toHaveBeenCalled();
|
|
162
|
-
expect(onBlur).toHaveBeenCalledWith({ value: "20-02-2002", error: null, date: d });
|
|
163
|
-
});
|
|
164
|
-
|
|
165
|
-
test("onBlur function removes the error when the input is empty", () => {
|
|
166
|
-
const onBlur = jest.fn();
|
|
167
|
-
const { getByRole } = render(<DxcNewDate onBlur={onBlur} />);
|
|
168
|
-
const input = getByRole("textbox");
|
|
169
|
-
|
|
170
|
-
userEvent.type(input, "test");
|
|
171
|
-
expect(input.value).toBe("test");
|
|
172
|
-
fireEvent.blur(input);
|
|
173
|
-
expect(onBlur).toHaveBeenCalled();
|
|
174
|
-
expect(onBlur).toHaveBeenCalledWith({ value: "test", error: "Invalid date.", date: null });
|
|
175
|
-
userEvent.clear(input);
|
|
176
|
-
fireEvent.blur(input);
|
|
177
|
-
expect(onBlur).toHaveBeenCalled();
|
|
178
|
-
expect(onBlur).toHaveBeenCalledWith({ value: "", error: null, date: null });
|
|
179
|
-
});
|
|
180
|
-
|
|
181
|
-
test("Disabled date (calendar action must be shown but not clickable)", () => {
|
|
182
|
-
const { getByRole, queryByText } = render(<DxcNewDate disabled />);
|
|
183
|
-
const calendarAction = getByRole("button");
|
|
184
|
-
const d = new Date();
|
|
185
|
-
const options = { weekday: "short", month: "short", day: "numeric" };
|
|
186
|
-
|
|
187
|
-
expect(getByRole("textbox").disabled).toBeTruthy();
|
|
188
|
-
userEvent.click(calendarAction);
|
|
189
|
-
expect(queryByText(d.toLocaleString("en-US", options))).toBeFalsy();
|
|
190
|
-
});
|
|
191
|
-
|
|
192
|
-
test("Input has correct accesibility attributes", () => {
|
|
193
|
-
const { getByRole } = render(<DxcNewDate label="Date label" />);
|
|
194
|
-
const input = getByRole("textbox");
|
|
195
|
-
expect(input.getAttribute("aria-autocomplete")).toBeNull();
|
|
196
|
-
expect(input.getAttribute("aria-controls")).toBeNull();
|
|
197
|
-
expect(input.getAttribute("aria-expanded")).toBeNull();
|
|
198
|
-
const calendarAction = getByRole("button");
|
|
199
|
-
userEvent.click(calendarAction);
|
|
200
|
-
const datePicker = getByRole("dialog");
|
|
201
|
-
expect(datePicker.getAttribute("aria-modal")).toBe("true");
|
|
202
|
-
});
|
|
203
|
-
});
|