| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- import { startWith } from './helpers/config'
- import { activateUser, ensureUserExists, login } from './helpers/login'
- import { v4 as uuid } from 'uuid'
- import { createProject } from './helpers/project'
- describe('admin panel', function () {
- describe('in server pro', () => {
- const admin = 'admin@example.com'
- const user1 = 'user@example.com'
- const user2 = 'user2@example.com'
- const testProjectName = `project-${uuid()}`
- let testProjectId = ''
- const deletedProjectName = `deleted-project-${uuid()}`
- let projectToDeleteId = ''
- const findProjectRow = (projectName: string) => {
- cy.log('find project row')
- return cy.findByText(projectName).parent().parent()
- }
- startWith({
- pro: true,
- })
- ensureUserExists({ email: admin, isAdmin: true })
- ensureUserExists({ email: user1 })
- ensureUserExists({ email: user2 })
- before(() => {
- login(user1)
- cy.visit('/project')
- createProject(testProjectName).then(id => (testProjectId = id))
- cy.visit('/project')
- createProject(deletedProjectName).then(id => (projectToDeleteId = id))
- })
- describe('manage site', () => {
- let resumeAdminSession: () => void
- beforeEach(() => {
- resumeAdminSession = login(admin)
- cy.visit('/project')
- cy.get('nav').findByText('Admin').click()
- cy.get('nav').findByText('Manage Site').click()
- })
- it('publish and clear admin messages', () => {
- const message = 'Admin Message ' + uuid()
- cy.log('create system message')
- cy.get('[role="tab"]').contains('System Messages').click()
- cy.get('input[name="content"]').type(message)
- cy.get('button').contains('Post Message').click()
- cy.findByText(message)
- cy.log('wait for system message propagation')
- cy.wait(13000)
- const resumeUser1Session = login(user1)
- cy.visit('/project')
- cy.findByText(message)
- cy.log('clear system messages')
- resumeAdminSession()
- cy.visit('/project')
- cy.get('nav').findByText('Admin').click()
- cy.get('nav').findByText('Manage Site').click()
- cy.get('[role="tab"]').contains('System Messages').click()
- cy.get('button').contains('Clear all messages').click()
- cy.log('verify system messages are no longer displayed')
- resumeUser1Session()
- cy.visit('/project')
- cy.findByText(message).should('not.exist')
- })
- })
- describe('manage users', () => {
- beforeEach(() => {
- login(admin)
- cy.visit('/project')
- cy.get('nav').findByText('Admin').click()
- cy.get('nav').findByText('Manage Users').click()
- })
- it('create and login user', () => {
- const user = `${uuid()}@example.com`
- cy.get('a').contains('New User').click()
- cy.get('input[name="email"]').type(user + '{enter}')
- cy.get('td')
- .contains(/\/user\/activate/)
- .then($td => {
- const url = $td.text().trim()
- activateUser(url)
- })
- })
- it('user list RegExp search', () => {
- cy.get('input[name="isRegExpSearch"]').click()
- cy.get('input[name="email"]').type('user[0-9]{enter}')
- cy.findByText(user2)
- cy.findByText(user1).should('not.exist')
- })
- })
- describe('user page', () => {
- beforeEach(() => {
- login(admin)
- cy.visit('/project')
- cy.get('nav').findByText('Admin').click()
- cy.get('nav').findByText('Manage Users').click()
- cy.get('input[name="email"]').type(user1 + '{enter}')
- cy.findByText(user1).click()
- cy.url().should('match', /\/admin\/user\/[a-fA-F0-9]{24}/)
- })
- it('displays expected tabs', () => {
- const tabs = [
- 'User Info',
- 'Projects',
- 'Deleted Projects',
- 'Audit Log',
- 'Sessions',
- ]
- cy.get('[role="tab"]').each((el, index) => {
- cy.wrap(el).findByText(tabs[index]).click()
- })
- })
- describe('user info tab', () => {
- beforeEach(() => {
- cy.get('[role="tab"]').contains('User Info').click()
- })
- it('displays required sections', () => {
- // not exhaustive list, checks the tab content is rendered
- cy.findByText('Profile')
- cy.findByText('Editor Settings')
- })
- it('should not display SaaS-only sections', () => {
- cy.findByText('Referred User Count').should('not.exist')
- cy.findByText('Split Test Assignments').should('not.exist')
- cy.findByText('Experimental Features').should('not.exist')
- cy.findByText('Service Integration').should('not.exist')
- cy.findByText('SSO Integrations').should('not.exist')
- cy.findByText('Security').should('not.exist')
- })
- })
- it('transfer project ownership', () => {
- cy.log("access project admin through owners' project list")
- cy.get('[role="tab"]').contains('Projects').click()
- cy.get(`a[href="/admin/project/${testProjectId}"]`).click()
- cy.findByText('Transfer Ownership').click()
- cy.get('button[type="submit"]').should('be.disabled')
- cy.get('input[name="user_id"]').type(user2)
- cy.get('button[type="submit"]').should('not.be.disabled')
- cy.get('button[type="submit"]').click()
- cy.findByText('Transfer project to this user?')
- cy.get('button').contains('Confirm').click()
- cy.log('check the project is displayed in the new owner projects tab')
- cy.get('input[name="email"]').type(user2 + '{enter}')
- cy.findByText(user2).click()
- cy.get('[role="tab"]').contains('Projects').click()
- cy.get(`a[href="/admin/project/${testProjectId}"]`)
- })
- })
- it('restore deleted projects', () => {
- const resumeUserSession = login(user1)
- cy.visit('/project')
- cy.log('select project to delete')
- findProjectRow(deletedProjectName).within(() =>
- cy.get('input[type="checkbox"]').first().check()
- )
- cy.log('delete project')
- findProjectRow(deletedProjectName).within(() =>
- cy.get('button[aria-label="Trash"]').click()
- )
- cy.get('button').contains('Confirm').click()
- cy.findByText(deletedProjectName).should('not.exist')
- cy.log('navigate to thrashed projects and delete the project')
- cy.get('.project-list-sidebar-react').within(() => {
- cy.findByText('Trashed Projects').click()
- })
- findProjectRow(deletedProjectName).within(() =>
- cy.get('button[aria-label="Delete"]').click()
- )
- cy.get('button').contains('Confirm').click()
- cy.findByText(deletedProjectName).should('not.exist')
- cy.log('login as an admin and navigate to the deleted project')
- login(admin)
- cy.visit('/admin/user')
- cy.get('input[name="email"]').type(user1 + '{enter}')
- cy.get('a').contains(user1).click()
- cy.findByText('Deleted Projects').click()
- cy.get('a').contains(deletedProjectName).click()
- cy.log('undelete the project')
- cy.findByText('undelete').click()
- cy.findByText('undelete').should('not.exist')
- cy.url().should('contain', `/admin/project/${projectToDeleteId}`)
- cy.log('login as the user and verify the project is restored')
- resumeUserSession()
- cy.visit('/project')
- cy.get('.project-list-sidebar-react').within(() => {
- cy.findByText('Trashed Projects').click()
- })
- cy.findByText(`${deletedProjectName} (Restored)`)
- })
- })
- })
|