summaryrefslogtreecommitdiffstats
path: root/devtools/client/accessibility/test/node/components/badges.test.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /devtools/client/accessibility/test/node/components/badges.test.js
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/accessibility/test/node/components/badges.test.js')
-rw-r--r--devtools/client/accessibility/test/node/components/badges.test.js122
1 files changed, 122 insertions, 0 deletions
diff --git a/devtools/client/accessibility/test/node/components/badges.test.js b/devtools/client/accessibility/test/node/components/badges.test.js
new file mode 100644
index 0000000000..ef1b224450
--- /dev/null
+++ b/devtools/client/accessibility/test/node/components/badges.test.js
@@ -0,0 +1,122 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+const { mount } = require("enzyme");
+
+const { createFactory } = require("devtools/client/shared/vendor/react");
+const Provider = createFactory(
+ require("devtools/client/shared/vendor/react-redux").Provider
+);
+const {
+ setupStore,
+} = require("devtools/client/accessibility/test/node/helpers");
+
+const Badge = require("devtools/client/accessibility/components/Badge");
+const Badges = createFactory(
+ require("devtools/client/accessibility/components/Badges")
+);
+const ContrastBadge = require("devtools/client/accessibility/components/ContrastBadge");
+
+const {
+ accessibility: { SCORES },
+} = require("devtools/shared/constants");
+
+describe("Badges component:", () => {
+ const store = setupStore();
+
+ it("no props render", () => {
+ const wrapper = mount(Provider({ store }, Badges()));
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("null checks render", () => {
+ const wrapper = mount(Provider({ store }, Badges({ checks: null })));
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("empty checks render", () => {
+ const wrapper = mount(Provider({ store }, Badges({ checks: {} })));
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("unsupported checks render", () => {
+ const wrapper = mount(Provider({ store }, Badges({ checks: { tbd: {} } })));
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("contrast ratio success render", () => {
+ const wrapper = mount(
+ Provider(
+ { store },
+ Badges({
+ checks: {
+ CONTRAST: {
+ value: 5.11,
+ color: [255, 0, 0, 1],
+ backgroundColor: [255, 255, 255, 1],
+ isLargeText: false,
+ score: SCORES.AA,
+ },
+ },
+ })
+ )
+ );
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("contrast ratio fail render", () => {
+ const CONTRAST = {
+ value: 3.1,
+ color: [255, 0, 0, 1],
+ backgroundColor: [255, 255, 255, 1],
+ isLargeText: false,
+ score: SCORES.FAIL,
+ };
+ const wrapper = mount(
+ Provider({ store }, Badges({ checks: { CONTRAST } }))
+ );
+
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.find(Badge).length).toBe(1);
+ expect(wrapper.find(ContrastBadge).length).toBe(1);
+ expect(
+ wrapper
+ .find(ContrastBadge)
+ .first()
+ .props()
+ ).toMatchObject(CONTRAST);
+ });
+
+ it("contrast ratio fail range render", () => {
+ const CONTRAST = {
+ min: 1.19,
+ max: 1.39,
+ color: [128, 128, 128, 1],
+ backgroundColorMin: [219, 106, 116, 1],
+ backgroundColorMax: [156, 145, 211, 1],
+ isLargeText: false,
+ score: SCORES.FAIL,
+ };
+ const wrapper = mount(
+ Provider({ store }, Badges({ checks: { CONTRAST } }))
+ );
+
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.find(Badge).length).toBe(1);
+ expect(wrapper.find(ContrastBadge).length).toBe(1);
+ expect(
+ wrapper
+ .find(ContrastBadge)
+ .first()
+ .props()
+ ).toMatchObject(CONTRAST);
+ });
+});