summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/add_oauth_app.test.jsx
blob: 11e743ff515732843735378b74c742f1d723854b (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
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';
import {shallow} from 'enzyme';

import AddOAuthApp from 'components/integrations/components/add_oauth_app/add_oauth_app.jsx';

describe('components/integrations/AddOAuthApp', () => {
    const emptyFunction = jest.fn();
    const team = {
        id: 'dbcxd9wpzpbpfp8pad78xj12pr',
        name: 'test'
    };

    test('should match snapshot', () => {
        const wrapper = shallow(
            <AddOAuthApp
                team={team}
                addOAuthAppRequest={{
                    status: 'not_started',
                    error: null
                }}
                actions={{addOAuthApp: emptyFunction}}
            />
        );

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

    test('should match snapshot, displays client error', () => {
        const wrapper = shallow(
            <AddOAuthApp
                team={team}
                addOAuthAppRequest={{
                    status: 'not_started',
                    error: null
                }}
                actions={{addOAuthApp: emptyFunction}}
            />
        );

        wrapper.find('.btn-primary').simulate('click', {preventDefault() {
            return jest.fn();
        }});

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

    test('should call addOAuthApp function', () => {
        const addOAuthApp = jest.genMockFunction().mockImplementation(
            () => {
                return new Promise((resolve) => {
                    process.nextTick(() => resolve());
                });
            }
        );

        const wrapper = shallow(
            <AddOAuthApp
                team={team}
                addOAuthAppRequest={{
                    status: 'not_started',
                    error: null
                }}
                actions={{addOAuthApp}}
            />
        );

        wrapper.find('#name').simulate('change', {target: {value: 'name'}});
        wrapper.find('#description').simulate('change', {target: {value: 'description'}});
        wrapper.find('#homepage').simulate('change', {target: {value: 'http://test.com'}});
        wrapper.find('#callbackUrls').simulate('change', {target: {value: 'http://callback.com'}});

        wrapper.find('.btn-primary').simulate('click', {preventDefault() {
            return jest.fn();
        }});

        expect(addOAuthApp).toBeCalled();
    });
});