| |
| |
| |
|
|
| import { |
| DataHelper, |
| BrowserManager, |
| DomainSearchComponent, |
| UserSignupPage, |
| SignupPickPlanPage, |
| CartCheckoutPage, |
| SecretsManager, |
| NewSiteResponse, |
| RestAPIClient, |
| NewUserResponse, |
| MyProfilePage, |
| MeSidebarComponent, |
| NoticeComponent, |
| PurchasesPage, |
| ThemesDetailPage, |
| ThemesPage, |
| cancelAtomicPurchaseFlow, |
| } from '@automattic/calypso-e2e'; |
| import { Page, Browser } from 'playwright'; |
| import { apiCloseAccount } from '../shared'; |
|
|
| declare const browser: Browser; |
|
|
| |
| |
| |
| |
| |
| describe( 'Lifecyle: Premium theme signup, onboard, launch and cancel subscription', function () { |
| const planName = 'Premium'; |
| let themeSlug: string | null = null; |
|
|
| const testUser = DataHelper.getNewTestUser( { |
| usernamePrefix: 'ftmepremium', |
| } ); |
|
|
| let page: Page; |
| let newUserDetails: NewUserResponse; |
| let newSiteDetails: NewSiteResponse; |
|
|
| beforeAll( async () => { |
| page = await browser.newPage(); |
| } ); |
|
|
| describe( 'Signup', function () { |
| let cartCheckoutPage: CartCheckoutPage; |
| let signupPickPlanPage: SignupPickPlanPage; |
|
|
| beforeAll( async function () { |
| await BrowserManager.setStoreCookie( page, { currency: 'USD' } ); |
| } ); |
|
|
| it( 'Navigate to Theme Showcase', async function () { |
| const themesPage = new ThemesPage( page ); |
| await themesPage.visitShowcase(); |
| } ); |
|
|
| it( 'Selects a Premium theme', async function () { |
| await page.locator( 'div.theme-card:has(div.theme-tier-badge--premium)' ).first().click(); |
| } ); |
|
|
| it( 'Navigate to Signup page', async function () { |
| const themeDetailsPage = new ThemesDetailPage( page ); |
|
|
| const pageMatch = new URL( page.url() ).pathname.match( 'theme/(.*)/?' ); |
|
|
| themeSlug = pageMatch?.[ 1 ] || null; |
|
|
| await themeDetailsPage.pickThisDesign(); |
| } ); |
|
|
| it( 'Sign up as new user', async function () { |
| const userSignupPage = new UserSignupPage( page ); |
| newUserDetails = await userSignupPage.signupSocialFirstWithEmail( testUser.email ); |
| } ); |
|
|
| it( 'Skip domain selection', async function () { |
| const domainSearch = new DomainSearchComponent( page ); |
|
|
| await domainSearch.search( testUser.siteName ); |
| await domainSearch.selectDomain( `${ testUser.siteName }.wordpress.com`, false ); |
| } ); |
|
|
| it( `Select WordPress.com ${ planName } plan`, async function () { |
| signupPickPlanPage = new SignupPickPlanPage( page ); |
| newSiteDetails = await signupPickPlanPage.selectPlan( planName ); |
| } ); |
|
|
| it( 'See secure payment', async function () { |
| cartCheckoutPage = new CartCheckoutPage( page ); |
| await cartCheckoutPage.validateCartItem( `WordPress.com ${ planName }` ); |
| } ); |
|
|
| it( 'Apply coupon', async function () { |
| await cartCheckoutPage.enterCouponCode( SecretsManager.secrets.testCouponCode ); |
| } ); |
|
|
| it( 'Enter billing and payment details', async function () { |
| const paymentDetails = DataHelper.getTestPaymentDetails(); |
| await cartCheckoutPage.enterBillingDetails( paymentDetails ); |
| await cartCheckoutPage.enterPaymentDetails( paymentDetails ); |
| } ); |
|
|
| it( 'Make purchase', async function () { |
| await cartCheckoutPage.purchase( { timeout: 90 * 1000 } ); |
| } ); |
|
|
| it( 'Installs theme in Marketplace thank you page', async () => { |
| await page.getByText( 'Customize this design' ).waitFor(); |
| } ); |
|
|
| it( 'Checks the active theme', async function () { |
| const restAPIClient = new RestAPIClient( |
| { |
| username: testUser.username, |
| password: testUser.password, |
| }, |
| newUserDetails.body.bearer_token |
| ); |
|
|
| const theme = await restAPIClient.getActiveTheme( newSiteDetails.blog_details.blogid ); |
|
|
| expect( theme ).toContain( themeSlug ); |
| } ); |
| } ); |
|
|
| describe( 'Cancel and remove plan', function () { |
| let noticeComponent: NoticeComponent; |
| let purchasesPage: PurchasesPage; |
|
|
| it( 'Navigate to Me > Purchases', async function () { |
| const mePage = new MyProfilePage( page ); |
| await mePage.visit(); |
|
|
| const meSidebarComponent = new MeSidebarComponent( page ); |
| await meSidebarComponent.openMobileMenu(); |
| await meSidebarComponent.navigate( 'Purchases' ); |
| } ); |
|
|
| it( 'View details of purchased plan and cancel plan', async function () { |
| purchasesPage = new PurchasesPage( page ); |
|
|
| await purchasesPage.clickOnPurchase( |
| `WordPress.com ${ planName }`, |
| newSiteDetails.blog_details.site_slug |
| ); |
| await purchasesPage.cancelPurchase( 'Cancel plan' ); |
| await cancelAtomicPurchaseFlow( page, { |
| reason: 'Another reason…', |
| customReasonText: 'E2E TEST CANCELLATION', |
| } ); |
| noticeComponent = new NoticeComponent( page ); |
| await noticeComponent.noticeShown( |
| 'Your refund has been processed and your purchase removed.', |
| { |
| timeout: 30 * 1000, |
| } |
| ); |
| } ); |
| } ); |
|
|
| afterAll( async function () { |
| if ( ! newUserDetails ) { |
| return; |
| } |
|
|
| const restAPIClient = new RestAPIClient( |
| { |
| username: testUser.username, |
| password: testUser.password, |
| }, |
| newUserDetails.body.bearer_token |
| ); |
|
|
| await apiCloseAccount( restAPIClient, { |
| userID: newUserDetails.body.user_id, |
| username: newUserDetails.body.username, |
| email: testUser.email, |
| } ); |
| } ); |
| } ); |
|
|