File size: 2,786 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 |
/**
* @jest-environment jsdom
*/
// @ts-nocheck - TODO: Fix TypeScript issues
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { renderHook } from '@testing-library/react';
import React from 'react';
import { Provider } from 'react-redux';
import configureStore from 'redux-mock-store';
import { plugin as plugin1, site as site1 } from '../../test/utils/constants';
import usePluginVersionInfo from '../use-plugin-version-info';
import type { PluginComponentProps } from '../../types';
describe( 'usePluginVersionInfo', () => {
const plugin2 = {
...plugin1,
version: '12.7',
};
const site2 = {
...site1,
ID: 123456,
};
const initialState = {
sites: { items: { [ site1.ID ]: site1, [ site2.ID ]: site2 } },
currentUser: {
capabilities: {},
},
plugins: {
installed: {
isRequesting: {},
isRequestingAll: false,
plugins: {
[ `${ site1.ID }` ]: [ plugin1 ],
[ `${ site2.ID }` ]: [ plugin2 ],
},
},
},
};
const mockStore = configureStore();
const store = mockStore( initialState );
const queryClient = new QueryClient();
const wrapper = ( { children } ) => (
<Provider store={ store }>
<QueryClientProvider client={ queryClient }>{ children }</QueryClientProvider>
</Provider>
);
it( 'should return the correct versions range and updated versions when the plugin is installed on many sites', () => {
// We don't need all the properties of the plugin, just the ones we use in the hook
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const pluginWithSites = {
...plugin1,
sites: {
[ site1.ID ]: {
active: true,
autoupdate: true,
version: '1.23',
},
[ site2.ID ]: {
active: true,
autoupdate: true,
version: '1.23',
},
},
} as PluginComponentProps;
const { result } = renderHook( () => usePluginVersionInfo( pluginWithSites ), {
wrapper,
} );
expect( result.current.currentVersionsRange ).toEqual( {
min: '11.3',
max: '12.7',
} );
expect( result.current.updatedVersions ).toEqual( [ '11.5', '11.5' ] );
expect( result.current.hasUpdate ).toEqual( true );
} );
it( 'should return the correct versions range and updated versions when the plugin is installed on one site', () => {
// We don't need all the properties of the plugin, just the ones we use in the hook
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const { result } = renderHook( () => usePluginVersionInfo( plugin2 ), {
wrapper,
} );
expect( result.current.currentVersionsRange ).toEqual( {
min: '11.3',
max: null,
} );
expect( result.current.updatedVersions ).toEqual( [ '11.5' ] );
expect( result.current.hasUpdate ).toEqual( true );
} );
} );
|