summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client/client_oauth.test.jsx
blob: acf35f18f9e5839b9fc24a9754caa3bac199831d (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
// 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.OAuth', function() {
    test('registerOAuthApp', function(done) {
        TestHelper.initBasic(done, () => {
            TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error

            var app = {};
            app.name = 'test';
            app.homepage = 'homepage';
            app.description = 'desc';
            app.callback_urls = '';

            TestHelper.basicClient().registerOAuthApp(
                app,
                function() {
                    done.fail(new Error('not enabled'));
                },
                function(err) {
                    expect(err.id).toBe('api.oauth.register_oauth_app.turn_off.app_error');
                    done();
                }
            );
        });
    });

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

            TestHelper.basicClient().allowOAuth2(
                'GET',
                '123456',
                'http://nowhere.com',
                'state',
                'scope',
                function() {
                    done.fail(new Error('not enabled'));
                },
                function(err) {
                    expect(err.id).toBe('api.oauth.allow_oauth.turn_off.app_error');
                    done();
                }
            );
        });
    });
});