* E2E for LDAP login * add LDAP test and sync * update per comment * add api commands to ensure LDAP user has team * clean up * clean up file check * update per comment
68 lines
2 KiB
JavaScript
68 lines
2 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import jestExpect from 'expect';
|
|
|
|
import client from './client';
|
|
import {getResponseFromError} from './common';
|
|
|
|
// ****************************************************************
|
|
// LDAP
|
|
// See https://api.mattermost.com/#tag/LDAP
|
|
//
|
|
// Exported API function should have the following:
|
|
// - documented using JSDoc
|
|
// - meaningful description
|
|
// - match the referenced API endpoints
|
|
// - parameter/s defined by `@param`
|
|
// - return value defined by `@return`
|
|
// ****************************************************************
|
|
|
|
/**
|
|
* Synchronize any user attribute changes in the configured AD/LDAP server with Mattermost.
|
|
* See https://api.mattermost.com/#tag/LDAP/paths/~1ldap~1sync/post
|
|
* @return {string} returns {status} on success or {error, status} on error
|
|
*/
|
|
export const apiLDAPSync = async () => {
|
|
try {
|
|
const response = await client.post('/api/v4/ldap/sync');
|
|
|
|
return response;
|
|
} catch (err) {
|
|
return getResponseFromError(err);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Test the current AD/LDAP configuration to see if the AD/LDAP server can be contacted successfully.
|
|
* See https://api.mattermost.com/#tag/LDAP/paths/~1ldap~1test/post
|
|
* @return {string} returns {status} on success or {error, status} on error
|
|
*/
|
|
export const apiLDAPTest = async () => {
|
|
try {
|
|
const response = await client.post('/api/v4/ldap/test');
|
|
|
|
return response.data;
|
|
} catch (err) {
|
|
return getResponseFromError(err);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Check that LDAP server can connect and is synchronized with Mattermost server.
|
|
*/
|
|
export const apiRequireLDAPServer = async () => {
|
|
const {error: testError} = await apiLDAPTest();
|
|
jestExpect(testError).toBeUndefined();
|
|
|
|
const {error: syncError} = await apiLDAPSync();
|
|
jestExpect(syncError).toBeUndefined();
|
|
};
|
|
|
|
export const Ldap = {
|
|
apiLDAPSync,
|
|
apiLDAPTest,
|
|
apiRequireLDAPServer,
|
|
};
|
|
|
|
export default Ldap;
|