summaryrefslogtreecommitdiffstats
path: root/devtools/client/application/test/node/components/service-workers/components_application_panel-Worker.test.js
blob: 36a6acda0cfce3d62b4485761d78db1736ac3e6c (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Import libs
const { shallow } = require("enzyme");
const { createFactory } = require("react");
// Import test helpers
const {
  setupStore,
} = require("resource://devtools/client/application/test/node/helpers.js");

const {
  WORKER_RUNNING,
  WORKER_STOPPED,
  WORKER_WAITING,
} = require("resource://devtools/client/application/test/node/fixtures/data/constants.js");

const Worker = createFactory(
  require("resource://devtools/client/application/src/components/service-workers/Worker.js")
);

describe("Worker", () => {
  it("Renders the expected snapshot for a running worker", () => {
    const store = setupStore({});

    const wrapper = shallow(
      Worker({
        isDebugEnabled: true,
        worker: WORKER_RUNNING,
        store,
      })
    ).dive();

    // ensure proper status
    expect(wrapper.find(".js-worker-status").text()).toBe(
      "serviceworker-worker-status-running"
    );
    // check that Start button is not available
    expect(wrapper.find(".js-start-button")).toHaveLength(0);

    expect(wrapper).toMatchSnapshot();
  });

  it("Renders the expected snapshot for a stopped worker", () => {
    const store = setupStore({});

    const wrapper = shallow(
      Worker({
        isDebugEnabled: true,
        worker: WORKER_STOPPED,
        store,
      })
    ).dive();

    // ensure proper status
    expect(wrapper.find(".js-worker-status").text()).toBe(
      "serviceworker-worker-status-stopped"
    );
    // check that Start button is available
    expect(wrapper.find(".js-start-button")).toHaveLength(1);
    // check that inspect link does not exist
    expect(wrapper.find(".js-inspect-link")).toHaveLength(0);

    expect(wrapper).toMatchSnapshot();
  });

  it("Renders the start button even if debugging workers is disabled", () => {
    const store = setupStore({});

    const wrapper = shallow(
      Worker({
        isDebugEnabled: false,
        worker: WORKER_STOPPED,
        store,
      })
    ).dive();

    // ensure proper status
    expect(wrapper.find(".js-worker-status").text()).toBe(
      "serviceworker-worker-status-stopped"
    );
    // check that Start button is available
    expect(wrapper.find(".js-start-button")).toHaveLength(1);
  });

  it("Renders the expected snapshot for a non-active worker", () => {
    const store = setupStore({});

    const wrapper = shallow(
      Worker({
        isDebugEnabled: true,
        worker: WORKER_WAITING,
        store,
      })
    ).dive();

    // ensure proper status
    // NOTE: since non-active status are localized directly in the front, not
    //       in the panel, we don't expect a localization ID here
    expect(wrapper.find(".js-worker-status").text()).toBe("installed");
    // check that Start button is not available
    expect(wrapper.find(".js-start-button")).toHaveLength(0);
    // check that Debug link does not exist
    expect(wrapper.find(".js-inspect-link")).toHaveLength(0);

    expect(wrapper).toMatchSnapshot();
  });
});