@dxc-technology/halstack-react 0.0.0-459ae03 → 0.0.0-459df48

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.
Files changed (287) hide show
  1. package/BackgroundColorContext.js +50 -0
  2. package/ThemeContext.js +246 -0
  3. package/V3Select/V3Select.js +455 -0
  4. package/V3Select/index.d.ts +27 -0
  5. package/{dist/textarea/Textarea.js → V3Textarea/V3Textarea.js} +39 -39
  6. package/V3Textarea/index.d.ts +27 -0
  7. package/{dist/accordion → accordion}/Accordion.js +79 -136
  8. package/accordion/index.d.ts +28 -0
  9. package/{dist/accordion-group → accordion-group}/AccordionGroup.js +13 -17
  10. package/accordion-group/index.d.ts +16 -0
  11. package/alert/Alert.d.ts +4 -0
  12. package/alert/Alert.js +290 -0
  13. package/alert/types.d.ts +49 -0
  14. package/alert/types.js +5 -0
  15. package/badge/Badge.js +59 -0
  16. package/{dist/box → box}/Box.js +9 -21
  17. package/box/index.d.ts +25 -0
  18. package/button/Button.d.ts +4 -0
  19. package/button/Button.js +182 -0
  20. package/button/Button.stories.tsx +293 -0
  21. package/button/types.d.ts +57 -0
  22. package/button/types.js +5 -0
  23. package/{dist/card → card}/Card.js +19 -73
  24. package/card/index.d.ts +22 -0
  25. package/checkbox/Checkbox.d.ts +4 -0
  26. package/{dist/checkbox → checkbox}/Checkbox.js +37 -78
  27. package/checkbox/types.d.ts +61 -0
  28. package/checkbox/types.js +5 -0
  29. package/{dist/chip → chip}/Chip.js +33 -81
  30. package/chip/index.d.ts +22 -0
  31. package/{dist/common → common}/OpenSans.css +0 -0
  32. package/{dist/common → common}/RequiredComponent.js +3 -11
  33. package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
  34. package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
  35. package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
  36. package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  37. package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
  38. package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
  39. package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
  40. package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
  41. package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
  42. package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  43. package/{dist/common → common}/utils.js +0 -0
  44. package/common/variables.js +1569 -0
  45. package/{dist/date → date}/Date.js +23 -31
  46. package/date/index.d.ts +27 -0
  47. package/date-input/DateInput.d.ts +4 -0
  48. package/{dist/new-date/NewDate.js → date-input/DateInput.js} +100 -130
  49. package/date-input/types.d.ts +100 -0
  50. package/date-input/types.js +5 -0
  51. package/{dist/dialog → dialog}/Dialog.js +26 -77
  52. package/dialog/index.d.ts +18 -0
  53. package/{dist/dropdown → dropdown}/Dropdown.js +108 -162
  54. package/dropdown/index.d.ts +26 -0
  55. package/file-input/FileInput.js +532 -0
  56. package/file-input/FileItem.js +193 -0
  57. package/file-input/index.d.ts +81 -0
  58. package/{dist/footer → footer}/Footer.js +65 -175
  59. package/footer/Icons.js +77 -0
  60. package/footer/index.d.ts +25 -0
  61. package/header/Header.js +326 -0
  62. package/header/Icons.js +59 -0
  63. package/header/index.d.ts +25 -0
  64. package/{dist/heading → heading}/Heading.js +30 -76
  65. package/heading/index.d.ts +17 -0
  66. package/input-text/Icons.js +22 -0
  67. package/{dist/input-text → input-text}/InputText.js +119 -180
  68. package/input-text/index.d.ts +36 -0
  69. package/{dist/layout → layout}/ApplicationLayout.js +35 -131
  70. package/layout/Icons.js +55 -0
  71. package/{dist/link → link}/Link.js +20 -78
  72. package/link/index.d.ts +23 -0
  73. package/main.d.ts +44 -0
  74. package/{dist/main.js → main.js} +109 -89
  75. package/{dist/number/Number.js → number-input/NumberInput.js} +29 -28
  76. package/{dist/number/NumberContext.js → number-input/NumberInputContext.js} +2 -2
  77. package/number-input/index.d.ts +113 -0
  78. package/package.json +32 -24
  79. package/paginator/Icons.js +66 -0
  80. package/paginator/Paginator.d.ts +4 -0
  81. package/paginator/Paginator.js +198 -0
  82. package/paginator/types.d.ts +38 -0
  83. package/paginator/types.js +5 -0
  84. package/password-input/PasswordInput.js +199 -0
  85. package/password-input/PasswordInput.stories.jsx +131 -0
  86. package/password-input/index.d.ts +94 -0
  87. package/progress-bar/ProgressBar.js +188 -0
  88. package/progress-bar/index.d.ts +18 -0
  89. package/{dist/radio → radio}/Radio.js +12 -26
  90. package/radio/index.d.ts +23 -0
  91. package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +35 -119
  92. package/resultsetTable/index.d.ts +19 -0
  93. package/select/Select.js +865 -0
  94. package/select/index.d.ts +131 -0
  95. package/{dist/sidenav → sidenav}/Sidenav.js +20 -58
  96. package/sidenav/index.d.ts +13 -0
  97. package/slider/Slider.js +340 -0
  98. package/slider/index.d.ts +29 -0
  99. package/spinner/Spinner.js +267 -0
  100. package/spinner/index.d.ts +17 -0
  101. package/switch/Switch.d.ts +4 -0
  102. package/{dist/switch → switch}/Switch.js +26 -69
  103. package/switch/types.d.ts +58 -0
  104. package/switch/types.js +5 -0
  105. package/{dist/table → table}/Table.js +13 -23
  106. package/table/index.d.ts +13 -0
  107. package/{dist/tabs → tabs}/Tabs.js +26 -110
  108. package/tabs/index.d.ts +19 -0
  109. package/{dist/tag → tag}/Tag.js +49 -121
  110. package/tag/index.d.ts +24 -0
  111. package/text-input/TextInput.js +825 -0
  112. package/text-input/index.d.ts +135 -0
  113. package/textarea/Textarea.js +317 -0
  114. package/textarea/index.d.ts +117 -0
  115. package/{dist/toggle → toggle}/Toggle.js +15 -49
  116. package/toggle/index.d.ts +21 -0
  117. package/toggle-group/ToggleGroup.js +243 -0
  118. package/toggle-group/index.d.ts +21 -0
  119. package/{dist/upload → upload}/Upload.js +11 -15
  120. package/upload/buttons-upload/ButtonsUpload.js +111 -0
  121. package/upload/buttons-upload/Icons.js +40 -0
  122. package/upload/dragAndDropArea/DragAndDropArea.js +225 -0
  123. package/upload/dragAndDropArea/Icons.js +39 -0
  124. package/upload/file-upload/FileToUpload.js +115 -0
  125. package/upload/file-upload/Icons.js +66 -0
  126. package/{dist/upload → upload}/files-upload/FilesToUpload.js +12 -26
  127. package/upload/index.d.ts +15 -0
  128. package/upload/transaction/Icons.js +160 -0
  129. package/upload/transaction/Transaction.js +104 -0
  130. package/upload/transactions/Transactions.js +94 -0
  131. package/{dist/useTheme.js → useTheme.js} +0 -0
  132. package/wizard/Icons.js +65 -0
  133. package/{dist/wizard → wizard}/Wizard.js +40 -180
  134. package/wizard/index.d.ts +18 -0
  135. package/README.md +0 -66
  136. package/babel.config.js +0 -8
  137. package/dist/BackgroundColorContext.js +0 -46
  138. package/dist/ThemeContext.js +0 -216
  139. package/dist/accordion/Accordion.stories.js +0 -207
  140. package/dist/accordion/readme.md +0 -96
  141. package/dist/accordion-group/AccordionGroup.stories.js +0 -207
  142. package/dist/accordion-group/readme.md +0 -70
  143. package/dist/alert/Alert.js +0 -388
  144. package/dist/alert/Alert.stories.js +0 -158
  145. package/dist/alert/close.svg +0 -4
  146. package/dist/alert/error.svg +0 -4
  147. package/dist/alert/info.svg +0 -4
  148. package/dist/alert/readme.md +0 -43
  149. package/dist/alert/success.svg +0 -4
  150. package/dist/alert/warning.svg +0 -4
  151. package/dist/badge/Badge.js +0 -63
  152. package/dist/button/Button.js +0 -232
  153. package/dist/button/Button.stories.js +0 -224
  154. package/dist/button/readme.md +0 -93
  155. package/dist/checkbox/Checkbox.stories.js +0 -144
  156. package/dist/checkbox/readme.md +0 -116
  157. package/dist/common/variables.js +0 -1305
  158. package/dist/date/Date.stories.js +0 -205
  159. package/dist/date/readme.md +0 -73
  160. package/dist/dialog/Dialog.stories.js +0 -217
  161. package/dist/dialog/readme.md +0 -32
  162. package/dist/dropdown/Dropdown.stories.js +0 -249
  163. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  164. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  165. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  166. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  167. package/dist/dropdown/readme.md +0 -69
  168. package/dist/footer/Footer.stories.js +0 -94
  169. package/dist/footer/dxc_logo.svg +0 -15
  170. package/dist/footer/readme.md +0 -41
  171. package/dist/header/Header.js +0 -431
  172. package/dist/header/Header.stories.js +0 -176
  173. package/dist/header/close_icon.svg +0 -1
  174. package/dist/header/dxc_logo_black.svg +0 -8
  175. package/dist/header/hamb_menu_black.svg +0 -1
  176. package/dist/header/hamb_menu_white.svg +0 -1
  177. package/dist/header/readme.md +0 -33
  178. package/dist/input-text/InputText.stories.js +0 -209
  179. package/dist/input-text/error.svg +0 -1
  180. package/dist/input-text/readme.md +0 -91
  181. package/dist/layout/facebook.svg +0 -45
  182. package/dist/layout/linkedin.svg +0 -50
  183. package/dist/layout/twitter.svg +0 -53
  184. package/dist/link/readme.md +0 -51
  185. package/dist/new-input-text/NewInputText.js +0 -929
  186. package/dist/paginator/Paginator.js +0 -283
  187. package/dist/paginator/images/next.svg +0 -3
  188. package/dist/paginator/images/nextPage.svg +0 -3
  189. package/dist/paginator/images/previous.svg +0 -3
  190. package/dist/paginator/images/previousPage.svg +0 -3
  191. package/dist/paginator/readme.md +0 -50
  192. package/dist/password/Password.js +0 -139
  193. package/dist/password/styles.css +0 -3
  194. package/dist/progress-bar/ProgressBar.js +0 -206
  195. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  196. package/dist/progress-bar/readme.md +0 -63
  197. package/dist/radio/Radio.stories.js +0 -166
  198. package/dist/radio/readme.md +0 -70
  199. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  200. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  201. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  202. package/dist/select/Select.js +0 -563
  203. package/dist/select/Select.stories.js +0 -235
  204. package/dist/select/readme.md +0 -72
  205. package/dist/slider/Slider.js +0 -315
  206. package/dist/slider/Slider.stories.js +0 -241
  207. package/dist/slider/readme.md +0 -64
  208. package/dist/spinner/Spinner.js +0 -214
  209. package/dist/spinner/Spinner.stories.js +0 -183
  210. package/dist/spinner/readme.md +0 -65
  211. package/dist/switch/Switch.stories.js +0 -134
  212. package/dist/switch/readme.md +0 -133
  213. package/dist/tabs/Tabs.stories.js +0 -130
  214. package/dist/tabs/readme.md +0 -78
  215. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  216. package/dist/tabs-for-sections/readme.md +0 -78
  217. package/dist/toggle/Toggle.stories.js +0 -297
  218. package/dist/toggle/readme.md +0 -80
  219. package/dist/toggle-group/ToggleGroup.js +0 -241
  220. package/dist/toggle-group/readme.md +0 -82
  221. package/dist/upload/Upload.stories.js +0 -72
  222. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -135
  223. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  224. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  225. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -325
  226. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  227. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  228. package/dist/upload/file-upload/FileToUpload.js +0 -184
  229. package/dist/upload/file-upload/audio-icon.svg +0 -4
  230. package/dist/upload/file-upload/close.svg +0 -4
  231. package/dist/upload/file-upload/file-icon.svg +0 -4
  232. package/dist/upload/file-upload/video-icon.svg +0 -4
  233. package/dist/upload/readme.md +0 -37
  234. package/dist/upload/transaction/Transaction.js +0 -171
  235. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  236. package/dist/upload/transaction/audio-icon.svg +0 -4
  237. package/dist/upload/transaction/error-icon.svg +0 -4
  238. package/dist/upload/transaction/file-icon-err.svg +0 -4
  239. package/dist/upload/transaction/file-icon.svg +0 -4
  240. package/dist/upload/transaction/image-icon-err.svg +0 -4
  241. package/dist/upload/transaction/image-icon.svg +0 -4
  242. package/dist/upload/transaction/success-icon.svg +0 -4
  243. package/dist/upload/transaction/video-icon-err.svg +0 -4
  244. package/dist/upload/transaction/video-icon.svg +0 -4
  245. package/dist/upload/transactions/Transactions.js +0 -138
  246. package/dist/wizard/invalid_icon.svg +0 -5
  247. package/dist/wizard/valid_icon.svg +0 -5
  248. package/dist/wizard/validation-wrong.svg +0 -6
  249. package/test/Accordion.test.js +0 -33
  250. package/test/AccordionGroup.test.js +0 -125
  251. package/test/Alert.test.js +0 -53
  252. package/test/Box.test.js +0 -10
  253. package/test/Button.test.js +0 -18
  254. package/test/Card.test.js +0 -30
  255. package/test/Checkbox.test.js +0 -45
  256. package/test/Chip.test.js +0 -25
  257. package/test/Date.test.js +0 -393
  258. package/test/Dialog.test.js +0 -23
  259. package/test/Dropdown.test.js +0 -145
  260. package/test/Footer.test.js +0 -99
  261. package/test/Header.test.js +0 -39
  262. package/test/Heading.test.js +0 -35
  263. package/test/InputText.test.js +0 -240
  264. package/test/Link.test.js +0 -43
  265. package/test/NewDate.test.js +0 -189
  266. package/test/NewInputText.test.js +0 -663
  267. package/test/Number.test.js +0 -205
  268. package/test/Paginator.test.js +0 -177
  269. package/test/Password.test.js +0 -63
  270. package/test/ProgressBar.test.js +0 -35
  271. package/test/Radio.test.js +0 -37
  272. package/test/ResultsetTable.test.js +0 -330
  273. package/test/Select.test.js +0 -192
  274. package/test/Sidenav.test.js +0 -45
  275. package/test/Slider.test.js +0 -82
  276. package/test/Spinner.test.js +0 -27
  277. package/test/Switch.test.js +0 -45
  278. package/test/Table.test.js +0 -36
  279. package/test/Tabs.test.js +0 -109
  280. package/test/TabsForSections.test.js +0 -34
  281. package/test/Tag.test.js +0 -32
  282. package/test/TextArea.test.js +0 -52
  283. package/test/ToggleGroup.test.js +0 -81
  284. package/test/Upload.test.js +0 -60
  285. package/test/Wizard.test.js +0 -130
  286. package/test/mocks/pngMock.js +0 -1
  287. package/test/mocks/svgMock.js +0 -1
