summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client_command.test.jsx
blob: f7f0d2b25fef032564952ae37d30085ce6179a79 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

/* eslint-disable no-console */
/* eslint-disable global-require */
/* eslint-disable func-names */
/* eslint-disable prefer-arrow-callback */
/* eslint-disable no-magic-numbers */
/* eslint-disable no-unreachable */

import assert from 'assert';
import TestHelper from './test_helper.jsx';

describe('Client.Commands', function() {
    this.timeout(100000);

    it('listCommands', function(done) {
        TestHelper.initBasic(() => {
            TestHelper.basicClient().listCommands(
                function(data) {
                    assert.equal(data.length > 0, true);
                    done();
                },
                function(err) {
                    done(new Error(err.message));
                }
            );
        });
    });

    it('listTeamCommands', function(done) {
        TestHelper.initBasic(() => {
            TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
            TestHelper.basicClient().listTeamCommands(
                function() {
                    done(new Error('cmds not enabled'));
                },
                function(err) {
                    assert.equal(err.id, 'api.command.disabled.app_error');
                    done();
                }
            );
        });
    });

    it('executeCommand', function(done) {
        TestHelper.initBasic(() => {
            TestHelper.basicClient().executeCommand(
                TestHelper.basicChannel().id,
                '/shrug',
                null,
                function(data) {
                    assert.equal(data.response_type, 'in_channel');
                    done();
                },
                function(err) {
                    done(new Error(err.message));
                }
            );
        });
    });

    it('addCommand', function(done) {
        TestHelper.initBasic(() => {
            TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error

            var cmd = {};
            cmd.url = 'http://www.gonowhere.com';
            cmd.trigger = '/hello';
            cmd.method = 'P';
            cmd.username = '';
            cmd.icon_url = '';
            cmd.auto_complete = false;
            cmd.auto_complete_desc = '';
            cmd.auto_complete_hint = '';
            cmd.display_name = 'Unit Test';

            TestHelper.basicClient().addCommand(
                cmd,
                function() {
                    done(new Error('cmds not enabled'));
                },
                function(err) {
                    assert.equal(err.id, 'api.command.disabled.app_error');
                    done();
                }
            );
        });
    });

    it('deleteCommand', function(done) {
        TestHelper.initBasic(() => {
            TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
            TestHelper.basicClient().deleteCommand(
                TestHelper.generateId(),
                function() {
                    done(new Error('cmds not enabled'));
                },
                function(err) {
                    assert.equal(err.id, 'api.command.disabled.app_error');
                    done();
                }
            );
        });
    });

    it('regenCommandToken', function(done) {
        TestHelper.initBasic(() => {
            TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
            TestHelper.basicClient().regenCommandToken(
                TestHelper.generateId(),
                function() {
                    done(new Error('cmds not enabled'));
                },
                function(err) {
                    assert.equal(err.id, 'api.command.disabled.app_error');
                    done();
                }
            );
        });
    });
});