mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
d4057a7bcc
[web] Continue migration of change plan UI to React GitOrigin-RevId: 4f6176ac101ba3c57134cf5c86329e205f17ab23
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import { expect } from 'chai'
|
|
import { screen } from '@testing-library/react'
|
|
import InstitutionMemberships from '../../../../../../frontend/js/features/subscription/components/dashboard/institution-memberships'
|
|
import {
|
|
cleanUpContext,
|
|
renderWithSubscriptionDashContext,
|
|
} from '../../helpers/render-with-subscription-dash-context'
|
|
|
|
const memberships = [
|
|
{
|
|
id: 9258,
|
|
name: 'Test University',
|
|
commonsAccount: true,
|
|
isUniversity: true,
|
|
confirmed: true,
|
|
ssoBeta: false,
|
|
ssoEnabled: false,
|
|
maxConfirmationMonths: 6,
|
|
},
|
|
{
|
|
id: 9259,
|
|
name: 'Example Institution',
|
|
commonsAccount: true,
|
|
isUniversity: true,
|
|
confirmed: true,
|
|
ssoBeta: false,
|
|
ssoEnabled: true,
|
|
maxConfirmationMonths: 12,
|
|
},
|
|
]
|
|
|
|
describe('<InstitutionMemberships />', function () {
|
|
afterEach(function () {
|
|
cleanUpContext()
|
|
})
|
|
|
|
it('renders all insitutions with license', function () {
|
|
renderWithSubscriptionDashContext(<InstitutionMemberships />, {
|
|
metaTags: [
|
|
{ name: 'ol-currentInstitutionsWithLicence', value: memberships },
|
|
],
|
|
})
|
|
|
|
const elements = screen.getAllByText('You are on our', {
|
|
exact: false,
|
|
})
|
|
expect(elements.length).to.equal(2)
|
|
expect(elements[0].textContent).to.equal(
|
|
'You are on our Professional plan as a confirmed member of Test University'
|
|
)
|
|
expect(elements[1].textContent).to.equal(
|
|
'You are on our Professional plan as a confirmed member of Example Institution'
|
|
)
|
|
})
|
|
|
|
it('renders error message when failed to check commons licenses', function () {
|
|
renderWithSubscriptionDashContext(<InstitutionMemberships />)
|
|
screen.getByText(
|
|
'Sorry, something went wrong. Subscription information related to institutional affiliations may not be displayed. Please try again later.'
|
|
)
|
|
})
|
|
|
|
it('renders the "Get the most out of your" subscription text when a user has a subscription', function () {
|
|
renderWithSubscriptionDashContext(<InstitutionMemberships />, {
|
|
metaTags: [
|
|
{ name: 'ol-currentInstitutionsWithLicence', value: memberships },
|
|
],
|
|
})
|
|
screen.getByText('Get the most out of your', {
|
|
exact: false,
|
|
})
|
|
})
|
|
})
|