2023-10-27 09:11:34 -04:00
|
|
|
import GroupMembers from '@/features/group-management/components/group-members'
|
|
|
|
import { GroupMembersProvider } from '@/features/group-management/context/group-members-context'
|
|
|
|
|
2023-02-06 07:30:57 -05:00
|
|
|
const GROUP_ID = '777fff777fff'
|
|
|
|
const PATHS = {
|
|
|
|
addMember: `/manage/groups/${GROUP_ID}/invites`,
|
|
|
|
removeMember: `/manage/groups/${GROUP_ID}/user`,
|
|
|
|
removeInvite: `/manage/groups/${GROUP_ID}/invites`,
|
|
|
|
exportMembers: `/manage/groups/${GROUP_ID}/members/export`,
|
|
|
|
}
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
describe('GroupMembers', function () {
|
|
|
|
function mountGroupMembersProvider() {
|
2023-08-22 09:30:34 -04:00
|
|
|
cy.mount(
|
|
|
|
<GroupMembersProvider>
|
|
|
|
<GroupMembers />
|
|
|
|
</GroupMembersProvider>
|
|
|
|
)
|
2023-10-27 09:11:34 -04:00
|
|
|
}
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
describe('with Managed Users and Group SSO disabled', function () {
|
|
|
|
const JOHN_DOE = {
|
|
|
|
_id: 'abc123def456',
|
|
|
|
first_name: 'John',
|
|
|
|
last_name: 'Doe',
|
|
|
|
email: 'john.doe@test.com',
|
|
|
|
last_active_at: new Date('2023-01-15'),
|
|
|
|
invite: true,
|
|
|
|
}
|
|
|
|
const BOBBY_LAPOINTE = {
|
|
|
|
_id: 'bcd234efa567',
|
|
|
|
first_name: 'Bobby',
|
|
|
|
last_name: 'Lapointe',
|
|
|
|
email: 'bobby.lapointe@test.com',
|
|
|
|
last_active_at: new Date('2023-01-02'),
|
|
|
|
invite: false,
|
|
|
|
}
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache.set('ol-groupId', GROUP_ID)
|
|
|
|
win.metaAttributesCache.set('ol-groupName', 'My Awesome Team')
|
|
|
|
win.metaAttributesCache.set('ol-groupSize', 10)
|
|
|
|
win.metaAttributesCache.set('ol-users', [JOHN_DOE, BOBBY_LAPOINTE])
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
cy.mount(
|
|
|
|
<GroupMembersProvider>
|
|
|
|
<GroupMembers />
|
|
|
|
</GroupMembersProvider>
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('renders the group members page', function () {
|
|
|
|
cy.get('h1').contains('My Awesome Team')
|
|
|
|
cy.get('small').contains('You have added 2 of 10 available members')
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.contains('john.doe@test.com')
|
|
|
|
cy.contains('John Doe')
|
|
|
|
cy.contains('15th Jan 2023')
|
|
|
|
cy.get('.badge-new-comment').contains('Pending invite')
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.contains('bobby.lapointe@test.com')
|
|
|
|
cy.contains('Bobby Lapointe')
|
|
|
|
cy.contains('2nd Jan 2023')
|
|
|
|
cy.get('.badge-new-comment').should('not.exist')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('sends an invite', function () {
|
|
|
|
cy.intercept('POST', PATHS.addMember, {
|
|
|
|
statusCode: 201,
|
|
|
|
body: {
|
|
|
|
user: {
|
|
|
|
email: 'someone.else@test.com',
|
|
|
|
invite: true,
|
|
|
|
},
|
2023-02-06 07:30:57 -05:00
|
|
|
},
|
2023-10-27 09:11:34 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('.form-control').type('someone.else@test.com')
|
|
|
|
cy.get('.add-more-members-form button').click()
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(3)').within(() => {
|
|
|
|
cy.contains('someone.else@test.com')
|
|
|
|
cy.contains('N/A')
|
|
|
|
cy.get('.badge-new-comment').contains('Pending invite')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('tries to send an invite and displays the error', function () {
|
|
|
|
cy.intercept('POST', PATHS.addMember, {
|
|
|
|
statusCode: 500,
|
|
|
|
body: {
|
|
|
|
error: {
|
|
|
|
message: 'User already added',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('.form-control').type('someone.else@test.com')
|
|
|
|
cy.get('.add-more-members-form button').click()
|
|
|
|
cy.get('.alert').contains('Error: User already added')
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('checks the select all checkbox', function () {
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').should('not.be.checked')
|
|
|
|
})
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.get('.select-item').should('not.be.checked')
|
|
|
|
})
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
cy.get('.select-all').click()
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').should('be.checked')
|
|
|
|
})
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.get('.select-item').should('be.checked')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
})
|
2023-10-27 09:11:34 -04:00
|
|
|
|
|
|
|
it('remove a member', function () {
|
|
|
|
cy.intercept('DELETE', `${PATHS.removeMember}/abc123def456`, {
|
|
|
|
statusCode: 200,
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').check()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('button').contains('Remove from group').click()
|
|
|
|
|
|
|
|
cy.get('small').contains('You have added 1 of 10 available members')
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.contains('bobby.lapointe@test.com')
|
|
|
|
cy.contains('Bobby Lapointe')
|
|
|
|
cy.contains('2nd Jan 2023')
|
|
|
|
cy.contains('Pending invite').should('not.exist')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('tries to remove a user and displays the error', function () {
|
|
|
|
cy.intercept('DELETE', `${PATHS.removeMember}/abc123def456`, {
|
|
|
|
statusCode: 500,
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').check()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
cy.get('button').contains('Remove from group').click()
|
|
|
|
|
|
|
|
cy.get('.alert').contains('Sorry, something went wrong')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
describe('with Managed Users enabled', function () {
|
|
|
|
const JOHN_DOE = {
|
|
|
|
_id: 'abc123def456',
|
|
|
|
first_name: 'John',
|
|
|
|
last_name: 'Doe',
|
|
|
|
email: 'john.doe@test.com',
|
|
|
|
last_active_at: new Date('2023-01-15'),
|
|
|
|
invite: true,
|
|
|
|
}
|
|
|
|
const BOBBY_LAPOINTE = {
|
|
|
|
_id: 'bcd234efa567',
|
|
|
|
first_name: 'Bobby',
|
|
|
|
last_name: 'Lapointe',
|
|
|
|
email: 'bobby.lapointe@test.com',
|
|
|
|
last_active_at: new Date('2023-01-02'),
|
|
|
|
invite: false,
|
|
|
|
}
|
|
|
|
const CLAIRE_JENNINGS = {
|
|
|
|
_id: 'defabc231453',
|
|
|
|
first_name: 'Claire',
|
|
|
|
last_name: 'Jennings',
|
|
|
|
email: 'claire.jennings@test.com',
|
|
|
|
last_active_at: new Date('2023-01-03'),
|
|
|
|
invite: false,
|
|
|
|
enrollment: {
|
|
|
|
managedBy: GROUP_ID,
|
|
|
|
enrolledAt: new Date('2023-01-03'),
|
|
|
|
sso: {
|
|
|
|
providerId: '123',
|
|
|
|
externalId: '123',
|
2023-02-06 07:30:57 -05:00
|
|
|
},
|
|
|
|
},
|
2023-10-27 09:11:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache = new Map()
|
|
|
|
win.metaAttributesCache.set('ol-users', [
|
|
|
|
JOHN_DOE,
|
|
|
|
BOBBY_LAPOINTE,
|
|
|
|
CLAIRE_JENNINGS,
|
|
|
|
])
|
|
|
|
win.metaAttributesCache.set('ol-groupId', GROUP_ID)
|
|
|
|
win.metaAttributesCache.set('ol-groupName', 'My Awesome Team')
|
|
|
|
win.metaAttributesCache.set('ol-groupSize', 10)
|
|
|
|
win.metaAttributesCache.set('ol-managedUsersActive', true)
|
|
|
|
})
|
|
|
|
mountGroupMembersProvider()
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('renders the group members page', function () {
|
|
|
|
cy.get('h1').contains('My Awesome Team')
|
|
|
|
cy.get('small').contains('You have added 3 of 10 available members')
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.contains('john.doe@test.com')
|
|
|
|
cy.contains('John Doe')
|
|
|
|
cy.contains('15th Jan 2023')
|
|
|
|
cy.get('.sr-only').contains('Pending invite')
|
|
|
|
cy.get('.badge-new-comment').contains('Pending invite')
|
|
|
|
cy.get(`.security-state-invite-pending`).should('exist')
|
|
|
|
|
|
|
|
cy.get('.badge-new-comment').contains('Pending invite')
|
|
|
|
cy.get(`.security-state-invite-pending`).should('exist')
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.contains('bobby.lapointe@test.com')
|
|
|
|
cy.contains('Bobby Lapointe')
|
|
|
|
cy.contains('2nd Jan 2023')
|
|
|
|
cy.get('.badge-new-comment').should('not.exist')
|
|
|
|
cy.get('.sr-only').contains('Not managed')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
cy.get('tr:nth-child(3)').within(() => {
|
|
|
|
cy.contains('claire.jennings@test.com')
|
|
|
|
cy.contains('Claire Jennings')
|
|
|
|
cy.contains('3rd Jan 2023')
|
|
|
|
cy.get('.badge-new-comment').should('not.exist')
|
|
|
|
cy.get('.sr-only').contains('Managed')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
2023-10-27 09:11:34 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('sends an invite', function () {
|
|
|
|
cy.intercept('POST', PATHS.addMember, {
|
|
|
|
statusCode: 201,
|
|
|
|
body: {
|
|
|
|
user: {
|
|
|
|
email: 'someone.else@test.com',
|
|
|
|
invite: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('.form-control').type('someone.else@test.com')
|
|
|
|
cy.get('.add-more-members-form button').click()
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(4)').within(() => {
|
|
|
|
cy.contains('someone.else@test.com')
|
|
|
|
cy.contains('N/A')
|
|
|
|
cy.get('.sr-only').contains('Pending invite')
|
|
|
|
cy.get('.badge-new-comment').contains('Pending invite')
|
|
|
|
cy.get(`.security-state-invite-pending`).should('exist')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('tries to send an invite and displays the error', function () {
|
|
|
|
cy.intercept('POST', PATHS.addMember, {
|
|
|
|
statusCode: 500,
|
|
|
|
body: {
|
|
|
|
error: {
|
|
|
|
message: 'User already added',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('.form-control').type('someone.else@test.com')
|
|
|
|
cy.get('.add-more-members-form button').click()
|
|
|
|
cy.get('.alert').contains('Error: User already added')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('checks the select all checkbox', function () {
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').should('not.be.checked')
|
|
|
|
})
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.get('.select-item').should('not.be.checked')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
2023-10-27 09:11:34 -04:00
|
|
|
|
|
|
|
cy.get('.select-all').click()
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').should('be.checked')
|
|
|
|
})
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.get('.select-item').should('be.checked')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
2023-10-27 09:11:34 -04:00
|
|
|
|
|
|
|
cy.get('button').contains('Remove from group').click()
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('remove a member', function () {
|
|
|
|
cy.intercept('DELETE', `${PATHS.removeMember}/abc123def456`, {
|
|
|
|
statusCode: 200,
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').check()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('button').contains('Remove from group').click()
|
|
|
|
|
|
|
|
cy.get('small').contains('You have added 2 of 10 available members')
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.contains('bobby.lapointe@test.com')
|
|
|
|
cy.contains('Bobby Lapointe')
|
|
|
|
cy.contains('2nd Jan 2023')
|
|
|
|
})
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('cannot remove a managed member', function () {
|
|
|
|
cy.intercept('DELETE', `${PATHS.removeMember}/abc123def456`, {
|
|
|
|
statusCode: 200,
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
// no checkbox should be shown for 'Claire Jennings', a managed user
|
|
|
|
cy.get('tr:nth-child(3)').within(() => {
|
|
|
|
cy.get('.select-item').should('not.exist')
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('tries to remove a user and displays the error', function () {
|
|
|
|
cy.intercept('DELETE', `${PATHS.removeMember}/abc123def456`, {
|
|
|
|
statusCode: 500,
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(1)').within(() => {
|
|
|
|
cy.get('.select-item').check()
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
2023-10-27 09:11:34 -04:00
|
|
|
cy.get('.page-header').within(() => {
|
|
|
|
cy.get('button').contains('Remove from group').click()
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('.alert').contains('Sorry, something went wrong')
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
describe('with Group SSO enabled', function () {
|
|
|
|
const JOHN_DOE = {
|
|
|
|
_id: 'abc123def456',
|
|
|
|
first_name: 'John',
|
|
|
|
last_name: 'Doe',
|
|
|
|
email: 'john.doe@test.com',
|
|
|
|
last_active_at: new Date('2023-01-15'),
|
|
|
|
invite: true,
|
|
|
|
}
|
|
|
|
const BOBBY_LAPOINTE = {
|
|
|
|
_id: 'bcd234efa567',
|
|
|
|
first_name: 'Bobby',
|
|
|
|
last_name: 'Lapointe',
|
|
|
|
email: 'bobby.lapointe@test.com',
|
|
|
|
last_active_at: new Date('2023-01-02'),
|
|
|
|
invite: false,
|
|
|
|
}
|
|
|
|
const CLAIRE_JENNINGS = {
|
|
|
|
_id: 'defabc231453',
|
|
|
|
first_name: 'Claire',
|
|
|
|
last_name: 'Jennings',
|
|
|
|
email: 'claire.jennings@test.com',
|
|
|
|
last_active_at: new Date('2023-01-03'),
|
|
|
|
invite: false,
|
|
|
|
enrollment: {
|
|
|
|
managedBy: GROUP_ID,
|
|
|
|
enrolledAt: new Date('2023-01-03'),
|
|
|
|
sso: {
|
|
|
|
providerId: '123',
|
|
|
|
externalId: '123',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2023-02-06 07:30:57 -05:00
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache = new Map()
|
|
|
|
win.metaAttributesCache.set('ol-users', [
|
|
|
|
JOHN_DOE,
|
|
|
|
BOBBY_LAPOINTE,
|
|
|
|
CLAIRE_JENNINGS,
|
|
|
|
])
|
|
|
|
win.metaAttributesCache.set('ol-groupId', GROUP_ID)
|
|
|
|
win.metaAttributesCache.set('ol-groupName', 'My Awesome Team')
|
|
|
|
win.metaAttributesCache.set('ol-groupSize', 10)
|
|
|
|
win.metaAttributesCache.set('ol-managedUsersActive', false)
|
|
|
|
win.metaAttributesCache.set('ol-groupSSOActive', true)
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
2023-10-27 09:11:34 -04:00
|
|
|
|
|
|
|
mountGroupMembersProvider()
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
|
2023-10-27 09:11:34 -04:00
|
|
|
it('should display the Security column', function () {
|
|
|
|
cy.get('ul.managed-users-list table > tbody').within(() => {
|
|
|
|
cy.get('tr:nth-child(2)').within(() => {
|
|
|
|
cy.contains('bobby.lapointe@test.com')
|
|
|
|
cy.get('.sr-only').contains('SSO not active')
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get('tr:nth-child(3)').within(() => {
|
|
|
|
cy.contains('claire.jennings@test.com')
|
|
|
|
cy.get('.sr-only').contains('SSO active')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2023-02-06 07:30:57 -05:00
|
|
|
})
|
|
|
|
})
|