File size: 1,879 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 |
/**
* @jest-environment jsdom
*/
import { recordTracksEvent } from '@automattic/calypso-analytics';
import userSettings from 'calypso/state/user-settings/reducer';
import { renderWithProvider } from 'calypso/test-helpers/testing-library';
import TrackResurrections from '../';
function render( el, options ) {
return renderWithProvider( el, {
...options,
reducers: {
userSettings,
},
} );
}
jest.mock( '@automattic/calypso-analytics', () => ( {
recordTracksEvent: jest.fn( () => ( {
type: 'ANALYTICS_EVENT_RECORD',
} ) ),
} ) );
describe( 'TrackResurrections', () => {
afterEach( () => {
jest.clearAllMocks();
} );
it( 'should not call recordTracksEvent if fetching', () => {
render( <TrackResurrections />, {
initialState: {
userSettings: {
settings: {},
fetching: true,
},
},
} );
expect( recordTracksEvent ).toHaveBeenCalledTimes( 0 );
} );
it( 'should not call recordTracksEvent if lastSeen is less than one year ago', () => {
const resurrectedDate = Date.now() / 1000 - 2 * 30 * 24 * 60 * 60; // 2 months-ish.
render( <TrackResurrections />, {
initialState: {
userSettings: {
settings: {
last_admin_activity_timestamp: resurrectedDate,
},
fetching: false,
},
},
} );
expect( recordTracksEvent ).not.toHaveBeenCalled();
} );
it( 'should call recordTracksEvent if lastSeen is more than one year ago', () => {
const resurrectedDate = Date.now() / 1000 - 2 * 365 * 24 * 60 * 60; // 2 years in seconds.
render( <TrackResurrections />, {
initialState: {
userSettings: {
settings: {
last_admin_activity_timestamp: resurrectedDate,
},
fetching: false,
},
},
} );
expect( recordTracksEvent ).toHaveBeenCalledWith(
'calypso_user_resurrected',
expect.objectContaining( {
last_seen: resurrectedDate,
} )
);
} );
} );
|