-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56c97e1
commit b74bed3
Showing
1 changed file
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,57 @@ context('Users', () => { | |
|
||
}); | ||
|
||
}); | ||
it('Update user', () => { | ||
// Set userdata | ||
const name = "Alice Bobson"; | ||
const email = "[email protected]"; | ||
const startContentIds = []; | ||
const startMediaIds = []; | ||
const userGroups = ["admin"]; | ||
|
||
var userData = | ||
{ | ||
"id": -1, | ||
"parentId": -1, | ||
"name": name, | ||
"username": email, | ||
"culture": "en-US", | ||
"email": email, | ||
"startContentIds": startContentIds, | ||
"startMediaIds": startMediaIds, | ||
"userGroups": userGroups, | ||
"message": "" | ||
}; | ||
|
||
// Ensure user doesn't exist | ||
cy.umbracoEnsureUserEmailNotExists(email); | ||
|
||
// Create user through API | ||
cy.getCookie('UMB-XSRF-TOKEN', { log: false }).then((token) => { | ||
cy.request({ | ||
method: 'POST', | ||
url: '/umbraco/backoffice/umbracoapi/users/PostCreateUser', | ||
followRedirect: true, | ||
headers: { | ||
Accept: 'application/json', | ||
'X-UMB-XSRF-TOKEN': token.value, | ||
}, | ||
body: userData, | ||
log: false, | ||
}).then((response) => { | ||
return; | ||
}); | ||
}); | ||
|
||
// Go to the user and edit their name | ||
cy.umbracoSection('users'); | ||
cy.get('.umb-user-card__name').contains(name).click(); | ||
cy.get('#headerName').type('{movetoend}son'); | ||
cy.umbracoButtonByLabelKey('buttons_save').click(); | ||
|
||
// assert save succeeds | ||
cy.umbracoSuccessNotification().should('be.visible'); | ||
cy.umbracoEnsureUserEmailNotExists(email); | ||
}) | ||
|
||
}); |