From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- .../test/node/components/badges.test.js | 122 +++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 devtools/client/accessibility/test/node/components/badges.test.js (limited to 'devtools/client/accessibility/test/node/components/badges.test.js') 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); + }); +}); -- cgit v1.2.3