Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stroeerCoreBidAdapter: Add support for advertiser domains #6982

Merged
merged 1 commit into from
Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/stroeerCoreBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ export const spec = {
currency: 'EUR',
netRevenue: true,
creativeId: '',
meta: {
advertiserDomains: bidResponse.adomain
},
});
});
}
Expand Down
9 changes: 9 additions & 0 deletions test/spec/modules/stroeerCoreBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,15 @@ describe('stroeerCore bid adapter', function () {
const result = spec.interpretResponse({body: {bids: []}});
assert.deepStrictEqual(result, []);
});

it('should add data to meta object', () => {
const response = buildBidderResponse();
response.bids[0] = Object.assign(response.bids[0], {adomain: ['website.org', 'domain.com']});
const result = spec.interpretResponse({body: response});
assert.deepPropertyVal(result[0], 'meta', {advertiserDomains: ['website.org', 'domain.com']});
// nothing provided for the second bid
assert.deepPropertyVal(result[1], 'meta', {advertiserDomains: undefined});
});
});

describe('get user syncs entry point', () => {
Expand Down