0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/apps/portal/src/tests/UpgradeFlow.test.js

429 lines
17 KiB
JavaScript
Raw Normal View History

import App from '../App.js';
import {fireEvent, appRender, within} from '../utils/test-utils';
import {offer as FixtureOffer, site as FixtureSite, member as FixtureMember} from '../utils/test-fixtures';
import setupGhostApi from '../utils/api.js';
const offerSetup = async ({site, member = null, offer}) => {
const ghostApi = setupGhostApi({siteUrl: 'https://example.com'});
ghostApi.init = jest.fn(() => {
return Promise.resolve({
site,
member
});
});
ghostApi.member.sendMagicLink = jest.fn(() => {
return Promise.resolve('success');
});
ghostApi.site.offer = jest.fn(() => {
return Promise.resolve({
offers: [offer]
});
});
ghostApi.member.checkoutPlan = jest.fn(() => {
return Promise.resolve();
});
const utils = appRender(
<App api={ghostApi} />
);
const popupFrame = await utils.findByTitle(/portal-popup/i);
const triggerButtonFrame = utils.queryByTitle(/portal-trigger/i);
const popupIframeDocument = popupFrame.contentDocument;
const emailInput = within(popupIframeDocument).queryByLabelText(/email/i);
const nameInput = within(popupIframeDocument).queryByLabelText(/name/i);
const submitButton = within(popupIframeDocument).queryByRole('button', {name: 'Continue'});
const chooseBtns = within(popupIframeDocument).queryAllByRole('button', {name: 'Choose'});
const signinButton = within(popupIframeDocument).queryByRole('button', {name: 'Sign in'});
const siteTitle = within(popupIframeDocument).queryByText(site.title);
const offerName = within(popupIframeDocument).queryByText(offer.display_title);
const offerDescription = within(popupIframeDocument).queryByText(offer.display_description);
const freePlanTitle = within(popupIframeDocument).queryByText('Free');
const monthlyPlanTitle = within(popupIframeDocument).queryByText('Monthly');
const yearlyPlanTitle = within(popupIframeDocument).queryByText('Yearly');
const fullAccessTitle = within(popupIframeDocument).queryByText('Full access');
return {
ghostApi,
popupIframeDocument,
popupFrame,
triggerButtonFrame,
siteTitle,
emailInput,
nameInput,
signinButton,
submitButton,
chooseBtns,
freePlanTitle,
monthlyPlanTitle,
yearlyPlanTitle,
fullAccessTitle,
offerName,
offerDescription,
...utils
};
};
const setup = async ({site, member = null}) => {
const ghostApi = setupGhostApi({siteUrl: 'https://example.com'});
ghostApi.init = jest.fn(() => {
return Promise.resolve({
site,
member
});
});
ghostApi.member.sendMagicLink = jest.fn(() => {
return Promise.resolve('success');
});
ghostApi.member.checkoutPlan = jest.fn(() => {
return Promise.resolve();
});
const utils = appRender(
<App api={ghostApi} />
);
const triggerButtonFrame = await utils.findByTitle(/portal-trigger/i);
const popupFrame = utils.queryByTitle(/portal-popup/i);
const popupIframeDocument = popupFrame.contentDocument;
const emailInput = within(popupIframeDocument).queryByLabelText(/email/i);
const nameInput = within(popupIframeDocument).queryByLabelText(/name/i);
const submitButton = within(popupIframeDocument).queryByRole('button', {name: 'Continue'});
const signinButton = within(popupIframeDocument).queryByRole('button', {name: 'Sign in'});
const siteTitle = within(popupIframeDocument).queryByText(site.title);
const freePlanTitle = within(popupIframeDocument).queryByText('Free');
const monthlyPlanTitle = within(popupIframeDocument).queryByText('Monthly');
const yearlyPlanTitle = within(popupIframeDocument).queryByText('Yearly');
const fullAccessTitle = within(popupIframeDocument).queryByText('Full access');
const accountHomeTitle = within(popupIframeDocument).queryByText('Your account');
const viewPlansButton = within(popupIframeDocument).queryByRole('button', {name: 'View plans'});
return {
ghostApi,
popupIframeDocument,
popupFrame,
triggerButtonFrame,
siteTitle,
emailInput,
nameInput,
signinButton,
submitButton,
freePlanTitle,
monthlyPlanTitle,
yearlyPlanTitle,
fullAccessTitle,
accountHomeTitle,
viewPlansButton,
...utils
};
};
const multiTierSetup = async ({site, member = null}) => {
const ghostApi = setupGhostApi({siteUrl: 'https://example.com'});
ghostApi.init = jest.fn(() => {
return Promise.resolve({
site,
member
});
});
ghostApi.member.sendMagicLink = jest.fn(() => {
return Promise.resolve('success');
});
ghostApi.member.checkoutPlan = jest.fn(() => {
return Promise.resolve();
});
const utils = appRender(
<App api={ghostApi} />
);
const freeTierDescription = site.products?.find(p => p.type === 'free')?.description;
const triggerButtonFrame = await utils.findByTitle(/portal-trigger/i);
const popupFrame = utils.queryByTitle(/portal-popup/i);
const popupIframeDocument = popupFrame.contentDocument;
const emailInput = within(popupIframeDocument).queryByLabelText(/email/i);
const nameInput = within(popupIframeDocument).queryByLabelText(/name/i);
const submitButton = within(popupIframeDocument).queryByRole('button', {name: 'Continue'});
const signinButton = within(popupIframeDocument).queryByRole('button', {name: 'Sign in'});
const siteTitle = within(popupIframeDocument).queryByText(site.title);
const freePlanTitle = within(popupIframeDocument).queryAllByText(/free$/i);
const freePlanDescription = within(popupIframeDocument).queryAllByText(freeTierDescription);
const monthlyPlanTitle = within(popupIframeDocument).queryByText('Monthly');
const yearlyPlanTitle = within(popupIframeDocument).queryByText('Yearly');
const fullAccessTitle = within(popupIframeDocument).queryByText('Full access');
const accountHomeTitle = within(popupIframeDocument).queryByText('Your account');
const viewPlansButton = within(popupIframeDocument).queryByRole('button', {name: 'View plans'});
return {
ghostApi,
popupIframeDocument,
popupFrame,
triggerButtonFrame,
siteTitle,
emailInput,
nameInput,
signinButton,
submitButton,
freePlanTitle,
monthlyPlanTitle,
yearlyPlanTitle,
fullAccessTitle,
freePlanDescription,
accountHomeTitle,
viewPlansButton,
...utils
};
};
describe('Logged-in free member', () => {
describe('can upgrade on single tier site', () => {
test('with default settings on monthly plan', async () => {
const {
ghostApi, popupFrame, triggerButtonFrame,
popupIframeDocument, accountHomeTitle, viewPlansButton
} = await setup({
site: FixtureSite.singleTier.basic,
member: FixtureMember.free
});
expect(popupFrame).toBeInTheDocument();
expect(triggerButtonFrame).toBeInTheDocument();
expect(accountHomeTitle).toBeInTheDocument();
expect(viewPlansButton).toBeInTheDocument();
const singleTierProduct = FixtureSite.singleTier.basic.products.find(p => p.type === 'paid');
fireEvent.click(viewPlansButton);
const monthlyPlanContainer = await within(popupIframeDocument).findByText('Monthly');
fireEvent.click(monthlyPlanContainer);
// added fake timeout for react state delay in setting plan
await new Promise((r) => {
setTimeout(r, 10);
});
2022-06-01 13:10:46 +05:30
const submitButton = within(popupIframeDocument).queryByRole('button', {name: 'Continue'});
fireEvent.click(submitButton);
expect(ghostApi.member.checkoutPlan).toHaveBeenLastCalledWith({
metadata: {
checkoutType: 'upgrade'
},
offerId: undefined,
plan: singleTierProduct.monthlyPrice.id,
tierId: singleTierProduct.id,
cadence: 'month'
});
});
test('with default settings on yearly plan', async () => {
const {
ghostApi, popupFrame, triggerButtonFrame,
popupIframeDocument, accountHomeTitle, viewPlansButton
} = await setup({
site: FixtureSite.singleTier.basic,
member: FixtureMember.free
});
expect(popupFrame).toBeInTheDocument();
expect(triggerButtonFrame).toBeInTheDocument();
expect(accountHomeTitle).toBeInTheDocument();
expect(viewPlansButton).toBeInTheDocument();
const singleTierProduct = FixtureSite.singleTier.basic.products.find(p => p.type === 'paid');
fireEvent.click(viewPlansButton);
await within(popupIframeDocument).findByText('Monthly');
const yearlyPlanContainer = await within(popupIframeDocument).findByText('Yearly');
fireEvent.click(yearlyPlanContainer);
// added fake timeout for react state delay in setting plan
await new Promise((r) => {
setTimeout(r, 10);
});
2022-06-01 13:10:46 +05:30
const submitButton = within(popupIframeDocument).queryByRole('button', {name: 'Continue'});
fireEvent.click(submitButton);
expect(ghostApi.member.checkoutPlan).toHaveBeenLastCalledWith({
metadata: {
checkoutType: 'upgrade'
},
offerId: undefined,
plan: singleTierProduct.yearlyPrice.id,
tierId: singleTierProduct.id,
cadence: 'year'
});
});
test('to an offer via link', async () => {
window.location.hash = '#/portal/offers/61fa22bd0cbecc7d423d20b3';
const {
ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, signinButton, submitButton,
siteTitle,
offerName, offerDescription
} = await offerSetup({
site: FixtureSite.singleTier.basic,
member: FixtureMember.altFree,
offer: FixtureOffer
});
let planId = FixtureSite.singleTier.basic.products.find(p => p.type === 'paid').monthlyPrice.id;
let singleTierProduct = FixtureSite.singleTier.basic.products.find(p => p.type === 'paid');
let offerId = FixtureOffer.id;
expect(popupFrame).toBeInTheDocument();
expect(triggerButtonFrame).toBeInTheDocument();
expect(siteTitle).toBeInTheDocument();
expect(emailInput).toBeInTheDocument();
expect(nameInput).toBeInTheDocument();
expect(signinButton).not.toBeInTheDocument();
expect(submitButton).toBeInTheDocument();
expect(offerName).toBeInTheDocument();
expect(offerDescription).toBeInTheDocument();
expect(emailInput).toHaveValue('jimmie@example.com');
expect(nameInput).toHaveValue('Jimmie Larson');
fireEvent.click(submitButton);
expect(ghostApi.member.checkoutPlan).toHaveBeenLastCalledWith({
email: 'jimmie@example.com',
name: 'Jimmie Larson',
offerId,
plan: planId,
tierId: singleTierProduct.id,
cadence: 'month'
});
window.location.hash = '';
});
test('to an offer via link with portal disabled', async () => {
let site = {
...FixtureSite.singleTier.basic,
portal_button: false
};
window.location.hash = `#/portal/offers/${FixtureOffer.id}`;
const {
ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, signinButton, submitButton,
siteTitle,
offerName, offerDescription
} = await offerSetup({
site: site,
member: FixtureMember.altFree,
offer: FixtureOffer
});
let planId = FixtureSite.singleTier.basic.products.find(p => p.type === 'paid').monthlyPrice.id;
let singleTierProduct = FixtureSite.singleTier.basic.products.find(p => p.type === 'paid');
let offerId = FixtureOffer.id;
expect(popupFrame).toBeInTheDocument();
expect(triggerButtonFrame).not.toBeInTheDocument();
expect(siteTitle).not.toBeInTheDocument();
expect(emailInput).not.toBeInTheDocument();
expect(nameInput).not.toBeInTheDocument();
expect(signinButton).not.toBeInTheDocument();
expect(submitButton).not.toBeInTheDocument();
expect(offerName).not.toBeInTheDocument();
expect(offerDescription).not.toBeInTheDocument();
expect(ghostApi.member.checkoutPlan).toHaveBeenLastCalledWith({
metadata: {
checkoutType: 'upgrade'
},
offerId: offerId,
plan: planId,
tierId: singleTierProduct.id,
cadence: 'month'
});
window.location.hash = '';
});
});
});
describe('Logged-in free member', () => {
describe('can upgrade on multi tier site', () => {
test('with default settings', async () => {
const {
ghostApi, popupFrame, triggerButtonFrame,
popupIframeDocument, accountHomeTitle, viewPlansButton
} = await multiTierSetup({
site: FixtureSite.multipleTiers.basic,
member: FixtureMember.free
});
expect(popupFrame).toBeInTheDocument();
expect(triggerButtonFrame).toBeInTheDocument();
expect(accountHomeTitle).toBeInTheDocument();
expect(viewPlansButton).toBeInTheDocument();
const singleTierProduct = FixtureSite.multipleTiers.basic.products.find(p => p.type === 'paid');
fireEvent.click(viewPlansButton);
await within(popupIframeDocument).findByText('Monthly');
// allow default checkbox switch to yearly
await new Promise((r) => {
setTimeout(r, 10);
});
const chooseBtns = within(popupIframeDocument).queryAllByRole('button', {name: 'Choose'});
fireEvent.click(chooseBtns[0]);
expect(ghostApi.member.checkoutPlan).toHaveBeenLastCalledWith({
metadata: {
checkoutType: 'upgrade'
},
offerId: undefined,
plan: singleTierProduct.yearlyPrice.id,
tierId: singleTierProduct.id,
cadence: 'year'
});
});
test('to an offer via link', async () => {
window.location.hash = '#/portal/offers/61fa22bd0cbecc7d423d20b3';
const {
ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, signinButton, submitButton,
siteTitle,
offerName, offerDescription
} = await offerSetup({
site: FixtureSite.multipleTiers.basic,
member: FixtureMember.altFree,
offer: FixtureOffer
});
let planId = FixtureSite.multipleTiers.basic.products.find(p => p.type === 'paid').monthlyPrice.id;
let singleTierProduct = FixtureSite.multipleTiers.basic.products.find(p => p.type === 'paid');
let offerId = FixtureOffer.id;
expect(popupFrame).toBeInTheDocument();
expect(triggerButtonFrame).toBeInTheDocument();
expect(siteTitle).toBeInTheDocument();
expect(emailInput).toBeInTheDocument();
expect(nameInput).toBeInTheDocument();
expect(signinButton).not.toBeInTheDocument();
expect(submitButton).toBeInTheDocument();
expect(offerName).toBeInTheDocument();
expect(offerDescription).toBeInTheDocument();
expect(emailInput).toHaveValue('jimmie@example.com');
expect(nameInput).toHaveValue('Jimmie Larson');
fireEvent.click(submitButton);
expect(ghostApi.member.checkoutPlan).toHaveBeenLastCalledWith({
email: 'jimmie@example.com',
name: 'Jimmie Larson',
offerId,
plan: planId,
tierId: singleTierProduct.id,
cadence: 'month'
});
window.location.hash = '';
});
});
});