1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* 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 AuditController = createFactory(
require("resource://devtools/client/accessibility/components/AuditController.js")
);
const {
mockAccessible,
} = require("resource://devtools/client/accessibility/test/node/helpers.js");
describe("AuditController component:", () => {
it("dead accessible actor", () => {
const accessibleFront = mockAccessible();
const wrapper = mount(
AuditController(
{
accessibleFront,
},
span()
)
);
expect(wrapper.html()).toMatchSnapshot();
expect(wrapper.find("span").length).toBe(1);
expect(wrapper.find("span").first().props()).toMatchObject({
checks: undefined,
});
const instance = wrapper.instance();
expect(accessibleFront.on.mock.calls.length).toBe(1);
expect(accessibleFront.off.mock.calls.length).toBe(1);
expect(accessibleFront.on.mock.calls[0]).toEqual([
"audited",
instance.onAudited,
]);
expect(accessibleFront.off.mock.calls[0]).toEqual([
"audited",
instance.onAudited,
]);
});
it("accessible without checks", () => {
const accessibleFront = mockAccessible({
actorID: "1",
});
const wrapper = mount(
AuditController(
{
accessibleFront,
},
span()
)
);
expect(wrapper.html()).toMatchSnapshot();
expect(accessibleFront.audit.mock.calls.length).toBe(1);
expect(accessibleFront.on.mock.calls.length).toBe(1);
expect(accessibleFront.off.mock.calls.length).toBe(0);
});
it("accessible with checks", () => {
const checks = { foo: "bar" };
const accessibleFront = mockAccessible({
actorID: "1",
checks,
});
const wrapper = mount(
AuditController(
{
accessibleFront,
},
span({ className: "child" })
)
);
expect(wrapper.html()).toMatchSnapshot();
expect(wrapper.state("checks")).toMatchObject(checks);
expect(wrapper.find(".child").prop("checks")).toMatchObject(checks);
});
});
|