aboutsummaryrefslogtreecommitdiff
path: root/test/settings/components/ui/TextArea.test.tsx
blob: 84c0c93c0c4c637276c18fc6406d64aea44bbd70 (plain) (blame)
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
/**
 * @jest-environment jsdom
 */

import React from "react";
import ReactDOM from "react-dom";
import ReactTestUtils from "react-dom/test-utils";
import TextArea from "../../../../src/settings/components/ui/TextArea";
import { expect } from "chai";

describe("settings/ui/TextArea", () => {
  let container: HTMLDivElement;

  beforeEach(() => {
    container = document.createElement("div");
    document.body.appendChild(container);
  });

  afterEach(() => {
    document.body.removeChild(container);
  });

  it("renders textarea", () => {
    ReactTestUtils.act(() => {
      ReactDOM.render(
        <TextArea
          name="myname"
          label="myfield"
          value="myvalue"
          error="myerror"
        />,
        container
      );
    });

    const label = document.querySelector("label")!;
    const textarea = document.querySelector("textarea")!;
    const error = document.querySelector("[role=alert]")!;
    expect(label.textContent).to.contain("myfield");
    expect(textarea.nodeName).to.contain("TEXTAREA");
    expect(textarea.name).to.contain("myname");
    expect(textarea.value).to.contain("myvalue");
    expect(error.textContent).to.contain("myerror");
  });

  it("invoke onChange", (done) => {
    ReactTestUtils.act(() => {
      ReactDOM.render(
        <TextArea
          name="myname"
          label="myfield"
          value="myvalue"
          onChange={(e) => {
            expect((e.target as HTMLTextAreaElement).value).to.equal(
              "newvalue"
            );
            done();
          }}
        />,
        container
      );
    });

    const input = document.querySelector("textarea")!;
    input.value = "newvalue";
    ReactTestUtils.Simulate.change(input);
  });
});