Skip to content

merge from prebid master #8

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

Merged
merged 1 commit into from
Jan 22, 2019
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: 0 additions & 3 deletions src/auctionManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ export function newAuctionManager() {
};

auctionManager.getBidsReceived = function() {
// As of now, an old bid which is not used in auction 1 can be used in auction n.
// To prevent this, bid.ttl (time to live) will be added to this logic and bid pool will also be added
// As of now none of the adapters are sending back bid.ttl
return _auctions.map((auction) => {
if (auction.getAuctionStatus() === AUCTION_COMPLETED) {
return auction.getBidsReceived();
Expand Down
9 changes: 9 additions & 0 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const DEFAULT_BIDDER_TIMEOUT = 3000;
const DEFAULT_PUBLISHER_DOMAIN = window.location.origin;
const DEFAULT_ENABLE_SEND_ALL_BIDS = true;
const DEFAULT_DISABLE_AJAX_TIMEOUT = false;
const DEFAULT_BID_CACHE = true;

const DEFAULT_TIMEOUTBUFFER = 400;

Expand Down Expand Up @@ -133,6 +134,14 @@ export function newConfig() {
this._sendAllBids = val;
},

_useBidCache: DEFAULT_BID_CACHE,
get useBidCache() {
return this._useBidCache;
},
set useBidCache(val) {
this._useBidCache = val;
},

_bidderSequence: DEFAULT_BIDDER_SEQUENCE,
get bidderSequence() {
return this._bidderSequence;
Expand Down
1 change: 1 addition & 0 deletions src/prebid.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,7 @@ $$PREBID_GLOBAL$$.requestBids = createHook('asyncSeries', function ({ bidsBackHa
}

const auction = auctionManager.createAuction({adUnits, adUnitCodes, callback: bidsBackHandler, cbTimeout, labels});
adUnitCodes.forEach(code => targeting.setLatestAuctionForAdUnit(code, auction.getAuctionId()));
auction.callBids();
return auction;
});
Expand Down
13 changes: 12 additions & 1 deletion src/targeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ export function getHighestCpmBidsFromBidPool(bidsReceived, highestCpmCallback) {

export function newTargeting(auctionManager) {
let targeting = {};
let latestAuctionForAdUnit = {};

targeting.setLatestAuctionForAdUnit = function(adUnitCode, auctionId) {
latestAuctionForAdUnit[adUnitCode] = auctionId;
};

targeting.resetPresetTargeting = function(adUnitCode) {
if (isGptPubadsDefined()) {
Expand Down Expand Up @@ -191,7 +196,13 @@ export function newTargeting(auctionManager) {
}

function getBidsReceived() {
const bidsReceived = auctionManager.getBidsReceived()
let bidsReceived = auctionManager.getBidsReceived();

if (!config.getConfig('useBidCache')) {
bidsReceived = bidsReceived.filter(bid => latestAuctionForAdUnit[bid.adUnitCode] === bid.auctionId)
}

bidsReceived = bidsReceived
.filter(bid => bid.mediaType !== 'banner' || sizeSupported([bid.width, bid.height]))
.filter(filters.isUnusedBid)
.filter(filters.isBidNotExpired)
Expand Down
31 changes: 31 additions & 0 deletions test/spec/unit/core/targeting_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,22 @@ const bid3 = {
describe('targeting tests', function () {
let sandbox;
let enableSendAllBids = false;
let useBidCache;

beforeEach(function() {
sandbox = sinon.sandbox.create();

useBidCache = true;
// enableSendAllBids = false;

let origGetConfig = config.getConfig;
sandbox.stub(config, 'getConfig').callsFake(function (key) {
if (key === 'enableSendAllBids') {
return enableSendAllBids;
}
if (key === 'useBidCache') {
return useBidCache;
}
return origGetConfig.apply(config, arguments);
});
});
Expand Down Expand Up @@ -222,6 +229,30 @@ describe('targeting tests', function () {
expect(bids[1].adId).to.equal('adid-2');
});

it('should honor useBidCache', function() {
useBidCache = true;

auctionManagerStub.returns([
createBidReceived({bidder: 'appnexus', cpm: 7, auctionId: 1, responseTimestamp: 100, adUnitCode: 'code-0', adId: 'adid-1'}),
createBidReceived({bidder: 'appnexus', cpm: 5, auctionId: 2, responseTimestamp: 102, adUnitCode: 'code-0', adId: 'adid-2'}),
]);

let adUnitCodes = ['code-0'];
targetingInstance.setLatestAuctionForAdUnit('code-0', 2);

let bids = targetingInstance.getWinningBids(adUnitCodes);

expect(bids.length).to.equal(1);
expect(bids[0].adId).to.equal('adid-1');

useBidCache = false;

bids = targetingInstance.getWinningBids(adUnitCodes);

expect(bids.length).to.equal(1);
expect(bids[0].adId).to.equal('adid-2');
});

it('should not use rendered bid to get winning bid', function () {
let bidsReceived = [
createBidReceived({bidder: 'appnexus', cpm: 8, auctionId: 1, responseTimestamp: 100, adUnitCode: 'code-0', adId: 'adid-1', status: 'rendered'}),
Expand Down
23 changes: 23 additions & 0 deletions test/spec/unit/pbjs_api_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1361,6 +1361,29 @@ describe('Unit: Prebid Module', function () {
.and.to.match(/[a-f0-9\-]{36}/i);
});

it('should notify targeting of the latest auction for each adUnit', function () {
let latestStub = sinon.stub(targeting, 'setLatestAuctionForAdUnit');
let getAuctionStub = sinon.stub(auction, 'getAuctionId').returns(2);

$$PREBID_GLOBAL$$.requestBids({
adUnits: [
{
code: 'test1',
bids: []
}, {
code: 'test2',
bids: []
}
]
});

expect(latestStub.firstCall.calledWith('test1', 2)).to.equal(true);
expect(latestStub.secondCall.calledWith('test2', 2)).to.equal(true);

latestStub.restore();
getAuctionStub.restore();
});

it('should execute callback immediately if adUnits is empty', function () {
var bidsBackHandler = function bidsBackHandlerCallback() {};
var spyExecuteCallback = sinon.spy(bidsBackHandler);
Expand Down