File size: 6,188 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | /**
* @jest-environment jsdom
*/
// @ts-nocheck - TODO: Fix TypeScript issues
import { screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { useSiteMigrationKey } from 'calypso/landing/stepper/hooks/use-site-migration-key';
import { renderWithProvider } from 'calypso/test-helpers/testing-library';
import MigrationOverview from '..';
import type { SiteDetails } from '@automattic/data-stores';
const buildMigrationSite = ( {
status,
how,
canInstallPlugins = false,
}: {
status: string;
how?: string;
canInstallPlugins?: boolean;
} ) =>
( {
ID: 123,
slug: 'example.com',
site_migration: {
migration_status: [ 'migration', status, how ].filter( Boolean ).join( '-' ),
},
name: 'Bold Apps',
plan: {
features: {
active: canInstallPlugins ? [ 'install-plugins' ] : [],
},
},
} ) as SiteDetails;
jest.mock( 'calypso/state/ui/selectors', () => ( {
getSelectedSite: jest.fn(),
} ) );
jest.mock( 'calypso/landing/stepper/hooks/use-site-migration-key', () => ( {
useSiteMigrationKey: jest.fn(),
} ) );
const render = ( ui: React.ReactElement ) => renderWithProvider( ui );
describe( 'MigrationOverview', () => {
beforeEach( () => {
jest.clearAllMocks();
} );
const getStartDIYMigrationLink = () => {
return screen.queryByRole( 'link', { name: 'Complete migration' } );
};
const getStartDIFMMigrationLink = () => {
return screen.queryByRole( 'link', { name: 'Start your migration' } );
};
describe( 'DIY pending migration', () => {
it( 'shows the migration pending instructions', () => {
const site = buildMigrationSite( { status: 'pending', how: 'diy' } );
jest.mocked( useSiteMigrationKey ).mockReturnValue( {
data: { migrationKey: '123' },
isLoading: false,
isError: false,
error: null,
status: 'success',
} );
const { getByText } = renderWithProvider( <MigrationOverview site={ site } /> );
expect(
getByText(
/Get ready for unmatched WordPress hosting. Use your migration key to complete your migration in the/
)
).toBeVisible();
} );
it( 'shows a link to the instructions page', () => {
const site = buildMigrationSite( {
status: 'pending',
how: 'diy',
canInstallPlugins: true,
} );
jest.mocked( useSiteMigrationKey ).mockReturnValue( {
data: { migrationKey: '123' },
isLoading: false,
isError: false,
error: null,
status: 'success',
} );
renderWithProvider( <MigrationOverview site={ site } /> );
const link = getStartDIYMigrationLink();
expect( link ).toHaveAttribute(
'href',
'/setup/site-migration/site-migration-instructions?siteId=123&siteSlug=example.com&ref=hosting-migration-overview'
);
} );
it( 'shows a link to copy the migration key if we have a migration key', () => {
const site = buildMigrationSite( {
status: 'pending',
how: 'diy',
canInstallPlugins: true,
} );
jest.mocked( useSiteMigrationKey ).mockReturnValue( {
data: { migrationKey: '123' },
isLoading: false,
isError: false,
error: null,
status: 'success',
} );
const { getByText } = renderWithProvider( <MigrationOverview site={ site } /> );
expect( getByText( /Copy migration key/ ) ).toBeVisible();
} );
it( 'shows a success notice if the migration key is copied', async () => {
const site = buildMigrationSite( {
status: 'pending',
how: 'diy',
canInstallPlugins: true,
} );
jest.mocked( useSiteMigrationKey ).mockReturnValue( {
data: { migrationKey: '123' },
isLoading: false,
isError: false,
error: null,
status: 'success',
} );
renderWithProvider( <MigrationOverview site={ site } /> );
await userEvent.click( screen.getByRole( 'button', { name: 'Copy migration key' } ) );
await waitFor( () => {
const notice = screen.getByText( 'Migration key copied successfully' );
expect( notice ).toBeInTheDocument();
} );
} );
} );
describe( 'DIFM pending migration', () => {
it( 'shows the migrating pending instructions', () => {
const site = buildMigrationSite( { status: 'pending', how: 'difm' } );
const { getByText } = render( <MigrationOverview site={ site } /> );
expect(
getByText( /Start your migration today and get ready for unmatched WordPress hosting./ )
).toBeVisible();
} );
it( 'shows a link to the instructions page', () => {
const site = buildMigrationSite( {
status: 'pending',
how: 'difm',
canInstallPlugins: true,
} );
render( <MigrationOverview site={ site } /> );
const link = getStartDIFMMigrationLink();
expect( link ).toHaveAttribute(
'href',
'/setup/site-migration/site-migration-credentials?siteId=123&siteSlug=example.com&ref=hosting-migration-overview'
);
} );
} );
describe( 'DIY started migration', () => {
it( 'shows the migrating started instructions', () => {
const site = buildMigrationSite( { status: 'started', how: 'diy' } );
render( <MigrationOverview site={ site } /> );
expect( screen.queryByText( /Your migration is underway/ ) ).toBeVisible();
} );
it( 'does not show the continue migration link', () => {
const site = buildMigrationSite( { status: 'started', how: 'diy' } );
render( <MigrationOverview site={ site } /> );
expect( getStartDIYMigrationLink() ).not.toBeInTheDocument();
} );
} );
describe( 'DIFM started migration', () => {
it( 'shows the migrating started instructions', () => {
const site = buildMigrationSite( { status: 'started', how: 'difm' } );
const { getByText } = render( <MigrationOverview site={ site } /> );
expect( getByText( /We've received your migration request/ ) ).toBeVisible();
expect(
getByText(
/We will review your site to make sure we have everything we need. Here's what you can expect next:/
)
).toBeVisible();
} );
it( 'does not show the continue migration link', () => {
const site = buildMigrationSite( { status: 'started', how: 'difm' } );
render( <MigrationOverview site={ site } /> );
expect( getStartDIFMMigrationLink() ).not.toBeInTheDocument();
} );
} );
} );
|