mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00

* Update fetch-mock to version 12 * Replace `fetchMock.done` by `fetchMock.callHistory.done` * Replace `…Mock.called` by `…Mock.callHistory.called` * Replace `fetchMock.reset` by `fetchMock.hardReset` * Replace `fetchMock.restore` by `fetchMock.hardReset` * Replace `fetchMock.resetHistory` by `fetchMock.clearHistory` * Replace `fetchMock.calls` by `fetchMock.callHistory.calls` * Replace `fetchMock.flush` by `fetchMock.callHistory.flush` * Update tests for fetch-mock version 12 See https://www.wheresrhys.co.uk/fetch-mock/docs/Usage/upgrade-guide * Update stories for fetch-mock version 12 * Remove `overwriteRoutes` option * Add `fetchMock.spyGlobal()` to storybook * Remove deprecated `sendAsJson` param * Replace `fetchMock.hardReset()` by `fetchMock.removeRoutes().clearHistory()` * Fixup fetch-mock in storybook: Call `mockGlobal` inside the hook, call `removeRoutes` and `unmockGlobal` on cleanup Behaviour can be tested by navigating between https://storybook.dev-overleaf.com/main/?path=/story/editor-ai-error-assistant-compile-log-entries--first-log-entry https://storybook.dev-overleaf.com/main/?path=/story/editor-ai-error-assistant-compile-log-entries--rate-limited https://storybook.dev-overleaf.com/main/?path=/story/project-list-notifications--project-invite https://storybook.dev-overleaf.com/main/?path=/story/project-list-notifications--project-invite-network-error And clicking the buttons GitOrigin-RevId: 35611b4430259e4c21c3d819ad18b2e6dab66242
94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
import { render } from '@testing-library/react'
|
|
import _ from 'lodash'
|
|
import { SubscriptionDashboardProvider } from '../../../../../frontend/js/features/subscription/context/subscription-dashboard-context'
|
|
import { groupPriceByUsageTypeAndSize, plans } from '../fixtures/plans'
|
|
import fetchMock from 'fetch-mock'
|
|
import { SplitTestProvider } from '@/shared/context/split-test-context'
|
|
import { MetaTag } from '@/utils/meta'
|
|
|
|
export function renderWithSubscriptionDashContext(
|
|
component: React.ReactElement,
|
|
options?: {
|
|
metaTags?: MetaTag[]
|
|
recurlyNotLoaded?: boolean
|
|
queryingRecurly?: boolean
|
|
currencyCode?: string
|
|
}
|
|
) {
|
|
const SubscriptionDashboardProviderWrapper = ({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) => (
|
|
<SplitTestProvider>
|
|
<SubscriptionDashboardProvider>{children}</SubscriptionDashboardProvider>
|
|
</SplitTestProvider>
|
|
)
|
|
|
|
options?.metaTags?.forEach(tag =>
|
|
window.metaAttributesCache.set(tag!.name, tag!.value)
|
|
)
|
|
window.metaAttributesCache.set('ol-user', {})
|
|
|
|
if (!options?.recurlyNotLoaded) {
|
|
// @ts-ignore
|
|
global.recurly = {
|
|
configure: () => {},
|
|
Pricing: {
|
|
Subscription: () => {
|
|
return {
|
|
plan: (planCode: string) => {
|
|
let plan
|
|
const isGroupPlan = planCode.includes('group')
|
|
if (isGroupPlan) {
|
|
const [, planType, size, usage] = planCode.split('_')
|
|
const currencyCode = options?.currencyCode || 'USD'
|
|
plan = _.get(groupPriceByUsageTypeAndSize, [
|
|
usage,
|
|
planType,
|
|
currencyCode,
|
|
size,
|
|
])
|
|
} else {
|
|
plan = plans.find(p => p.planCode === planCode)
|
|
}
|
|
|
|
const response = {
|
|
next: {
|
|
total: plan?.price_in_cents
|
|
? plan.price_in_cents / 100
|
|
: undefined,
|
|
},
|
|
}
|
|
return {
|
|
currency: () => {
|
|
return {
|
|
catch: () => {
|
|
return {
|
|
done: (callback: (response: object) => void) => {
|
|
if (!options?.queryingRecurly) {
|
|
return callback(response)
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|
|
},
|
|
}
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
return render(component, {
|
|
wrapper: SubscriptionDashboardProviderWrapper,
|
|
})
|
|
}
|
|
|
|
export function cleanUpContext() {
|
|
// @ts-ignore
|
|
delete global.recurly
|
|
fetchMock.removeRoutes().clearHistory()
|
|
}
|