summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client/client_command.test.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-06-26 08:16:57 -0400
committerGitHub <noreply@github.com>2017-06-26 08:16:57 -0400
commit23ccfc845ca2350075f6027e16c6206fc7b71716 (patch)
tree3fd1f896a5a24b43913be03b21c85638dd7c356e /webapp/tests/client/client_command.test.jsx
parentfe7e9d95b30ae2195fcba68db960866db91ce045 (diff)
downloadchat-23ccfc845ca2350075f6027e16c6206fc7b71716.tar.gz
chat-23ccfc845ca2350075f6027e16c6206fc7b71716.tar.bz2
chat-23ccfc845ca2350075f6027e16c6206fc7b71716.zip
Move remaining actions over to use redux and v4 endpoints (#6720)
Diffstat (limited to 'webapp/tests/client/client_command.test.jsx')
-rw-r--r--webapp/tests/client/client_command.test.jsx142
1 files changed, 0 insertions, 142 deletions
diff --git a/webapp/tests/client/client_command.test.jsx b/webapp/tests/client/client_command.test.jsx
deleted file mode 100644
index 160f61ba8..000000000
--- a/webapp/tests/client/client_command.test.jsx
+++ /dev/null
@@ -1,142 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import TestHelper from 'tests/helpers/client-test-helper.jsx';
-
-describe('Client.Commands', function() {
- test('listCommands', function(done) {
- TestHelper.initBasic(done, () => {
- TestHelper.basicClient().listCommands(
- function(data) {
- expect(data.length).toBeGreaterThan(0);
- done();
- },
- function(err) {
- done.fail(new Error(err.message));
- }
- );
- });
- });
-
- test('listTeamCommands', function(done) {
- TestHelper.initBasic(done, () => {
- TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
- TestHelper.basicClient().listTeamCommands(
- function() {
- done.fail(new Error('cmds not enabled'));
- },
- function(err) {
- expect(err.id).toEqual('api.command.disabled.app_error');
- done();
- }
- );
- });
- });
-
- test('executeCommand', function(done) {
- TestHelper.initBasic(done, () => {
- const args = {};
- args.channel_id = TestHelper.basicChannel().id;
- TestHelper.basicClient().executeCommand(
- '/shrug',
- args,
- function(data) {
- expect(data.response_type).toEqual('in_channel');
- done();
- },
- function(err) {
- done.fail(new Error(err.message));
- }
- );
- });
- });
-
- test('addCommand', function(done) {
- TestHelper.initBasic(done, () => {
- 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.fail(new Error('cmds not enabled'));
- },
- function(err) {
- expect(err.id).toEqual('api.command.disabled.app_error');
- done();
- }
- );
- });
- });
-
- test('editCommand', function(done) {
- TestHelper.initBasic(done, () => {
- 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().editCommand(
- cmd,
- function() {
- done.fail(new Error('cmds not enabled'));
- },
- function(err) {
- expect(err.id).toEqual('api.command.disabled.app_error');
- done();
- }
- );
- });
- });
-
- test('deleteCommand', function(done) {
- TestHelper.initBasic(done, () => {
- TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
- TestHelper.basicClient().deleteCommand(
- TestHelper.generateId(),
- function() {
- done.fail(new Error('cmds not enabled'));
- },
- function(err) {
- expect(err.id).toEqual('api.command.disabled.app_error');
- done();
- }
- );
- });
- });
-
- test('regenCommandToken', function(done) {
- TestHelper.initBasic(done, () => {
- TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
- TestHelper.basicClient().regenCommandToken(
- TestHelper.generateId(),
- function() {
- done.fail(new Error('cmds not enabled'));
- },
- function(err) {
- expect(err.id).toEqual('api.command.disabled.app_error');
- done();
- }
- );
- });
- });
-});
-