-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat.googleads.ecom.spec.support.v2
- Loading branch information
Showing
30 changed files
with
18,545 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
packages/analytics-js-common/src/constants/integrations/Ninetailed/constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const DIR_NAME = 'Ninetailed'; | ||
const NAME = 'NINETAILED'; | ||
const DISPLAY_NAME = 'Ninetailed'; | ||
|
||
const DISPLAY_NAME_TO_DIR_NAME_MAP = { [DISPLAY_NAME]: DIR_NAME }; | ||
const CNameMapping = { | ||
[NAME]: NAME, | ||
Ninetailed: NAME, | ||
ninetailed: NAME, | ||
NineTailed: NAME, | ||
}; | ||
|
||
export { NAME, CNameMapping, DISPLAY_NAME_TO_DIR_NAME_MAP, DISPLAY_NAME, DIR_NAME }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
148 changes: 148 additions & 0 deletions
148
packages/analytics-js-integrations/__tests__/integrations/Ninetailed/browser.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
import Ninetailed from '../../../src/integrations/Ninetailed/browser'; | ||
|
||
const destinationInfo = { | ||
areTransformationsConnected: false, | ||
destinationId: 'sample-destination-id', | ||
}; | ||
|
||
describe('Ninetailed Intialization', () => { | ||
let nt; | ||
beforeEach(() => { | ||
nt = new Ninetailed({}, { loglevel: 'DEBUG' }, destinationInfo); | ||
}); | ||
afterEach(() => { | ||
jest.restoreAllMocks(); | ||
window.ninetailed = undefined; | ||
}); | ||
describe(' Is Loaded test Cases', () => { | ||
// when ninetailed is not loaded from webapp | ||
test('isLoaded should return False', () => { | ||
expect(nt.isLoaded()).toBe(false); | ||
}); | ||
// when ninetailed is loaded from webapp | ||
test('isLoaded should return True', () => { | ||
// since init call does not have any body so we are intialising the ninetailed object | ||
window.ninetailed = {}; | ||
expect(nt.isLoaded()).toBeTruthy(); | ||
}); | ||
}); | ||
describe(' Is Ready test Cases', () => { | ||
// when ninetailed is not loaded from webapp | ||
test('isReady should return False', () => { | ||
expect(nt.isReady()).toBe(false); | ||
}); | ||
// when ninetailed is loaded from webapp | ||
test('isReady should return True', () => { | ||
// since init call does not have any body so we are intialising the ninetailed object | ||
window.ninetailed = {}; | ||
expect(nt.isReady()).toBeTruthy(); | ||
}); | ||
}); | ||
}); | ||
describe('Ninetailed Event APIs', () => { | ||
beforeEach(() => { | ||
window.ninetailed = {}; | ||
}); | ||
describe('Page', () => { | ||
let nt; | ||
beforeEach(() => { | ||
nt = new Ninetailed({}, { loglevel: 'DEBUG' }, destinationInfo); | ||
window.ninetailed.page = jest.fn(); | ||
}); | ||
afterAll(() => { | ||
jest.restoreAllMocks(); | ||
}); | ||
test('send pageview with properties', () => { | ||
const properties = { | ||
category: 'test cat', | ||
path: '/test', | ||
url: 'http://localhost:8080', | ||
referrer: '', | ||
title: 'test page', | ||
testDimension: 'abc', | ||
isRudderEvents: true, | ||
}; | ||
|
||
nt.page({ | ||
message: { | ||
context: {}, | ||
properties, | ||
}, | ||
}); | ||
expect(window.ninetailed.page.mock.calls[0][0]).toEqual(properties); | ||
}); | ||
test('send pageview without properties', () => { | ||
nt.page({ | ||
message: { | ||
context: {}, | ||
}, | ||
}); | ||
expect(window.ninetailed.page.mock.calls[0][0]).toEqual(undefined); | ||
}); | ||
}); | ||
describe('Track', () => { | ||
let nt; | ||
beforeEach(() => { | ||
nt = new Ninetailed({}, { loglevel: 'DEBUG' }, destinationInfo); | ||
window.ninetailed.track = jest.fn(); | ||
}); | ||
afterAll(() => { | ||
jest.restoreAllMocks(); | ||
}); | ||
test('Testing Track Event with event', () => { | ||
const properties = { | ||
customProp: 'testProp', | ||
checkout_id: 'what is checkout id here??', | ||
event_id: 'purchaseId', | ||
order_id: 'transactionId', | ||
value: 35.0, | ||
shipping: 4.0, | ||
isRudderEvents: true, | ||
}; | ||
nt.track({ | ||
message: { | ||
context: {}, | ||
event: 'Custom', | ||
properties, | ||
}, | ||
}); | ||
expect(window.ninetailed.track.mock.calls[0][0]).toEqual('Custom'); | ||
expect(window.ninetailed.track.mock.calls[0][1]).toEqual(properties); | ||
}); | ||
test('Testing Track Event without event', () => { | ||
nt.track({ | ||
message: { | ||
context: {}, | ||
properties: {}, | ||
}, | ||
}); | ||
expect(window.ninetailed.track).not.toHaveBeenCalledWith(); | ||
}); | ||
}); | ||
describe('Identify', () => { | ||
let nt; | ||
beforeEach(() => { | ||
nt = new Ninetailed({}, { loglevel: 'DEBUG' }, destinationInfo); | ||
window.ninetailed.identify = jest.fn(); | ||
}); | ||
afterAll(() => { | ||
jest.restoreAllMocks(); | ||
}); | ||
test('Testing Identify Custom Events', () => { | ||
const traits = { | ||
email: '[email protected]', | ||
isRudderEvents: true, | ||
}; | ||
nt.identify({ | ||
message: { | ||
userId: 'rudder01', | ||
context: { | ||
traits, | ||
}, | ||
}, | ||
}); | ||
expect(window.ninetailed.identify.mock.calls[0][0]).toEqual('rudder01'); | ||
expect(window.ninetailed.identify.mock.calls[0][1]).toEqual(traits); | ||
}); | ||
}); | ||
}); |
65 changes: 65 additions & 0 deletions
65
packages/analytics-js-integrations/src/integrations/Ninetailed/browser.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* eslint-disable no-underscore-dangle */ | ||
/* eslint-disable class-methods-use-this */ | ||
import { | ||
NAME, | ||
DISPLAY_NAME, | ||
} from '@rudderstack/analytics-js-common/constants/integrations/Ninetailed/constants'; | ||
import Logger from '../../utils/logger'; | ||
|
||
const logger = new Logger(DISPLAY_NAME); | ||
class Ninetailed { | ||
constructor(config, analytics, destinationInfo) { | ||
if (analytics.logLevel) { | ||
logger.setLogLevel(analytics.logLevel); | ||
} | ||
this.analytics = analytics; | ||
this.name = NAME; | ||
({ | ||
shouldApplyDeviceModeTransformation: this.shouldApplyDeviceModeTransformation, | ||
propagateEventsUntransformedOnError: this.propagateEventsUntransformedOnError, | ||
destinationId: this.destinationId, | ||
} = destinationInfo ?? {}); | ||
} | ||
|
||
init() { | ||
// We expect the customer to load the SDK through NPM package | ||
// Docs: https://docs.ninetailed.io/for-developers/experience-sdk/getting-started | ||
} | ||
|
||
isLoaded() { | ||
return !!window.ninetailed; | ||
} | ||
|
||
isReady() { | ||
return this.isLoaded(); | ||
} | ||
|
||
identify(rudderElement) { | ||
const { message } = rudderElement; | ||
const { userId, context } = message; | ||
const userTraits = { ...context?.traits }; | ||
// for userId: until we don't pass the id to ninetailed, it will not make server identify call but is accepting the data | ||
window.ninetailed.identify(userId, userTraits); | ||
} | ||
track(rudderElement) { | ||
const { message } = rudderElement; | ||
const { properties, event } = message; | ||
if (!event) { | ||
logger.error('Event name is required'); | ||
return; | ||
} | ||
window.ninetailed.track(event, properties); | ||
} | ||
page(rudderElement) { | ||
const { message } = rudderElement; | ||
const { properties } = message; | ||
if (properties) { | ||
properties.url = window.location.href; | ||
window.ninetailed.page(properties); | ||
return; | ||
} | ||
window.ninetailed.page(); | ||
} | ||
} | ||
|
||
export default Ninetailed; |
1 change: 1 addition & 0 deletions
1
packages/analytics-js-integrations/src/integrations/Ninetailed/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as Ninetailed } from './browser'; |
23 changes: 23 additions & 0 deletions
23
packages/analytics-js-integrations/src/integrations/Ninetailed/sample-app/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
Oops, something went wrong.