mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
afe9e486ae
Fix typescript errors GitOrigin-RevId: b49235a3d9d6277e7c2de5bc7a79b7cafae75e2e
100 lines
3.2 KiB
TypeScript
100 lines
3.2 KiB
TypeScript
import { expect } from 'chai'
|
|
import { screen, fireEvent, render, waitFor } from '@testing-library/react'
|
|
import { IntegrationLinkingWidget } from '../../../../../../frontend/js/features/settings/components/linking/integration-widget'
|
|
|
|
describe('<IntegrationLinkingWidgetTest/>', function () {
|
|
const defaultProps = {
|
|
logo: <div />,
|
|
title: 'Integration',
|
|
description: 'paragraph1',
|
|
helpPath: '/learn',
|
|
linkPath: '/link',
|
|
unlinkPath: '/unlink',
|
|
unlinkConfirmationTitle: 'confirm unlink',
|
|
unlinkConfirmationText: 'you will be unlinked',
|
|
}
|
|
|
|
describe('when the feature is not available', function () {
|
|
beforeEach(function () {
|
|
render(<IntegrationLinkingWidget {...defaultProps} hasFeature={false} />)
|
|
})
|
|
|
|
it("should render 'Premium feature' label", function () {
|
|
screen.getByText('Premium feature')
|
|
})
|
|
|
|
it('should render a link to upgrade the account', function () {
|
|
expect(
|
|
screen.getByRole('link', { name: 'Upgrade' }).getAttribute('href')
|
|
).to.equal('/user/subscription/plans')
|
|
})
|
|
})
|
|
|
|
describe('when the integration is not linked', function () {
|
|
beforeEach(function () {
|
|
render(
|
|
<IntegrationLinkingWidget {...defaultProps} hasFeature linked={false} />
|
|
)
|
|
})
|
|
|
|
it('should render a link to initiate integration linking', function () {
|
|
expect(
|
|
screen.getByRole('link', { name: 'Link' }).getAttribute('href')
|
|
).to.equal('/link')
|
|
})
|
|
|
|
it("should not render 'premium feature' labels", function () {
|
|
expect(screen.queryByText('premium_feature')).to.not.exist
|
|
expect(screen.queryByText('integration_is_a_premium_feature')).to.not
|
|
.exist
|
|
})
|
|
})
|
|
|
|
describe('when the integration is linked', function () {
|
|
beforeEach(function () {
|
|
render(
|
|
<IntegrationLinkingWidget
|
|
{...defaultProps}
|
|
hasFeature
|
|
linked
|
|
statusIndicator={<div>status indicator</div>}
|
|
/>
|
|
)
|
|
})
|
|
|
|
it('should render a status indicator', function () {
|
|
screen.getByText('status indicator')
|
|
})
|
|
|
|
it("should not render 'premium feature' labels", function () {
|
|
expect(screen.queryByText('premium_feature')).to.not.exist
|
|
expect(screen.queryByText('integration_is_a_premium_feature')).to.not
|
|
.exist
|
|
})
|
|
|
|
it('should display an `unlink` button', function () {
|
|
screen.getByRole('button', { name: 'Unlink' })
|
|
})
|
|
|
|
it('should open a modal with a link to confirm integration unlinking', function () {
|
|
fireEvent.click(screen.getByRole('button', { name: 'Unlink' }))
|
|
screen.getByText('confirm unlink')
|
|
screen.getByText('you will be unlinked')
|
|
screen.getByRole('button', { name: 'Cancel' })
|
|
screen.getByRole('button', { name: 'Unlink' })
|
|
})
|
|
|
|
it('should cancel unlinking when clicking "cancel" in the confirmation modal', async function () {
|
|
fireEvent.click(screen.getByRole('button', { name: 'Unlink' }))
|
|
screen.getByText('confirm unlink')
|
|
const cancelBtn = screen.getByRole('button', {
|
|
name: 'Cancel',
|
|
hidden: false,
|
|
})
|
|
fireEvent.click(cancelBtn)
|
|
await waitFor(() =>
|
|
screen.getByRole('button', { name: 'Cancel', hidden: true })
|
|
)
|
|
})
|
|
})
|
|
})
|