Skip to content

Commit

Permalink
Add advertiser domains (#6982)
Browse files Browse the repository at this point in the history
  • Loading branch information
PavlaKanova authored Jun 9, 2021
1 parent 78d0cb1 commit 3fad473
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
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

0 comments on commit 3fad473

Please sign in to comment.