From e9ed922f37eeb2f63a561e26a5a42648f9b25d48 Mon Sep 17 00:00:00 2001 From: Rishabh Date: Tue, 5 Oct 2021 14:00:37 +0530 Subject: [PATCH] Added test for canceling member subscription on hidden tier refs https://github.com/TryGhost/Team/issues/1119 refs https://github.com/TryGhost/Portal/commit/ba592e891e6e60f7c2311aa7dbf7489113b960f6 Canceling a member on a subscription which is not in list of portal products was throwing an error earlier, this test - - covers cancel subscription flow for a member on hidden product subscription - validates fix for above issue by checking confirmation screen correctly shows for cancellation --- .../components/pages/AccountPlanPage.test.js | 35 ++++++++++++++++++- ghost/portal/src/utils/fixtures.js | 11 ++++++ 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/ghost/portal/src/components/pages/AccountPlanPage.test.js b/ghost/portal/src/components/pages/AccountPlanPage.test.js index e5185674a4..a56af737d9 100644 --- a/ghost/portal/src/components/pages/AccountPlanPage.test.js +++ b/ghost/portal/src/components/pages/AccountPlanPage.test.js @@ -1,10 +1,16 @@ import React from 'react'; +import {generateAccountPlanFixture} from '../../utils/fixtures'; import {render, fireEvent} from '../../utils/test-utils'; import AccountPlanPage from './AccountPlanPage'; const setup = (overrides) => { const {mockOnActionFn, context, ...utils} = render( - + , + { + overrideContext: { + ...overrides + } + } ); const monthlyCheckboxEl = utils.getByLabelText('Monthly'); const yearlyCheckboxEl = utils.getByLabelText('Yearly'); @@ -19,6 +25,23 @@ const setup = (overrides) => { }; }; +const customSetup = (overrides) => { + const {mockOnActionFn, context, ...utils} = render( + , + { + overrideContext: { + ...overrides + } + } + ); + + return { + mockOnActionFn, + context, + ...utils + }; +}; + describe('Account Plan Page', () => { test('renders', () => { const {monthlyCheckboxEl, yearlyCheckboxEl, continueBtn} = setup(); @@ -39,4 +62,14 @@ describe('Account Plan Page', () => { fireEvent.click(continueBtn); expect(mockOnActionFn).toHaveBeenCalledWith('checkoutPlan', {plan: '6085adc776909b1a2382369a'}); }); + + test('can cancel subscription for member on hidden tier', async () => { + const overrides = generateAccountPlanFixture(); + const {queryByRole} = customSetup(overrides); + const cancelButton = queryByRole('button', {name: 'Cancel subscription'}); + expect(cancelButton).toBeInTheDocument(); + fireEvent.click(cancelButton); + const confirmCancelButton = queryByRole('button', {name: 'Confirm cancellation'}); + expect(confirmCancelButton).toBeInTheDocument(); + }); }); diff --git a/ghost/portal/src/utils/fixtures.js b/ghost/portal/src/utils/fixtures.js index d0c5aee0e0..b0a9755ec7 100644 --- a/ghost/portal/src/utils/fixtures.js +++ b/ghost/portal/src/utils/fixtures.js @@ -338,3 +338,14 @@ export const testSite = { allow_self_signup: true, portal_plans: ['free', 'monthly', 'yearly'] }; + +export function generateAccountPlanFixture() { + return { + site: { + ...testSite, + products: products, + portal_products: ['product_2'] + }, + member: member.paid + }; +}