summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/test/node/components/reps/document-type.test.js
blob: f4709c6d5d7c8c60199ca22eadc292cf57a104f7 (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
/* 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 { shallow } = require("enzyme");
const {
  REPS,
  getRep,
} = require("resource://devtools/client/shared/components/reps/reps/rep.js");

const {
  expectActorAttribute,
} = require("resource://devtools/client/shared/components/test/node/components/reps/test-helpers.js");

const { DocumentType } = REPS;
const stubs = require("resource://devtools/client/shared/components/test/node/stubs/reps/document-type.js");

describe("DocumentType", () => {
  const stub = stubs.get("html");
  it("correctly selects DocumentType Rep", () => {
    expect(getRep(stub)).toBe(DocumentType.rep);
  });

  it("renders with expected text content on html doctype", () => {
    const renderedComponent = shallow(
      DocumentType.rep({
        object: stub,
        shouldRenderTooltip: true,
      })
    );

    expect(renderedComponent.text()).toEqual("<!DOCTYPE html>");
    expect(renderedComponent.prop("title")).toEqual("<!DOCTYPE html>");
    expectActorAttribute(renderedComponent, stub.actor);
  });

  it("renders with expected text content on empty doctype", () => {
    const unnamedStub = stubs.get("unnamed");
    const renderedComponent = shallow(
      DocumentType.rep({
        object: unnamedStub,
        shouldRenderTooltip: true,
      })
    );
    expect(renderedComponent.text()).toEqual("<!DOCTYPE>");
    expect(renderedComponent.prop("title")).toEqual("<!DOCTYPE>");
    expectActorAttribute(renderedComponent, unnamedStub.actor);
  });
});