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

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

import InstalledOAuthApps from 'components/integrations/components/installed_oauth_apps/installed_oauth_apps.jsx';

describe('components/integrations/InstalledOAuthApps', () => {
    test('should match snapshot', () => {
        const emptyFunction = jest.fn();
        const oauthApps = {
            facxd9wpzpbpfp8pad78xj75pr: {
                id: 'facxd9wpzpbpfp8pad78xj75pr',
                name: 'firstApp',
                client_secret: '88cxd9wpzpbpfp8pad78xj75pr',
                create_at: 1501365458934,
                creator_id: '88oybd1dwfdoxpkpw1h5kpbyco',
                description: 'testing',
                homepage: 'https://test.com',
                icon_url: 'https://test.com/icon',
                is_trusted: false,
                update_at: 1501365458934,
                callback_urls: ['https://test.com/callback']
            },
            fzcxd9wpzpbpfp8pad78xj75pr: {
                id: 'fzcxd9wpzpbpfp8pad78xj75pr',
                name: 'secondApp',
                client_secret: 'decxd9wpzpbpfp8pad78xj75pr',
                create_at: 1501365459984,
                creator_id: '88oybd2dwfdoxpkpw1h5kpbyco',
                description: 'testing2',
                homepage: 'https://test2.com',
                icon_url: 'https://test2.com/icon',
                is_trusted: true,
                update_at: 1501365479988,
                callback_urls: ['https://test2.com/callback', 'https://test2.com/callback2']
            }
        };
        global.window.mm_config = {EnableOAuthServiceProvider: 'true'};

        const wrapper = shallow(
            <InstalledOAuthApps
                team={{name: 'test'}}
                oauthApps={oauthApps}
                isSystemAdmin={true}
                actions={{
                    getOAuthApps: emptyFunction,
                    regenOAuthAppSecret: emptyFunction,
                    deleteOAuthApp: emptyFunction
                }}
            />
        );
        expect(wrapper.find('InstalledOAuthApp').length).toBe(2);
        expect(wrapper).toMatchSnapshot();
    });
});