@@ -1,99 +0,0 @@
1
- import React from "react";
2
- import { render } from "@testing-library/react";
3
- import DxcFooter from "../src/footer/Footer";
4
- import icon from "../../app/src/images/linkedin.svg";
5
-
6
- describe("Footer component tests", () => {
7
- test("Footer renders with default logo", () => {
8
- const { getByRole } = render(<DxcFooter></DxcFooter>);
9
- expect(getByRole("img")).toBeTruthy();
10
- });
11
-
12
- test("Footer renders with logo", () => {
13
- const { getByRole } = render(<DxcFooter logoSrc={icon}></DxcFooter>);
14
- expect(getByRole("img")).toBeTruthy();
15
- });
16
-
17
- test("Footer renders with social links", () => {
18
- const social = [
19
- {
20
- href: "https://www.test.com/test",
21
- logoSrc: icon,
22
- },
23
- ];
24
- const { getByRole } = render(<DxcFooter socialLinks={social}></DxcFooter>);
25
- const socialIcon = getByRole("link");
26
- expect(socialIcon.getAttribute("href")).toBe("https://www.test.com/test");
27
- });
28
-
29
- test("Footer renders with bottom links", () => {
30
- const bottom = [
31
- {
32
- href: "https://www.test.com/test",
33
- text: "bottom-link-text",
34
- },
35
- ];
36
- const { getByText } = render(<DxcFooter bottomLinks={bottom}></DxcFooter>);
37
- const link = getByText("bottom-link-text");
38
- expect(link.getAttribute("href")).toBe("https://www.test.com/test");
39
- });
40
-
41
- test("Footer renders with copyright text", () => {
42
- const { getByText } = render(<DxcFooter copyright="test-copyright"></DxcFooter>);
43
- expect(getByText("test-copyright")).toBeTruthy();
44
- });
45
-
46
- test("Footer renders with correct children", () => {
47
- //We need to force the offsetWidth value
48
- Object.defineProperty(HTMLElement.prototype, "offsetWidth", { configurable: true, value: 1024 });
49
-
50
- const { getByText } = render(
51
- <DxcFooter>
52
- <p>footer-child-text</p>
53
- </DxcFooter>
54
- );
55
-
56
- expect(getByText("footer-child-text")).toBeTruthy();
57
- });
58
-
59
- test("Footer renders without children in mobile", () => {
60
- //425 is mobile width
61
- Object.defineProperty(HTMLElement.prototype, "offsetWidth", { configurable: true, value: 425 });
62
-
63
- const { queryByText } = render(
64
- <DxcFooter>
65
- <p>footer-child-text</p>
66
- </DxcFooter>
67
- );
68
-
69
- expect(queryByText("footer-child-text")).toBeFalsy();
70
- });
71
-
72
- test("Footer is fully rendered", () => {
73
- Object.defineProperty(HTMLElement.prototype, "offsetWidth", { configurable: true, value: 1024 });
74
-
75
- const social = [
76
- {
77
- href: "https://www.test.com/social",
78
- logoSrc: icon,
79
- },
80
- ];
81
- const bottom = [
82
- {
83
- href: "https://www.test.com/bottom",
84
- text: "bottom-link-text",
85
- },
86
- ];
87
- const { getAllByRole, getByText } = render(
88
- <DxcFooter socialLinks={social} bottomLinks={bottom} copyright="test-copyright">
89
- <p>footer-child-text</p>
90
- </DxcFooter>
91
- );
92
- const socialIcon = getAllByRole("link")[0];
93
- expect(socialIcon.getAttribute("href")).toBe("https://www.test.com/social");
94
- const bottomLink = getByText("bottom-link-text");
95
- expect(bottomLink.getAttribute("href")).toBe("https://www.test.com/bottom");
96
- expect(getByText("test-copyright")).toBeTruthy();
97
- expect(getByText("footer-child-text")).toBeTruthy();
98
- });
99
- });
@@ -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
- });
@@ -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
- });
@@ -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
- });
@@ -1,189 +0,0 @@
1
- import React from "react";
2
- import { render, fireEvent, waitForElementToBeRemoved } 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 and placeholder", () => {
9
- const { getByText, getByRole } = render(
10
- <DxcNewDate label="Example label" helperText="Example of helper text" placeholder optional />
11
- );
12
- const input = getByRole("textbox");
13
-
14
- expect(getByText("Example label")).toBeTruthy();
15
- expect(getByText("Example of helper text")).toBeTruthy();
16
- expect(getByText("(Optional)")).toBeTruthy();
17
- expect(input.getAttribute("placeholder")).toBe("DD-MM-YYYY");
18
- });
19
-
20
- test("Renders with personalized error", () => {
21
- const { getByText } = render(<DxcNewDate error="Personalized error." />);
22
-
23
- expect(getByText("Personalized error.")).toBeTruthy();
24
- });
25
-
26
- test("Renders with correct format: user typed date but it's invalid", () => {
27
- const { getByText, getByRole } = render(<DxcNewDate label="With format MM/dd/yyyy" format="MM/dd/yyyy" />);
28
- const input = getByRole("textbox");
29
-
30
- userEvent.type(input, "10/90/2010");
31
- fireEvent.blur(input);
32
- expect(getByText("Invalid date.")).toBeTruthy();
33
- });
34
-
35
- test("Calendar renders with correct date: today's date", () => {
36
- const { getByText, getByRole } = render(<DxcNewDate />);
37
- const calendarAction = getByRole("button");
38
- const d = new Date();
39
- const options = { weekday: "short", month: "short", day: "numeric" };
40
-
41
- userEvent.click(calendarAction);
42
- expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
43
- });
44
-
45
- test("Calendar renders with correct date: value prop", () => {
46
- const { getByText, getByRole } = render(<DxcNewDate value="20-10-2019" />);
47
- const calendarAction = getByRole("button");
48
- const d = new Date(2019, 9, 20);
49
- const options = { weekday: "short", month: "short", day: "numeric" };
50
-
51
- userEvent.click(calendarAction);
52
- expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
53
- });
54
-
55
- test("Calendar renders with correct date: user typed value", () => {
56
- const { getByText, getByRole } = render(<DxcNewDate />);
57
- const calendarAction = getByRole("button");
58
- const d = new Date(2010, 0, 1);
59
- const options = { weekday: "short", month: "short", day: "numeric" };
60
- const input = getByRole("textbox");
61
-
62
- userEvent.type(input, "01-01-2010");
63
- userEvent.click(calendarAction);
64
- expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
65
- });
66
-
67
- test("Calendar renders with correct date: invalid date, renders with today's date", () => {
68
- const { getByText, getByRole } = render(<DxcNewDate />);
69
- const calendarAction = getByRole("button");
70
- const d = new Date();
71
- const options = { weekday: "short", month: "short", day: "numeric" };
72
- const input = getByRole("textbox");
73
-
74
- userEvent.type(input, "01-01-xxxx");
75
- fireEvent.blur(input);
76
- expect(getByText("Invalid date.")).toBeTruthy();
77
- userEvent.click(calendarAction);
78
- expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
79
- });
80
-
81
- test("Selecting a date from the calendar with an specific format", () => {
82
- const { getByText, getByRole } = render(<DxcNewDate label="With format M-dd-yyyy" format="M-dd-yyyy" />);
83
- const input = getByRole("textbox");
84
- const calendarAction = getByRole("button");
85
- userEvent.click(calendarAction);
86
- const dayButton = getByRole("button", { name: "10" });
87
- fireEvent.click(dayButton);
88
- const d = new Date();
89
- d.setDate(10);
90
- const options = { weekday: "short", month: "short", day: "numeric" };
91
- expect(getByText(d.toLocaleString("en-US", options))).toBeTruthy();
92
- fireEvent.keyDown(document, { key: "Esc", code: "Esc", keyCode: 27, charCode: 27 });
93
- expect(input.value).toBe(`${d.getMonth() + 1}-10-${d.getFullYear()}`);
94
- });
95
-
96
- test("Selecting a date from the calendar (using keyboard presses)", () => {
97
- const { getByRole } = render(<DxcNewDate />);
98
- const calendarAction = getByRole("button");
99
- const input = getByRole("textbox");
100
-
101
- userEvent.type(input, "01-01-2010");
102
- userEvent.click(calendarAction);
103
- fireEvent.keyDown(document, { key: "ArrowRight", code: "ArrowRight", keyCode: 39, charCode: 39 });
104
- fireEvent.keyDown(document, { key: "ArrowRight", code: "ArrowRight", keyCode: 39, charCode: 39 });
105
- fireEvent.keyDown(document, { key: "ArrowRight", code: "ArrowRight", keyCode: 39, charCode: 39 });
106
- fireEvent.keyDown(document, { key: "ArrowLeft", code: "ArrowLeft", keyCode: 37, charCode: 37 });
107
- fireEvent.keyDown(document, { key: "Esc", code: "Esc", keyCode: 27, charCode: 27 });
108
- expect(input.value).toBe("03-01-2010");
109
- });
110
-
111
- test("onChange & onBlur functions are called correctly", () => {
112
- const onBlur = jest.fn();
113
- const onChange = jest.fn();
114
- const { getByRole } = render(<DxcNewDate onChange={onChange} onBlur={onBlur} />);
115
- const input = getByRole("textbox");
116
- const d = new Date(2011, 9, 10);
117
-
118
- userEvent.type(input, "10-10-2011");
119
- expect(input.value).toBe("10-10-2011");
120
- expect(onChange).toHaveBeenCalledTimes(10);
121
- expect(onChange).toHaveBeenCalledWith({ value: "10-10-2011", date: d });
122
- fireEvent.blur(input);
123
- expect(onBlur).toHaveBeenCalled();
124
- expect(onBlur).toHaveBeenCalledWith({ value: "10-10-2011", error: null, date: d });
125
- });
126
-
127
- test("onChange & onBlur functions are called correctly, also with errors", () => {
128
- const onBlur = jest.fn();
129
- const onChange = jest.fn();
130
- const { getByRole } = render(<DxcNewDate onChange={onChange} onBlur={onBlur} />);
131
- const input = getByRole("textbox");
132
- const d = new Date(2011, 9, 10);
133
-
134
- userEvent.type(input, "10-10-");
135
- expect(input.value).toBe("10-10-");
136
- expect(onChange).toHaveBeenCalledTimes(6);
137
- expect(onChange).toHaveBeenCalledWith({ value: "10-10-", date: null });
138
- fireEvent.blur(input);
139
- expect(onBlur).toHaveBeenCalled();
140
- expect(onBlur).toHaveBeenCalledWith({ value: "10-10-", error: "Invalid date.", date: null });
141
- });
142
-
143
- test("onBlur function removes the error when it is fixed", () => {
144
- const onBlur = jest.fn();
145
- const { getByRole } = render(<DxcNewDate onBlur={onBlur} />);
146
- const input = getByRole("textbox");
147
- const d = new Date(2002, 1, 20);
148
-
149
- userEvent.type(input, "test");
150
- expect(input.value).toBe("test");
151
- fireEvent.blur(input);
152
- expect(onBlur).toHaveBeenCalled();
153
- expect(onBlur).toHaveBeenCalledWith({ value: "test", error: "Invalid date.", date: null });
154
- userEvent.clear(input);
155
- userEvent.type(input, "20-02-2002");
156
- expect(input.value).toBe("20-02-2002");
157
- fireEvent.blur(input);
158
- expect(onBlur).toHaveBeenCalled();
159
- expect(onBlur).toHaveBeenCalledWith({ value: "20-02-2002", error: null, date: d });
160
- });
161
-
162
- test("onBlur function removes the error when the input is empty", () => {
163
- const onBlur = jest.fn();
164
- const { getByRole } = render(<DxcNewDate onBlur={onBlur} />);
165
- const input = getByRole("textbox");
166
-
167
- userEvent.type(input, "test");
168
- expect(input.value).toBe("test");
169
- fireEvent.blur(input);
170
- expect(onBlur).toHaveBeenCalled();
171
- expect(onBlur).toHaveBeenCalledWith({ value: "test", error: "Invalid date.", date: null });
172
- userEvent.clear(input);
173
- fireEvent.blur(input);
174
- expect(onBlur).toHaveBeenCalled();
175
- expect(onBlur).toHaveBeenCalledWith({ value: "", error: null, date: null });
176
- });
177
-
178
- test("Disabled date (calendar action must be shown but not clickable)", () => {
179
- const { getByRole, queryByText } = render(<DxcNewDate disabled />);
180
- const calendarAction = getByRole("button");
181
- const d = new Date();
182
- const options = { weekday: "short", month: "short", day: "numeric" };
183
-
184
- expect(getByRole("textbox").disabled).toBeTruthy();
185
- userEvent.click(calendarAction);
186
- expect(queryByText(d.toLocaleString("en-US", options))).toBeFalsy();
187
- });
188
- });
189
-