overleaf/services/web/test/frontend/features/subscription/components/dashboard/managed-group-subscriptions.test.tsx
Jakob Ackermann aa480a2663 Merge pull request #18898 from overleaf/jpa-no-window
[web] migrate from window attributes to getMeta

GitOrigin-RevId: 3dcf1ab6b01155e5e4abeb3e78d0fa9053e055bc
2024-06-19 08:04:21 +00:00

388 lines
12 KiB
TypeScript

import { expect } from 'chai'
import { screen } from '@testing-library/react'
import ManagedGroupSubscriptions from '../../../../../../frontend/js/features/subscription/components/dashboard/managed-group-subscriptions'
import { ManagedGroupSubscription } from '../../../../../../types/subscription/dashboard/subscription'
import {
cleanUpContext,
renderWithSubscriptionDashContext,
} from '../../helpers/render-with-subscription-dash-context'
import getMeta from '@/utils/meta'
function getManagedGroupSubscriptions(
groupSSO: boolean | null,
managedUsers: boolean | null
): ManagedGroupSubscription[] {
const subscriptionOne = {
_id: 'bcd567',
userIsGroupMember: true,
planLevelName: 'Professional',
admin_id: {
email: 'you@example.com',
},
features: {
groupSSO,
managedUsers,
},
teamName: 'GAS',
}
const subscriptionTwo = {
_id: 'def456',
userIsGroupMember: false,
planLevelName: 'Collaborator',
admin_id: {
email: 'someone@example.com',
},
features: {
groupSSO,
managedUsers,
},
teamName: 'GASWPLC',
}
const subscriptionMemberAndAdmin = {
_id: 'group2abc',
userIsGroupMember: true,
planLevelName: 'Collaborator',
admin_id: {
email: 'admin@example.com',
},
features: {
groupSSO,
managedUsers,
},
teamName: 'Testing',
}
const subscriptionAdmin = {
_id: 'group123abc',
userIsGroupMember: false,
planLevelName: 'Collaborator',
admin_id: {
email: 'admin@example.com',
},
features: {
groupSSO,
managedUsers,
},
teamName: 'Testing Another',
}
return [
subscriptionOne,
subscriptionTwo,
subscriptionMemberAndAdmin,
subscriptionAdmin,
]
}
const managedGroupSubscriptions: ManagedGroupSubscription[] =
getManagedGroupSubscriptions(false, false)
const managedGroupSubscriptions2: ManagedGroupSubscription[] =
getManagedGroupSubscriptions(true, true)
const managedGroupSubscriptions3: ManagedGroupSubscription[] =
getManagedGroupSubscriptions(true, false)
const managedGroupSubscriptions4: ManagedGroupSubscription[] =
getManagedGroupSubscriptions(false, true)
const managedGroupSubscriptions5: ManagedGroupSubscription[] =
getManagedGroupSubscriptions(null, true)
describe('<ManagedGroupSubscriptions />', function () {
afterEach(function () {
cleanUpContext()
})
it('renders all managed group subscriptions', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions,
},
{ name: 'ol-usersEmail', value: 'admin@example.com' },
],
})
const elements = screen.getAllByText('You are a', {
exact: false,
})
expect(elements.length).to.equal(4)
expect(elements[0].textContent).to.equal(
'You are a manager and member of the Professional group subscription GAS administered by you@example.com.'
)
expect(elements[1].textContent).to.equal(
'You are a manager of the Collaborator group subscription GASWPLC administered by someone@example.com.'
)
expect(elements[2].textContent).to.equal(
'You are a manager and member of the Collaborator group subscription Testing administered by you (admin@example.com).'
)
expect(elements[3].textContent).to.equal(
'You are a manager of the Collaborator group subscription Testing Another administered by you (admin@example.com).'
)
const links = screen.getAllByRole('link')
expect(links[1].getAttribute('href')).to.equal(
'/manage/groups/bcd567/members'
)
expect(links[2].getAttribute('href')).to.equal(
'/manage/groups/bcd567/managers'
)
expect(links[3].getAttribute('href')).to.equal('/metrics/groups/bcd567')
expect(links[5].getAttribute('href')).to.equal(
'/manage/groups/def456/members'
)
expect(links[6].getAttribute('href')).to.equal(
'/manage/groups/def456/managers'
)
expect(links[7].getAttribute('href')).to.equal('/metrics/groups/def456')
expect(links[9].getAttribute('href')).to.equal(
'/manage/groups/group2abc/members'
)
expect(links[10].getAttribute('href')).to.equal(
'/manage/groups/group2abc/managers'
)
expect(links[11].getAttribute('href')).to.equal('/metrics/groups/group2abc')
expect(links[13].getAttribute('href')).to.equal(
'/manage/groups/group123abc/members'
)
expect(links[14].getAttribute('href')).to.equal(
'/manage/groups/group123abc/managers'
)
expect(links[15].getAttribute('href')).to.equal(
'/metrics/groups/group123abc'
)
})
it('renders nothing when there are no group memberships', function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />)
const elements = screen.queryAllByText('You are a', {
exact: false,
})
expect(elements.length).to.equal(0)
})
it('does not render the Manage group settings row when the user is not the group admin', function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions2,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [],
},
],
})
expect(screen.queryByText('Manage group settings')).to.be.null
expect(screen.queryByText('Configure and manage SSO and Managed Users')).to
.be.null
})
describe('with group SSO off by default', function () {
beforeEach(function () {
Object.assign(getMeta('ol-ExposedSettings'), {
groupSSOEnabled: false,
})
})
it('renders the Manage group settings row when feature is turned on', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions2,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions2[0]._id],
},
],
})
await screen.findAllByText('Manage group settings')
await screen.findAllByText('Configure and manage SSO and Managed Users')
})
describe('renders the the correct subText for Manage Group settings row', async function () {
it('with managedUsers.enabled=true and groupSSO.enabled=true', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions2,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions2[0]._id],
},
],
})
await screen.findAllByText('Configure and manage SSO and Managed Users')
})
it('with managedUsers.enabled=false and groupSSO.enabled=true', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions3,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions3[0]._id],
},
],
})
await screen.findAllByText('Configure and manage SSO')
})
it('with managedUsers.enabled=true and groupSSO.enabled=false', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions4,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions4[0]._id],
},
],
})
await screen.findAllByText('Turn on Managed Users')
})
it('with managedUsers.enabled=true and groupSSO.enabled=null', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions5,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions5[0]._id],
},
],
})
await screen.findAllByText('Turn on Managed Users')
})
})
})
describe('with group SSO on by default', function () {
it('renders the Manage group settings row when features are turned on', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions2,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions2[0]._id],
},
{
name: 'ol-ExposedSettings',
value: {
groupSSOEnabled: true,
},
},
],
})
await screen.findAllByText('Manage group settings')
await screen.findAllByText('Configure and manage SSO and Managed Users')
})
describe('renders the the correct subText for Manage Group settings row', async function () {
it('with managedUsers.enabled=true and groupSSO.enabled=true', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions2,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions2[0]._id],
},
{
name: 'ol-ExposedSettings',
value: {
groupSSOEnabled: true,
},
},
],
})
await screen.findAllByText('Configure and manage SSO and Managed Users')
})
it('with managedUsers.enabled=false and groupSSO.enabled=true', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions3,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions3[0]._id],
},
{
name: 'ol-ExposedSettings',
value: {
groupSSOEnabled: true,
},
},
],
})
await screen.findAllByText('Configure and manage SSO')
})
it('with managedUsers.enabled=true and groupSSO.enabled=false', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions4,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions4[0]._id],
},
{
name: 'ol-ExposedSettings',
value: {
groupSSOEnabled: true,
},
},
],
})
await screen.findAllByText('Turn on Managed Users')
})
it('with managedUsers.enabled=true and groupSSO.enabled=null', async function () {
renderWithSubscriptionDashContext(<ManagedGroupSubscriptions />, {
metaTags: [
{
name: 'ol-managedGroupSubscriptions',
value: managedGroupSubscriptions5,
},
{
name: 'ol-groupSettingsEnabledFor',
value: [managedGroupSubscriptions5[0]._id],
},
{
name: 'ol-ExposedSettings',
value: {
groupSSOEnabled: true,
},
},
],
})
await screen.findAllByText('Configure and manage SSO and Managed Users')
})
})
})
})