summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/unit/aboutwelcome/MultiSelect.test.jsx
blob: cb1ce3651ac4f2d683b9b2388da4e66ea4dc55f5 (plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import React from "react";
import { shallow, mount } from "enzyme";
import { MultiSelect } from "content-src/aboutwelcome/components/MultiSelect";

describe("Multistage AboutWelcome module", () => {
  let sandbox;
  let MULTISELECT_SCREEN_PROPS;
  let setActiveMultiSelect;
  beforeEach(() => {
    sandbox = sinon.createSandbox();
    setActiveMultiSelect = sandbox.stub();
    MULTISELECT_SCREEN_PROPS = {
      id: "multiselect-screen",
      content: {
        position: "split",
        split_narrow_bkg_position: "-60px",
        image_alt_text: {
          string_id: "mr2022-onboarding-default-image-alt",
        },
        background:
          "url('chrome://activity-stream/content/data/content/assets/mr-settodefault.svg') var(--mr-secondary-position) no-repeat var(--mr-screen-background-color)",
        progress_bar: true,
        logo: {},
        title: "Test Title",
        subtitle: "Test SubTitle",
        tiles: {
          type: "multiselect",
          data: [
            {
              id: "checkbox-1",
              defaultValue: true,
              label: {
                string_id: "mr2022-onboarding-set-default-primary-button-label",
              },
              action: {
                type: "SET_DEFAULT_BROWSER",
              },
            },
            {
              id: "checkbox-2",
              defaultValue: true,
              label: "Test Checkbox 2",
              action: {
                type: "SHOW_MIGRATION_WIZARD",
                data: {},
              },
            },
            {
              id: "checkbox-3",
              defaultValue: false,
              label: "Test Checkbox 3",
              action: {
                type: "SHOW_MIGRATION_WIZARD",
                data: {},
              },
            },
          ],
        },
        primary_button: {
          label: "Save and Continue",
          action: {
            type: "MULTI_ACTION",
            collectSelect: true,
            navigate: true,
            data: { actions: [] },
          },
        },
        secondary_button: {
          label: "Skip",
          action: {
            navigate: true,
          },
          has_arrow_icon: true,
        },
      },
    };
  });
  afterEach(() => {
    sandbox.restore();
  });

  describe("MultiSelect component", () => {
    it("should call setActiveMultiSelect with ids of checkboxes with defaultValue true", () => {
      const wrapper = mount(
        <MultiSelect
          setActiveMultiSelect={setActiveMultiSelect}
          {...MULTISELECT_SCREEN_PROPS}
        />
      );

      wrapper.setProps({ activeMultiSelect: null });
      assert.calledOnce(setActiveMultiSelect);
      assert.calledWith(setActiveMultiSelect, ["checkbox-1", "checkbox-2"]);
    });

    it("should use activeMultiSelect ids to set checked state for respective checkbox", () => {
      const wrapper = mount(
        <MultiSelect
          setActiveMultiSelect={setActiveMultiSelect}
          {...MULTISELECT_SCREEN_PROPS}
        />
      );

      wrapper.setProps({ activeMultiSelect: ["checkbox-1", "checkbox-2"] });
      const checkBoxes = wrapper.find(".checkbox-container input");
      assert.strictEqual(checkBoxes.length, 3);

      assert.strictEqual(checkBoxes.first().props().checked, true);
      assert.strictEqual(checkBoxes.at(1).props().checked, true);
      assert.strictEqual(checkBoxes.last().props().checked, false);
    });

    it("should filter out id when checkbox is unchecked", () => {
      const wrapper = shallow(
        <MultiSelect
          setActiveMultiSelect={setActiveMultiSelect}
          {...MULTISELECT_SCREEN_PROPS}
        />
      );
      wrapper.setProps({ activeMultiSelect: ["checkbox-1", "checkbox-2"] });

      const ckbx1 = wrapper.find(".checkbox-container input").at(0);
      assert.strictEqual(ckbx1.prop("value"), "checkbox-1");
      ckbx1.simulate("change", {
        currentTarget: { value: "checkbox-1", checked: false },
      });
      assert.calledWith(setActiveMultiSelect, ["checkbox-2"]);
    });

    it("should add id when checkbox is checked", () => {
      const wrapper = shallow(
        <MultiSelect
          setActiveMultiSelect={setActiveMultiSelect}
          {...MULTISELECT_SCREEN_PROPS}
        />
      );
      wrapper.setProps({ activeMultiSelect: ["checkbox-1", "checkbox-2"] });

      const ckbx3 = wrapper.find(".checkbox-container input").at(2);
      assert.strictEqual(ckbx3.prop("value"), "checkbox-3");
      ckbx3.simulate("change", {
        currentTarget: { value: "checkbox-3", checked: true },
      });
      assert.calledWith(setActiveMultiSelect, [
        "checkbox-1",
        "checkbox-2",
        "checkbox-3",
      ]);
    });
  });
});