Skip to content

Commit

Permalink
MinuteMedia Bid Adapter: support Coppa param (prebid#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
YakirLavi committed Apr 20, 2023
1 parent 63bfe48 commit 66c4e7b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/minutemediaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,5 +428,9 @@ function generateGeneralParams(generalObject, bidderRequest) {
generalParams.page_url = deepAccess(bidderRequest, 'refererInfo.page') || window.location.href
}

if (config.getConfig('coppa') === true) {
generalParams.coppa = 1;
}

return generalParams
}
14 changes: 14 additions & 0 deletions test/spec/modules/minutemediaBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,20 @@ describe('minutemediaAdapter', function () {
expect(request.data.bids[0]).to.be.an('object');
expect(request.data.bids[0]).to.have.property('floorPrice', 1.5);
});

describe('COPPA param', function () {
it('should add COPPA param to payload when COPPA equal to true', function () {
config.setConfig({ coppa: true });
const request = spec.buildRequests(bidRequests, bidderRequest);
expect(request.data.params.coppa).to.equal(1);
});

it('should not add COPPA param to payload when prebid config has parameter COPPA equal to false', function () {
config.setConfig({ coppa: false });
const request = spec.buildRequests(bidRequests, bidderRequest);
expect(request.data.params.coppa).to.be.undefined;
});
})
});

describe('interpretResponse', function () {
Expand Down

0 comments on commit 66c4e7b

Please sign in to comment.