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

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

import Constants from 'utils/constants.jsx';

import NewChannelModal from 'components/new_channel_modal/new_channel_modal.jsx';

describe('components/NewChannelModal', () => {
    afterEach(() => {
        global.window.mm_config = null;
        global.window.mm_license = null;
    });

    test('should match snapshot, modal not showing', () => {
        function emptyFunction() {} //eslint-disable-line no-empty-function

        global.window.mm_license = {};
        global.window.mm_license.IsLicensed = 'false';

        const wrapper = shallow(
            <NewChannelModal
                show={true}
                channelType={Constants.OPEN_CHANNEL}
                channelData={{name: 'testchannel', displayName: 'testchannel', header: '', purpose: ''}}
                onSubmitChannel={emptyFunction}
                onModalDismissed={emptyFunction}
                onTypeSwitched={emptyFunction}
                onChangeURLPressed={emptyFunction}
                onDataChanged={emptyFunction}
            />
        );
        expect(wrapper).toMatchSnapshot();
    });

    test('should match snapshot, modal showing', () => {
        function emptyFunction() {} //eslint-disable-line no-empty-function

        global.window.mm_license = {};
        global.window.mm_license.IsLicensed = 'false';

        const wrapper = shallow(
            <NewChannelModal
                show={true}
                channelType={Constants.OPEN_CHANNEL}
                channelData={{name: 'testchannel', displayName: 'testchannel', header: '', purpose: ''}}
                onSubmitChannel={emptyFunction}
                onModalDismissed={emptyFunction}
                onTypeSwitched={emptyFunction}
                onChangeURLPressed={emptyFunction}
                onDataChanged={emptyFunction}
            />
        );
        expect(wrapper).toMatchSnapshot();
    });

    test('should match snapshot, private channel filled in header and purpose', () => {
        function emptyFunction() {} //eslint-disable-line no-empty-function

        global.window.mm_license = {};
        global.window.mm_license.IsLicensed = 'false';

        const wrapper = shallow(
            <NewChannelModal
                show={true}
                channelType={Constants.PRIVATE_CHANNEL}
                channelData={{name: 'testchannel', displayName: 'testchannel', header: 'some header', purpose: 'some purpose'}}
                onSubmitChannel={emptyFunction}
                onModalDismissed={emptyFunction}
                onTypeSwitched={emptyFunction}
                onChangeURLPressed={emptyFunction}
                onDataChanged={emptyFunction}
            />
        );
        expect(wrapper).toMatchSnapshot();
    });
});