// @ts-nocheck - TODO: Fix TypeScript issues import * as AnonId from '../anon-id'; const mockLogError = jest.fn(); jest.mock( '../log-error', () => ( { logError: ( ...args ) => mockLogError( ...args ), } ) ); jest.mock( 'calypso/lib/wp' ); const mockedRecordTracksEvent = jest.fn(); const mockedGetTracksAnonymousUserId = jest.fn(); const mockedGetTracksLoadPromise = jest.fn(); const mockedGetCurrentUser = jest.fn(); jest.mock( '@automattic/calypso-analytics', () => ( { recordTracksEvent: ( ...args ) => mockedRecordTracksEvent( ...args ), getTracksAnonymousUserId: ( ...args ) => mockedGetTracksAnonymousUserId( ...args ), getTracksLoadPromise: ( ...args ) => mockedGetTracksLoadPromise( ...args ), getCurrentUser: ( ...args ) => mockedGetCurrentUser( ...args ), } ) ); function setSsrContext() { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore global.window = undefined; } function setBrowserContext() { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore global.window = {}; } beforeEach( () => { jest.resetAllMocks(); setBrowserContext(); jest.useRealTimers(); } ); describe( 'initializeAnonId', () => { it( 'should return null and log error when run under SSR', async () => { setSsrContext(); await expect( AnonId.initializeAnonId() ).resolves.toBe( null ); expect( mockLogError.mock.calls ).toMatchInlineSnapshot( ` Array [ Array [ Object { "message": "Trying to initialize anonId outside of a browser context.", }, ], ] ` ); } ); it( 'should work as expected when the anonId is immediately available', async () => { mockedGetTracksAnonymousUserId.mockImplementationOnce( () => 'anon-id-123' ); mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.resolve() ); expect( await AnonId.initializeAnonId() ).toBe( 'anon-id-123' ); expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 1 ); } ); it( 'should work as expected when the anonId is available after a few tries', async () => { jest.useFakeTimers(); mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.resolve() ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => null ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => undefined ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => '' ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => 'anon-id-123' ); const initializeAnonIdPromise = AnonId.initializeAnonId(); jest.runAllTimers(); expect( await initializeAnonIdPromise ).toBe( 'anon-id-123' ); expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 4 ); } ); it( 'should poll at intervals', async () => { jest.useFakeTimers(); mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.resolve() ); AnonId.initializeAnonId(); const intervalMs = 50; jest.advanceTimersByTime( 0 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 1 ); jest.advanceTimersByTime( intervalMs - 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 1 ); jest.advanceTimersByTime( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 2 ); jest.advanceTimersByTime( intervalMs - 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 2 ); jest.advanceTimersByTime( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 3 ); jest.advanceTimersByTime( intervalMs - 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 3 ); jest.clearAllTimers(); } ); it( 'should give up after many polling attempts and return null', async () => { jest.useFakeTimers(); mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.resolve() ); mockedGetTracksAnonymousUserId.mockImplementation( () => null ); const initializeAnonIdPromise = AnonId.initializeAnonId(); jest.runAllTimers(); expect( await initializeAnonIdPromise ).toBe( null ); expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 100 ); } ); it( 'should attempt once and return the anonId if immediately logged in', async () => { mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.resolve() ); mockedGetTracksAnonymousUserId.mockImplementation( () => 'the-anon-id' ); mockedGetCurrentUser.mockImplementationOnce( () => ( {} ) ); const initializeAnonIdPromise = AnonId.initializeAnonId(); expect( await initializeAnonIdPromise ).toBe( 'the-anon-id' ); expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 1 ); } ); it( 'should attempt before checking for being logged in', async () => { jest.useFakeTimers(); mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.resolve() ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => null ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => null ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => 'the-anon-id' ); mockedGetCurrentUser.mockImplementationOnce( () => undefined ); mockedGetCurrentUser.mockImplementationOnce( () => undefined ); mockedGetCurrentUser.mockImplementationOnce( () => ( {} ) ); const initializeAnonIdPromise = AnonId.initializeAnonId(); jest.runAllTimers(); expect( await initializeAnonIdPromise ).toBe( 'the-anon-id' ); expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 3 ); } ); it( "should give up and return null if tracks doesn't load", async () => { jest.useFakeTimers(); mockedGetTracksLoadPromise.mockImplementationOnce( () => Promise.reject() ); mockedGetTracksAnonymousUserId.mockImplementationOnce( () => null ); mockedGetCurrentUser.mockImplementationOnce( () => undefined ); const initializeAnonIdPromise = AnonId.initializeAnonId(); expect( await initializeAnonIdPromise ).toBe( null ); jest.runAllTimers(); expect( mockedRecordTracksEvent.mock.calls.length ).toBe( 1 ); expect( mockedGetTracksAnonymousUserId.mock.calls.length ).toBe( 1 ); } ); } ); describe( 'getAnonId', () => { it( 'should return null and log in SSR', async () => { setSsrContext(); expect( await AnonId.getAnonId() ).toBeNull(); expect( mockLogError.mock.calls ).toMatchInlineSnapshot( ` Array [ Array [ Object { "message": "Trying to getAnonId in non browser context.", }, ], ] ` ); } ); it( 'should return the anonId from initialisation', async () => { const anonId = 'anon-id-234'; mockedGetTracksAnonymousUserId.mockImplementationOnce( () => anonId ); expect( await AnonId.initializeAnonId() ).toBe( anonId ); expect( await AnonId.getAnonId() ).toBe( anonId ); mockedGetCurrentUser.mockImplementationOnce( () => ( {} ) ); expect( await AnonId.initializeAnonId() ).toBe( null ); expect( await AnonId.getAnonId() ).toBe( null ); } ); } );