| |
| |
| |
|
|
| import url from 'url'; |
| import { loadScript } from '@automattic/load-script'; |
| import cookie from 'cookie'; |
| import { recordAliasInFloodlight } from 'calypso/lib/analytics/ad-tracking'; |
| import { identifyUser } from 'calypso/lib/analytics/identify-user'; |
| import { initializeAnalytics } from 'calypso/lib/analytics/init'; |
| import { bumpStat, bumpStatWithPageView } from 'calypso/lib/analytics/mc'; |
| import { recordTracksEvent, tracksEvents } from 'calypso/lib/analytics/tracks'; |
|
|
| jest.mock( '@automattic/calypso-config', () => require( './mocks/config' ) ); |
| jest.mock( 'calypso/lib/analytics/ad-tracking', () => ( { |
| retarget: () => {}, |
| recordAliasInFloodlight: jest.fn(), |
| } ) ); |
|
|
| jest.mock( '@automattic/load-script', () => ( { |
| loadScript: jest.fn( () => Promise.reject() ), |
| } ) ); |
|
|
| jest.mock( 'cookie', () => ( { |
| parse: jest.fn(), |
| serialize: jest.fn(), |
| } ) ); |
|
|
| jest.mock( 'calypso/lib/jetpack/is-jetpack-cloud', () => () => false ); |
|
|
| function logImageLoads() { |
| const imagesLoaded = []; |
| let originalImage; |
|
|
| beforeAll( function spyOnImage() { |
| imagesLoaded.length = 0; |
| originalImage = global.Image; |
|
|
| global.Image = function () { |
| this._src = ''; |
| }; |
|
|
| Object.defineProperty( global.Image.prototype, 'src', { |
| get: function () { |
| return this._src; |
| }, |
| set: function ( value ) { |
| this._src = value; |
| imagesLoaded.push( url.parse( value, true, true ) ); |
| }, |
| } ); |
| } ); |
|
|
| afterAll( function tearDownSpy() { |
| global.Image = originalImage; |
| } ); |
|
|
| return imagesLoaded; |
| } |
|
|
| describe( 'Analytics', () => { |
| const imagesLoaded = logImageLoads(); |
|
|
| beforeEach( () => { |
| |
| imagesLoaded.length = 0; |
| } ); |
|
|
| describe( 'mc', () => { |
| test( 'bumpStat with group and stat', () => { |
| bumpStat( 'go', 'time' ); |
| expect( imagesLoaded[ 0 ].query.v ).toEqual( 'wpcom-no-pv' ); |
| expect( imagesLoaded[ 0 ].query.x_go ).toEqual( 'time' ); |
| expect( imagesLoaded[ 0 ].query.t ).toBeTruthy(); |
| } ); |
|
|
| test( 'bumpStat with value object', () => { |
| bumpStat( { |
| go: 'time', |
| another: 'one', |
| } ); |
| expect( imagesLoaded[ 0 ].query.v ).toEqual( 'wpcom-no-pv' ); |
| expect( imagesLoaded[ 0 ].query.x_go ).toEqual( 'time' ); |
| expect( imagesLoaded[ 0 ].query.x_another ).toEqual( 'one' ); |
| expect( imagesLoaded[ 0 ].query.t ).toBeTruthy(); |
| } ); |
|
|
| test( 'bumpStatWithPageView with group and stat', () => { |
| bumpStatWithPageView( 'go', 'time' ); |
| expect( imagesLoaded[ 0 ].query.v ).toEqual( 'wpcom' ); |
| expect( imagesLoaded[ 0 ].query.go ).toEqual( 'time' ); |
| expect( imagesLoaded[ 0 ].query.t ).toBeTruthy(); |
| } ); |
|
|
| test( 'bumpStatWithPageView with value object', () => { |
| bumpStatWithPageView( { |
| go: 'time', |
| another: 'one', |
| } ); |
| expect( imagesLoaded[ 0 ].query.v ).toEqual( 'wpcom' ); |
| expect( imagesLoaded[ 0 ].query.go ).toEqual( 'time' ); |
| expect( imagesLoaded[ 0 ].query.another ).toEqual( 'one' ); |
| expect( imagesLoaded[ 0 ].query.t ).toBeTruthy(); |
| } ); |
| } ); |
|
|
| describe( 'identifyUser', () => { |
| beforeEach( () => { |
| window._tkq = { |
| push: jest.fn(), |
| }; |
| cookie.parse.mockImplementation( () => ( { tk_ai: true } ) ); |
| } ); |
|
|
| afterEach( () => { |
| recordAliasInFloodlight.mockReset(); |
| } ); |
|
|
| test( 'should not call window._tkq.push or recordAliasInFloodlight when there is no user data', () => { |
| identifyUser( {} ); |
| expect( window._tkq.push ).not.toHaveBeenCalled(); |
| expect( recordAliasInFloodlight ).not.toHaveBeenCalled(); |
| } ); |
|
|
| test( 'should not call window._tkq.push and recordAliasInFloodlight when user ID is missing', () => { |
| identifyUser( { ID: undefined, username: 'eight', email: 'eight@example.com' } ); |
| expect( window._tkq.push ).not.toHaveBeenCalled(); |
| expect( recordAliasInFloodlight ).not.toHaveBeenCalled(); |
| } ); |
|
|
| test( 'should not call window._tkq.push and recordAliasInFloodlight when username is missing', () => { |
| identifyUser( { ID: 8, username: undefined, email: 'eight@example.com' } ); |
| expect( window._tkq.push ).not.toHaveBeenCalled(); |
| expect( recordAliasInFloodlight ).not.toHaveBeenCalled(); |
| } ); |
|
|
| test( 'should not call window._tkq.push and recordAliasInFloodlight when email is missing', () => { |
| identifyUser( { ID: 8, username: 'eight', email: undefined } ); |
| expect( window._tkq.push ).not.toHaveBeenCalled(); |
| expect( recordAliasInFloodlight ).not.toHaveBeenCalled(); |
| } ); |
|
|
| test( 'should call window._tkq.push and recordAliasInFloodlight when user ID, username, and email are given', () => { |
| identifyUser( { ID: '8', username: 'eight', email: 'eight@example.com' } ); |
| expect( recordAliasInFloodlight ).toHaveBeenCalled(); |
| expect( window._tkq.push ).toHaveBeenCalledWith( [ 'identifyUser', 8, 'eight' ] ); |
| } ); |
|
|
| test( 'should not call recordAliasInFloodlight when anonymousUserId does not exist', () => { |
| cookie.parse.mockImplementationOnce( () => ( {} ) ); |
| identifyUser( { ID: 8, username: 'eight', email: 'eight@example.com' } ); |
| expect( recordAliasInFloodlight ).not.toHaveBeenCalled(); |
| expect( window._tkq.push ).toHaveBeenCalledWith( [ 'identifyUser', 8, 'eight' ] ); |
| } ); |
| } ); |
| describe( 'initialize', () => { |
| beforeEach( () => { |
| loadScript.mockReset(); |
|
|
| cookie.parse.mockImplementation( () => ( {} ) ); |
| cookie.serialize.mockImplementation( () => {} ); |
| } ); |
| test( 'if stat.js load fails, should load nostat.js', () => { |
| return initializeAnalytics().then( () => { |
| expect( loadScript ).toHaveBeenCalledWith( expect.stringMatching( /\/nostats.js/ ) ); |
| } ); |
| } ); |
| } ); |
| describe( 'tracks', () => { |
| describe( 'recordEvent', () => { |
| beforeEach( () => { |
| window._tkq = { |
| push: jest.fn(), |
| }; |
| cookie.parse.mockImplementation( () => ( { tk_ai: true } ) ); |
| global.console.error = jest.fn(); |
| } ); |
|
|
| test( 'should log error if event name does not match regex', () => { |
| recordTracksEvent( 'calypso_!!!' ); |
| expect( global.console.error ).toHaveBeenCalledWith( expect.any( String ), 'calypso_!!!' ); |
| } ); |
|
|
| test( 'should log error if nested property', () => { |
| recordTracksEvent( 'calypso_abc_def', { |
| nested: {}, |
| } ); |
| expect( global.console.error ).not.toHaveBeenCalledWith( |
| expect.any( String ), |
| 'calypso_abc_def' |
| ); |
| expect( global.console.error ).toHaveBeenCalledWith( expect.any( String ), { nested: {} } ); |
| } ); |
|
|
| test( 'should log error if property names do not match regex', () => { |
| recordTracksEvent( 'calypso_abc_def', { |
| 'incorrect!': 'property', |
| } ); |
| expect( global.console.error ).toHaveBeenCalledWith( |
| expect.any( String ), |
| expect.any( String ), |
| 'incorrect!' |
| ); |
| } ); |
|
|
| test( 'should log error if using a special reserved property name', () => { |
| recordTracksEvent( 'calypso_abc_def', { |
| geo: 'property', |
| } ); |
| expect( global.console.error ).toHaveBeenCalledWith( |
| expect.any( String ), |
| 'geo', |
| expect.any( String ) |
| ); |
| } ); |
|
|
| test( 'should add _superProps if they are initialized', () => { |
| initializeAnalytics( {}, () => { |
| return { super: 'prop' }; |
| } ); |
| recordTracksEvent( 'calypso_abc_def' ); |
|
|
| expect( window._tkq.push ).toHaveBeenCalledWith( [ |
| 'recordEvent', |
| 'calypso_abc_def', |
| { super: 'prop' }, |
| ] ); |
| } ); |
|
|
| test( 'should notify listeners when event is recorded', () => { |
| let numCalled = 0; |
| tracksEvents.addListener( 'record-event', () => { |
| numCalled++; |
| } ); |
| recordTracksEvent( 'calypso_abc_def' ); |
| expect( numCalled ).toEqual( 1 ); |
| } ); |
| } ); |
| } ); |
| } ); |
|
|