File size: 7,100 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 225 226 227 |
/** @jest-environment jsdom */
jest.mock( '@automattic/calypso-router' );
jest.mock( 'calypso/lib/wporg', () => ( {
getWporgLocaleCode: () => 'it_US',
fetchPluginsList: () => Promise.resolve( [] ),
} ) );
jest.mock( 'calypso/lib/url-search', () => ( Component ) => ( props ) => (
<Component { ...props } doSearch={ jest.fn() } />
) );
jest.mock( 'calypso/blocks/upsell-nudge', () => ( { plan } ) => (
<div data-testid="upsell-nudge">{ plan }</div>
) );
let mockPlugins = [];
jest.mock( 'calypso/data/marketplace/use-wporg-plugin-query', () => ( {
useWPORGPlugins: jest.fn( () => ( { data: { plugins: mockPlugins } } ) ),
useWPORGInfinitePlugins: jest.fn( () => ( {
data: { plugins: mockPlugins },
fetchNextPage: jest.fn(),
} ) ),
} ) );
jest.mock( 'calypso/data/marketplace/use-wpcom-plugins-query', () => ( {
useWPCOMPluginsList: () => ( { data: [] } ),
useWPCOMFeaturedPlugins: () => ( { data: [] } ),
} ) );
jest.mock( 'calypso/data/marketplace/use-es-query', () => ( {
useSiteSearchPlugins: jest.fn( () => ( {
data: { plugins: mockPlugins },
fetchNextPage: jest.fn(),
} ) ),
useESPluginsInfinite: jest.fn( () => ( {
data: { plugins: mockPlugins },
fetchNextPage: jest.fn(),
} ) ),
} ) );
jest.mock( '@automattic/languages', () => [
{
value: 1,
langSlug: 'it',
name: 'Italian English',
wpLocale: 'it_US',
popular: 1,
territories: [ '019' ],
},
] );
jest.mock( 'calypso/state/purchases/selectors', () => ( {
getUserPurchases: jest.fn(),
isFetchingSitePurchases: jest.fn( () => false ),
} ) );
jest.mock( 'calypso/my-sites/plugins/use-preinstalled-premium-plugin', () =>
jest.fn( () => ( { usePreinstalledPremiumPlugin: jest.fn() } ) )
);
jest.mock( 'calypso/lib/route/path', () => ( {
...jest.requireActual( 'calypso/lib/route/path' ),
getMessagePathForJITM: jest.fn( () => '/plugins/' ),
} ) );
import {
FEATURE_INSTALL_PLUGINS,
PLAN_FREE,
PLAN_BUSINESS,
PLAN_BUSINESS_2_YEARS,
PLAN_PREMIUM,
PLAN_PREMIUM_2_YEARS,
PLAN_PERSONAL,
PLAN_PERSONAL_2_YEARS,
PLAN_BLOGGER,
PLAN_BLOGGER_2_YEARS,
} from '@automattic/calypso-products';
import { screen } from '@testing-library/react';
import { merge } from 'lodash';
import documentHead from 'calypso/state/document-head/reducer';
import { reducer as jetpackConnectionHealth } from 'calypso/state/jetpack-connection-health/reducer';
import plugins from 'calypso/state/plugins/reducer';
import productsList from 'calypso/state/products-list/reducer';
import siteConnection from 'calypso/state/site-connection/reducer';
import { reducer as ui } from 'calypso/state/ui/reducer';
import { renderWithProvider } from 'calypso/test-helpers/testing-library';
import PluginsBrowser from '../';
const initialReduxState = {
plugins: {
installed: {
isRequesting: {},
plugins: {},
status: {},
},
},
ui: { selectedSiteId: 1 },
siteConnection: { items: { 1: true } },
sites: {
items: { 1: { ID: 1, title: 'Test Site', plan: { productSlug: PLAN_FREE } } },
},
currentUser: { capabilities: { 1: { manage_options: true } } },
documentHead: {},
productsList: {},
};
const render = ( el, options = {} ) =>
renderWithProvider( el, {
...options,
initialState: merge( initialReduxState, options.initialState ),
reducers: { ui, plugins, documentHead, productsList, siteConnection, jetpackConnectionHealth },
} );
window.__i18n_text_domain__ = JSON.stringify( 'default' );
window.IntersectionObserver = jest.fn( () => ( { observe: jest.fn(), disconnect: jest.fn() } ) );
describe( 'Search view', () => {
const myProps = {
search: 'searchterm',
};
test( 'should show NoResults when there are no results', () => {
render( <PluginsBrowser { ...myProps } /> );
expect( screen.getByText( /no matches found/i ) ).toBeVisible();
} );
test( 'should show plugin list when there are results', () => {
mockPlugins = [ {} ];
render( <PluginsBrowser { ...myProps } /> );
expect( screen.getByText( /found 0 plugins for/i ) ).toBeVisible();
} );
} );
describe( 'Upsell Nudge should get appropriate plan constant', () => {
test.each( [ PLAN_FREE, PLAN_BLOGGER, PLAN_PERSONAL, PLAN_PREMIUM ] )(
`Business 1 year for (%s)`,
( product_slug ) => {
const initialState = {
sites: {
items: { 1: { jetpack: false, plan: { product_slug } } },
features: { 1: { data: [ FEATURE_INSTALL_PLUGINS ] } },
},
};
render( <PluginsBrowser />, { initialState } );
const nudge = screen.getByTestId( 'upsell-nudge' );
expect( nudge ).toBeVisible();
expect( nudge ).toHaveTextContent( PLAN_BUSINESS );
}
);
test.each( [ PLAN_BLOGGER_2_YEARS, PLAN_PERSONAL_2_YEARS, PLAN_PREMIUM_2_YEARS ] )(
`Business 2 year for (%s)`,
( product_slug ) => {
const initialState = {
sites: { items: { 1: { jetpack: false, plan: { product_slug } } } },
};
render( <PluginsBrowser />, { initialState } );
const nudge = screen.getByTestId( 'upsell-nudge' );
expect( nudge ).toBeVisible();
expect( nudge ).toHaveTextContent( PLAN_BUSINESS_2_YEARS );
}
);
} );
describe( 'PluginsBrowser basic tests', () => {
test( 'should not blow up and have proper CSS class', () => {
render( <PluginsBrowser /> );
const main = screen.getByRole( 'main' );
expect( main ).toBeVisible();
} );
test( 'should show upsell nudge when appropriate', () => {
render( <PluginsBrowser /> );
expect( screen.getByTestId( 'upsell-nudge' ) ).toBeVisible();
} );
test( 'should not show upsell nudge if no site is selected', () => {
const initialState = { ui: { selectedSiteId: null } };
render( <PluginsBrowser />, { initialState } );
expect( screen.queryByTestId( 'upsell-nudge' ) ).not.toBeInTheDocument();
} );
test( 'should not show upsell nudge if no sitePlan', () => {
const initialState = {
ui: { selectedSiteId: 10 },
sites: { items: { 10: { ID: 10, plan: null } } },
};
render( <PluginsBrowser />, { initialState } );
expect( screen.queryByTestId( 'upsell-nudge' ) ).not.toBeInTheDocument();
} );
test( 'should not show upsell nudge if non-atomic jetpack site', () => {
const initialState = {
sites: { items: { 1: { jetpack: true } } },
};
render( <PluginsBrowser />, { initialState } );
expect( screen.queryByTestId( 'upsell-nudge' ) ).not.toBeInTheDocument();
} );
test( 'should not show upsell nudge has business plan', () => {
const initialState = {
sites: { items: { 1: { jetpack: true, plan: { productSlug: PLAN_PREMIUM } } } },
};
render( <PluginsBrowser />, { initialState } );
expect( screen.queryByTestId( 'upsell-nudge' ) ).not.toBeInTheDocument();
} );
test( 'should show notice if site is not connected to wpcom', () => {
const lastRequestTime = Date.now() - 1000 * 60 * 4;
const initialState = {
ui: { selectedSiteId: 1 },
jetpackConnectionHealth: {
1: {
lastRequestTime,
connectionHealth: {
jetpack_connection_problem: true,
error: 'test',
},
},
},
sites: {
items: { 1: { jetpack: true } },
},
};
render( <PluginsBrowser />, { initialState } );
expect( screen.getByText( 'Learn how to fix' ) ).toBeVisible();
} );
} );
|