-
Notifications
You must be signed in to change notification settings - Fork 113
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 gaoc.refactor-proxy
- Loading branch information
Showing
9 changed files
with
954 additions
and
580 deletions.
There are no files selected for viewing
376 changes: 376 additions & 0 deletions
376
test/integrations/destinations/google_adwords_remarketing_lists/dataDelivery/business.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,376 @@ | ||
import { | ||
generateMetadata, | ||
generateProxyV0Payload, | ||
generateProxyV1Payload, | ||
} from '../../../testUtils'; | ||
|
||
const commonHeaders = { | ||
Authorization: 'Bearer dummy-access', | ||
'Content-Type': 'application/json', | ||
'developer-token': 'dummy-dev-token', | ||
}; | ||
|
||
const commonParams = { | ||
destination: 'google_adwords_remarketing_lists', | ||
listId: '709078448', | ||
customerId: '7693729833', | ||
consent: { adPersonalization: 'UNSPECIFIED', adUserData: 'UNSPECIFIED' }, | ||
}; | ||
|
||
const validRequestPayload1 = { | ||
enablePartialFailure: true, | ||
operations: [ | ||
{ | ||
create: { | ||
userIdentifiers: [ | ||
{ | ||
hashedEmail: '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', | ||
}, | ||
{ | ||
hashedPhoneNumber: '8846dcb6ab2d73a0e67dbd569fa17cec2d9d391e5b05d1dd42919bc21ae82c45', | ||
}, | ||
{ | ||
hashedEmail: '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', | ||
}, | ||
{ | ||
hashedPhoneNumber: '8846dcb6ab2d73a0e67dbd569fa17cec2d9d391e5b05d1dd42919bc21ae82c45', | ||
}, | ||
{ | ||
addressInfo: { | ||
hashedFirstName: 'e56d336922eaab3be8c1244dbaa713e134a8eba50ddbd4f50fd2fe18d72595cd', | ||
}, | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
}; | ||
|
||
const validRequestPayload2 = { | ||
enablePartialFailure: true, | ||
operations: [ | ||
{ | ||
remove: { | ||
userIdentifiers: [ | ||
{ | ||
hashedEmail: '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', | ||
}, | ||
{ | ||
hashedPhoneNumber: '8846dcb6ab2d73a0e67dbd569fa17cec2d9d391e5b05d1dd42919bc21ae82c45', | ||
}, | ||
{ | ||
hashedEmail: '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', | ||
}, | ||
{ | ||
hashedPhoneNumber: '8846dcb6ab2d73a0e67dbd569fa17cec2d9d391e5b05d1dd42919bc21ae82c45', | ||
}, | ||
{ | ||
addressInfo: { | ||
hashedFirstName: 'e56d336922eaab3be8c1244dbaa713e134a8eba50ddbd4f50fd2fe18d72595cd', | ||
}, | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
}; | ||
|
||
const invalidArgumentRequestPayload = { | ||
enablePartialFailure: true, | ||
operations: [ | ||
{ | ||
create: { | ||
userIdentifiers: [ | ||
{ | ||
hashedEmail: '[email protected]', | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
}; | ||
|
||
const metadataArray = [generateMetadata(1)]; | ||
|
||
const expectedStatTags = { | ||
destType: 'GOOGLE_ADWORDS_REMARKETING_LISTS', | ||
destinationId: 'default-destinationId', | ||
errorCategory: 'network', | ||
errorType: 'aborted', | ||
feature: 'dataDelivery', | ||
implementation: 'native', | ||
module: 'destination', | ||
workspaceId: 'default-workspaceId', | ||
}; | ||
|
||
export const testScenariosForV0API = [ | ||
{ | ||
id: 'garl_v0_scenario_1', | ||
name: 'google_adwords_remarketing_lists', | ||
description: | ||
'[Proxy v0 API] :: Test for a valid request with a successful 200 response from the destination', | ||
successCriteria: 'Should return 200 with no error with destination response', | ||
scenario: 'Business', | ||
feature: 'dataDelivery', | ||
module: 'destination', | ||
version: 'v0', | ||
input: { | ||
request: { | ||
body: generateProxyV0Payload({ | ||
headers: commonHeaders, | ||
params: commonParams, | ||
JSON: validRequestPayload1, | ||
endpoint: 'https://googleads.googleapis.com/v15/customers/7693729833/offlineUserDataJobs', | ||
}), | ||
method: 'POST', | ||
}, | ||
}, | ||
output: { | ||
response: { | ||
status: 200, | ||
body: { | ||
output: { | ||
status: 200, | ||
message: 'Request Processed Successfully', | ||
destinationResponse: { response: '', status: 200 }, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: 'garl_v0_scenario_2', | ||
name: 'google_adwords_remarketing_lists', | ||
description: | ||
'[Proxy v0 API] :: Test for a invalid argument request with a 400 response from the destination', | ||
successCriteria: 'Should return 400 with invalid argument error with destination response', | ||
scenario: 'Business', | ||
feature: 'dataDelivery', | ||
module: 'destination', | ||
version: 'v0', | ||
input: { | ||
request: { | ||
body: generateProxyV0Payload({ | ||
headers: commonHeaders, | ||
params: commonParams, | ||
JSON: invalidArgumentRequestPayload, | ||
endpoint: 'https://googleads.googleapis.com/v15/customers/7693729834/offlineUserDataJobs', | ||
}), | ||
method: 'POST', | ||
}, | ||
}, | ||
output: { | ||
response: { | ||
status: 400, | ||
body: { | ||
output: { | ||
status: 400, | ||
message: | ||
'Request contains an invalid argument. during ga_audience response transformation', | ||
destinationResponse: { | ||
error: { | ||
code: 400, | ||
details: [ | ||
{ | ||
'@type': 'type.googleapis.com/google.ads.googleads.v9.errors.GoogleAdsFailure', | ||
errors: [ | ||
{ | ||
errorCode: { | ||
offlineUserDataJobError: 'INVALID_SHA256_FORMAT', | ||
}, | ||
message: 'The SHA256 encoded value is malformed.', | ||
location: { | ||
fieldPathElements: [ | ||
{ fieldName: 'operations', index: 0 }, | ||
{ fieldName: 'remove' }, | ||
{ fieldName: 'user_identifiers', index: 0 }, | ||
{ fieldName: 'hashed_email' }, | ||
], | ||
}, | ||
}, | ||
], | ||
}, | ||
], | ||
message: 'Request contains an invalid argument.', | ||
status: 'INVALID_ARGUMENT', | ||
}, | ||
}, | ||
statTags: expectedStatTags, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: 'garl_v0_scenario_3', | ||
name: 'google_adwords_remarketing_lists', | ||
description: | ||
'[Proxy v0 API] :: Test for a valid request with a successful 200 response from the destination', | ||
successCriteria: 'Should return 200 with no error with destination response', | ||
scenario: 'Business', | ||
feature: 'dataDelivery', | ||
module: 'destination', | ||
version: 'v0', | ||
input: { | ||
request: { | ||
body: generateProxyV0Payload({ | ||
headers: commonHeaders, | ||
params: commonParams, | ||
JSON: validRequestPayload2, | ||
endpoint: 'https://googleads.googleapis.com/v15/customers/7693729833/offlineUserDataJobs', | ||
}), | ||
method: 'POST', | ||
}, | ||
}, | ||
output: { | ||
response: { | ||
status: 200, | ||
body: { | ||
output: { | ||
status: 200, | ||
message: 'Request Processed Successfully', | ||
destinationResponse: { response: '', status: 200 }, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
]; | ||
|
||
export const testScenariosForV1API = [ | ||
{ | ||
id: 'garl_v1_scenario_1', | ||
name: 'google_adwords_remarketing_lists', | ||
description: | ||
'[Proxy v1 API] :: Test for a valid request with a successful 200 response from the destination', | ||
successCriteria: 'Should return 200 with no error with destination response', | ||
scenario: 'Business', | ||
feature: 'dataDelivery', | ||
module: 'destination', | ||
version: 'v1', | ||
input: { | ||
request: { | ||
body: generateProxyV1Payload( | ||
{ | ||
headers: commonHeaders, | ||
params: commonParams, | ||
JSON: validRequestPayload1, | ||
endpoint: | ||
'https://googleads.googleapis.com/v15/customers/7693729833/offlineUserDataJobs', | ||
}, | ||
metadataArray, | ||
), | ||
method: 'POST', | ||
}, | ||
}, | ||
output: { | ||
response: { | ||
status: 200, | ||
body: { | ||
output: { | ||
message: 'Request Processed Successfully', | ||
response: [ | ||
{ | ||
error: '""', | ||
metadata: generateMetadata(1), | ||
statusCode: 200, | ||
}, | ||
], | ||
status: 200, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: 'garl_v1_scenario_2', | ||
name: 'google_adwords_remarketing_lists', | ||
description: | ||
'[Proxy v1 API] :: Test for a invalid argument request with a 400 response from the destination', | ||
successCriteria: 'Should return 400 with invalid argument error with destination response', | ||
scenario: 'Business', | ||
feature: 'dataDelivery', | ||
module: 'destination', | ||
version: 'v1', | ||
input: { | ||
request: { | ||
body: generateProxyV1Payload( | ||
{ | ||
headers: commonHeaders, | ||
params: commonParams, | ||
JSON: invalidArgumentRequestPayload, | ||
endpoint: | ||
'https://googleads.googleapis.com/v15/customers/7693729834/offlineUserDataJobs', | ||
}, | ||
metadataArray, | ||
), | ||
method: 'POST', | ||
}, | ||
}, | ||
output: { | ||
response: { | ||
status: 200, | ||
body: { | ||
output: { | ||
message: | ||
'Request contains an invalid argument. during ga_audience response transformation', | ||
response: [ | ||
{ | ||
error: | ||
'Request contains an invalid argument. during ga_audience response transformation', | ||
metadata: generateMetadata(1), | ||
statusCode: 400, | ||
}, | ||
], | ||
statTags: expectedStatTags, | ||
status: 400, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: 'garl_v1_scenario_3', | ||
name: 'google_adwords_remarketing_lists', | ||
description: | ||
'[Proxy v1 API] :: Test for a valid request with a successful 200 response from the destination', | ||
successCriteria: 'Should return 200 with no error with destination response', | ||
scenario: 'Business', | ||
feature: 'dataDelivery', | ||
module: 'destination', | ||
version: 'v1', | ||
input: { | ||
request: { | ||
body: generateProxyV1Payload( | ||
{ | ||
headers: commonHeaders, | ||
params: commonParams, | ||
JSON: validRequestPayload2, | ||
endpoint: | ||
'https://googleads.googleapis.com/v15/customers/7693729833/offlineUserDataJobs', | ||
}, | ||
metadataArray, | ||
), | ||
method: 'POST', | ||
}, | ||
}, | ||
output: { | ||
response: { | ||
status: 200, | ||
body: { | ||
output: { | ||
message: 'Request Processed Successfully', | ||
response: [ | ||
{ | ||
error: '""', | ||
metadata: generateMetadata(1), | ||
statusCode: 200, | ||
}, | ||
], | ||
status: 200, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.