aboutsummaryrefslogtreecommitdiff
path: root/test/settings/components/form/BlacklistForm.test.tsx
blob: 6c329ff6c53d150e35d12b7c2dd10940a946206c (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
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
import React from 'react';
import ReactDOM from 'react-dom';
import ReactTestRenderer from 'react-test-renderer';
import ReactTestUtils from 'react-dom/test-utils';
import { expect } from 'chai'

import BlacklistForm from '../../../../src/settings/components/form/BlacklistForm'
import Blacklist from '../../../../src/shared/settings/Blacklist';

describe("settings/form/BlacklistForm", () => {
  describe('render', () => {
    it('renders BlacklistForm', () => {
      const root = ReactTestRenderer.create(
        <BlacklistForm value={Blacklist.fromJSON(['*.slack.com', 'www.google.com/maps'])} />,
      ).root;

      const children = root.children[0].children;
      expect(children).to.have.lengthOf(3);
      expect(children[0].children[0].props.value).to.equal('*.slack.com');
      expect(children[1].children[0].props.value).to.equal('www.google.com/maps');
      expect(children[2].props.name).to.equal('add');
    });

    it('renders blank value', () => {
      const root = ReactTestRenderer.create(<BlacklistForm />).root;

      const children = root.children[0].children;
      expect(children).to.have.lengthOf(1);
      expect(children[0].props.name).to.equal('add');
    });
  });

  describe('onChange', () => {
    let container;

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

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

    it('invokes onChange event on edit', (done) => {
      ReactTestUtils.act(() => {
        ReactDOM.render(<BlacklistForm
          value={Blacklist.fromJSON(['*.slack.com', 'www.google.com/maps*'])}
          onChange={value => {
            const urls = value.items.map(item => item.pattern);
            expect(urls).to.have.members(['gitter.im', 'www.google.com/maps*']);
            done();
          }}
        />, container)
      });

      const input = document.querySelectorAll('input[type=text]')[0];
      input.value = 'gitter.im';
      ReactTestUtils.Simulate.change(input);
    });

    it('invokes onChange event on delete', (done) => {
      ReactTestUtils.act(() => {
        ReactDOM.render(<BlacklistForm
          value={Blacklist.fromJSON(['*.slack.com', 'www.google.com/maps*'])}
          onChange={value => {
            const urls = value.items.map(item => item.pattern);
            expect(urls).to.have.members(['www.google.com/maps*']);
            done();
          }}
        />, container)
      });

      const button = document.querySelectorAll('input[type=button]')[0];
      ReactTestUtils.Simulate.click(button);
    });

    it('invokes onChange event on add', (done) => {
      ReactTestUtils.act(() => {
        ReactDOM.render(<BlacklistForm
          value={Blacklist.fromJSON(['*.slack.com'])}
          onChange={value => {
            const urls = value.items.map(item => item.pattern);
            expect(urls).to.have.members(['*.slack.com', '']);
            done();
          }}
        />, container);
      });

      const button = document.querySelector('input[type=button].ui-add-button');
      ReactTestUtils.Simulate.click(button);
    });
  });
});