aboutsummaryrefslogtreecommitdiff
path: root/test/settings/components/ui/input.test.jsx
blob: 0711bba2539d5483e3b62c8130c0528656f22df1 (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
import { h, render } from 'preact';
import Input from 'settings/components/ui/input'

describe("settings/ui/Input", () => {
  beforeEach(() => {
    document.body.innerHTML = '';
  });

  context("type=text", () => {
    it('renders text input', () => {
      render(<Input type='text' name='myname' label='myfield' value='myvalue'/>, document.body)

      let label = document.querySelector('label');
      let input = document.querySelector('input');
      expect(label.textContent).to.contain('myfield');
      expect(input.type).to.contain('text');
      expect(input.name).to.contain('myname');
      expect(input.value).to.contain('myvalue');
    });

    it('invoke onChange', (done) => {
      render(<Input type='text' name='myname' label='myfield' value='myvalue' onChange={(e) => {
        expect(e.target.value).to.equal('newvalue');
        done();
      }}/>, document.body);

      let input = document.querySelector('input');
      input.value = 'newvalue';
      input.dispatchEvent(new Event('change'))
    });
  });

  context("type=radio", () => {
    it('renders radio button', () => {
      render(<Input type='radio' name='myname' label='myfield' value='myvalue'/>, document.body)

      let label = document.querySelector('label');
      let input = document.querySelector('input');
      expect(label.textContent).to.contain('myfield');
      expect(input.type).to.contain('radio');
      expect(input.name).to.contain('myname');
      expect(input.value).to.contain('myvalue');
    });

    it('invoke onChange', (done) => {
      render(<Input type='text' name='radio' label='myfield' value='myvalue' onChange={(e) => {
        expect(e.target.checked).to.be.true;
        done();
      }}/>, document.body);

      let input = document.querySelector('input');
      input.checked = true;
      input.dispatchEvent(new Event('change'))
    });
  });

  context("type=textarea", () => {
    it('renders textarea button', () => {
      render(<Input type='textarea' name='myname' label='myfield' value='myvalue' error='myerror' />, document.body)

      let label = document.querySelector('label');
      let textarea = document.querySelector('textarea');
      let error = document.querySelector('.settings-ui-input-error');
      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) => {
      render(<Input type='textarea' name='myname' label='myfield' value='myvalue' onChange={(e) => {
        expect(e.target.value).to.equal('newvalue');
        done();
      }}/>, document.body);

      let input = document.querySelector('textarea');
      input.value = 'newvalue'
      input.dispatchEvent(new Event('change'))
    });
  });
});