summaryrefslogtreecommitdiffstats
path: root/devtools/client/accessibility/test/node/components/audit-filter.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/accessibility/test/node/components/audit-filter.test.js')
-rw-r--r--devtools/client/accessibility/test/node/components/audit-filter.test.js153
1 files changed, 153 insertions, 0 deletions
diff --git a/devtools/client/accessibility/test/node/components/audit-filter.test.js b/devtools/client/accessibility/test/node/components/audit-filter.test.js
new file mode 100644
index 0000000000..a38efa12ae
--- /dev/null
+++ b/devtools/client/accessibility/test/node/components/audit-filter.test.js
@@ -0,0 +1,153 @@
+/* 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("resource://devtools/client/shared/vendor/react.js");
+const {
+ span,
+} = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
+const Provider = createFactory(
+ require("resource://devtools/client/shared/vendor/react-redux.js").Provider
+);
+
+const ConnectedAuditFilterClass = require("resource://devtools/client/accessibility/components/AuditFilter.js");
+const AuditFilterClass = ConnectedAuditFilterClass.WrappedComponent;
+const AuditFilter = createFactory(ConnectedAuditFilterClass);
+const {
+ setupStore,
+} = require("resource://devtools/client/accessibility/test/node/helpers.js");
+const {
+ FILTERS,
+} = require("resource://devtools/client/accessibility/constants.js");
+
+const {
+ accessibility: { SCORES },
+} = require("resource://devtools/shared/constants.js");
+
+describe("AuditController component:", () => {
+ it("audit filter not filtered", () => {
+ const store = setupStore();
+
+ const wrapper = mount(Provider({ store }, AuditFilter({}, span())));
+ expect(wrapper.html()).toMatchSnapshot();
+
+ const filter = wrapper.find(AuditFilterClass);
+ expect(filter.children().length).toBe(1);
+ expect(filter.childAt(0).is("span")).toBe(true);
+ });
+
+ it("audit filter filtered no checks", () => {
+ const store = setupStore({
+ preloadedState: { audit: { filters: { [FILTERS.CONTRAST]: true } } },
+ });
+
+ const wrapper = mount(Provider({ store }, AuditFilter({}, span())));
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("audit filter filtered unknown checks", () => {
+ const store = setupStore({
+ preloadedState: { audit: { filters: { tbd: true } } },
+ });
+
+ const wrapper = mount(Provider({ store }, AuditFilter({}, span())));
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("audit filter filtered contrast checks success", () => {
+ const store = setupStore({
+ preloadedState: { audit: { filters: { [FILTERS.CONTRAST]: true } } },
+ });
+
+ const wrapper = mount(
+ Provider(
+ { store },
+ AuditFilter(
+ {
+ checks: {
+ CONTRAST: {
+ value: 5.11,
+ color: [255, 0, 0, 1],
+ backgroundColor: [255, 255, 255, 1],
+ isLargeText: false,
+ score: SCORES.AA,
+ },
+ },
+ },
+ span()
+ )
+ )
+ );
+ expect(wrapper.html()).toMatchSnapshot();
+ expect(wrapper.isEmptyRender()).toBe(true);
+ });
+
+ it("audit filter filtered contrast checks fail", () => {
+ const store = setupStore({
+ preloadedState: { audit: { filters: { [FILTERS.CONTRAST]: true } } },
+ });
+
+ 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 },
+ AuditFilter(
+ {
+ checks: { CONTRAST },
+ },
+ span()
+ )
+ )
+ );
+ expect(wrapper.html()).toMatchSnapshot();
+ const filter = wrapper.find(AuditFilterClass);
+ expect(filter.children().length).toBe(1);
+ expect(filter.childAt(0).is("span")).toBe(true);
+ });
+
+ it("audit filter filtered contrast checks fail range", () => {
+ const store = setupStore({
+ preloadedState: { audit: { filters: { [FILTERS.CONTRAST]: true } } },
+ });
+
+ 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 },
+ AuditFilter(
+ {
+ checks: { CONTRAST },
+ },
+ span()
+ )
+ )
+ );
+ expect(wrapper.html()).toMatchSnapshot();
+ const filter = wrapper.find(AuditFilterClass);
+ expect(filter.children().length).toBe(1);
+ expect(filter.childAt(0).is("span")).toBe(true);
+ });
+});