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

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

import InstalledOAuthApp from 'components/integrations/components/installed_oauth_app.jsx';

describe('components/integrations/InstalledOAuthApp', () => {
    const emptyFunction = jest.fn();
    const app = {
        id: 'facxd9wpzpbpfp8pad78xj75pr',
        name: 'testApp',
        client_secret: '88cxd9wpzpbpfp8pad78xj75pr',
        create_at: 1501365458934,
        creator_id: '88oybd1dwfdoxpkpw1h5kpbyco',
        description: 'testing',
        homepage: 'https://test.com',
        icon_url: 'https://test.com/icon',
        is_trusted: true,
        update_at: 1501365458934,
        callback_urls: ['https://test.com/callback', 'https://test.com/callback2']
    };

    test('should match snapshot', () => {
        const wrapper = shallow(
            <InstalledOAuthApp
                oauthApp={app}
                onRegenerateSecret={emptyFunction}
                onDelete={emptyFunction}
                filter={''}
            />
        );
        expect(wrapper).toMatchSnapshot();
    });

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

        const wrapper = shallow(
            <InstalledOAuthApp
                oauthApp={app}
                onRegenerateSecret={onRegenerateSecret}
                onDelete={emptyFunction}
                filter={''}
            />
        );
        wrapper.find('div.item-actions a').at(1).simulate('click', {preventDefault() {
            return jest.fn();
        }});
        expect(onRegenerateSecret).toBeCalled();
    });

    test('should filter out OAuthApp', () => {
        const wrapper = shallow(
            <InstalledOAuthApp
                oauthApp={app}
                onRegenerateSecret={emptyFunction}
                onDelete={emptyFunction}
                filter={'filter'}
            />
        );
        expect(wrapper).toMatchSnapshot();
    });
});