File size: 3,587 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 |
/**
* @jest-environment jsdom
*/
import { render, screen } from '@testing-library/react';
import { Provider } from 'react-redux';
import configureStore from 'redux-mock-store';
import { transferStates } from '../../../state/automated-transfer/constants';
import HostingActivateStatus from '../hosting-activate-status';
const mockTransferStatus = transferStates.NONE;
const mockInitialState = {
sites: {
items: [],
requesting: {},
plans: {},
},
ui: {
selectedSiteId: 1,
},
currentUser: {
id: 12,
user: {
email_verified: true,
},
},
notices: {
items: [],
},
automatedTransfer: {
[ 1 ]: {
status: mockTransferStatus,
},
},
};
describe( 'index', () => {
test( 'Transfer status COMPLETED should return isTransferCompleted true', async () => {
mockInitialState.automatedTransfer[ 1 ].status = transferStates.COMPLETED;
const mockStore = configureStore();
const store = mockStore( mockInitialState );
const onTick = jest.fn();
render(
<Provider store={ store }>
<HostingActivateStatus onTick={ onTick } context="hosting" />
</Provider>
);
expect( onTick ).toHaveBeenCalledWith( false, false, true );
} );
test( 'Transfer status NONE should return isTransferCompleted true', async () => {
mockInitialState.automatedTransfer[ 1 ].status = transferStates.NONE;
const mockStore = configureStore();
const store = mockStore( mockInitialState );
const onTick = jest.fn();
render(
<Provider store={ store }>
<HostingActivateStatus onTick={ onTick } context="hosting" />
</Provider>
);
expect( onTick ).toHaveBeenCalledWith( false, false, true );
} );
test( 'Should show the transferring notice when the site is transferring to Atomic based on context', async () => {
mockInitialState.automatedTransfer[ 1 ].status = transferStates.PENDING;
const mockStore = configureStore();
const store = mockStore( mockInitialState );
render(
<Provider store={ store }>
<HostingActivateStatus context="hosting" />
</Provider>
);
expect(
screen.getByText( 'Please wait while we activate the hosting features.' )
).toBeInTheDocument();
render(
<Provider store={ store }>
<HostingActivateStatus context="plugin" />
</Provider>
);
expect(
screen.getByText( 'Please wait while we activate the plugin features.' )
).toBeInTheDocument();
render(
<Provider store={ store }>
<HostingActivateStatus context="theme" />
</Provider>
);
expect(
screen.getByText( 'Please wait while we activate the theme features.' )
).toBeInTheDocument();
} );
test( 'Should show error status and the transfer fails', async () => {
const mockStore = configureStore();
mockInitialState.automatedTransfer[ 1 ].status = transferStates.ERROR;
const store = mockStore( mockInitialState );
render(
<Provider store={ store }>
<HostingActivateStatus context="hosting" />
</Provider>
);
expect(
screen.queryByText( 'Please wait while we activate the hosting features.' )
).not.toBeInTheDocument();
expect(
screen.queryByText( 'There was an error activating hosting features.' )
).toBeInTheDocument();
render(
<Provider store={ store }>
<HostingActivateStatus context="plugin" />
</Provider>
);
expect(
screen.getByText( 'There was an error activating plugin features.' )
).toBeInTheDocument();
render(
<Provider store={ store }>
<HostingActivateStatus context="theme" />
</Provider>
);
expect(
screen.getByText( 'There was an error activating theme features.' )
).toBeInTheDocument();
} );
} );
|