umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
42 lines (39 loc) • 1.37 kB
text/typescript
import CommandBase from './commandBase';
import { JsonHelper } from '../../helpers/jsonHelper';
/**
* This will set the currently logged in Users language
*
* @param language The iso code for the language you want
* @returns The JSON data in the body of the response as an object
*/
export default class UmbracoSetCurrentUserLanguage extends CommandBase {
_commandName = 'umbracoSetCurrentUserLanguage';
method(language) {
const cy = this.cy;
cy.getCookie('UMB-XSRF-TOKEN', { log: false }).then((token) => {
cy.request({
method: 'GET',
url: this._relativeBackOfficePath + '/backoffice/umbracoapi/authentication/GetCurrentUser',
followRedirect: true,
headers: {
Accept: 'application/json',
'X-UMB-XSRF-TOKEN': token.value,
},
log: false,
}).then((response) => {
const searchBody = JsonHelper.getBody(response);
return cy.umbracoApiRequest(this.relativeBackOfficePath + '/backoffice/umbracoapi/users/PostSaveUser', 'POST', {
id: searchBody.id,
parentId: -1,
name: searchBody.name,
username: searchBody.email,
culture: language,
email: searchBody.email,
startContentIds: [],
startMediaIds: [],
userGroups: searchBody.userGroups,
});
});
});
}
}