mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
86 lines
2.7 KiB
JavaScript
86 lines
2.7 KiB
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var assert = require('assert');
|
|
import TestHelper from './test_helper.jsx';
|
|
|
|
describe('Client.General', function() {
|
|
this.timeout(10000);
|
|
|
|
it('General.getClientConfig', function(done) {
|
|
TestHelper.initBasic(() => {
|
|
TestHelper.basicClient().getClientConfig(
|
|
function(data) {
|
|
assert.equal(data.SiteName, 'Mattermost');
|
|
done();
|
|
},
|
|
function(err) {
|
|
done(new Error(err.message));
|
|
}
|
|
);
|
|
});
|
|
});
|
|
|
|
it('General.getPing', function(done) {
|
|
TestHelper.initBasic(() => {
|
|
TestHelper.basicClient().getPing(
|
|
function(data) {
|
|
assert.equal(data.version.length > 0, true);
|
|
done();
|
|
},
|
|
function(err) {
|
|
done(new Error(err.message));
|
|
}
|
|
);
|
|
});
|
|
});
|
|
|
|
it('General.logClientError', function(done) {
|
|
TestHelper.initBasic(() => {
|
|
var config = {};
|
|
config.site_name = 'test';
|
|
TestHelper.basicClient().logClientError('this is a test');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('File.getFileInfo', function(done) {
|
|
TestHelper.initBasic(() => {
|
|
TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
|
|
|
|
TestHelper.basicClient().getFileInfo(
|
|
`/${TestHelper.basicChannel().id}/${TestHelper.basicUser().id}/filename.txt`,
|
|
function(data) {
|
|
assert.equal(data.filename, 'filename.txt');
|
|
done();
|
|
},
|
|
function(err) {
|
|
done(new Error(err.message));
|
|
}
|
|
);
|
|
});
|
|
});
|
|
|
|
it('File.getPublicLink', function(done) {
|
|
TestHelper.initBasic(() => {
|
|
TestHelper.basicClient().enableLogErrorsToConsole(false); // Disabling since this unit test causes an error
|
|
var data = {};
|
|
data.channel_id = TestHelper.basicChannel().id;
|
|
data.user_id = TestHelper.basicUser().id;
|
|
data.filename = `/${TestHelper.basicChannel().id}/${TestHelper.basicUser().id}/filename.txt`;
|
|
|
|
TestHelper.basicClient().getPublicLink(
|
|
data,
|
|
function() {
|
|
done(new Error('not enabled'));
|
|
},
|
|
function(err) {
|
|
assert.equal(err.id, 'api.file.get_public_link.disabled.app_error');
|
|
done();
|
|
}
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|