mk9-prebid
Version:
Header Bidding Management Library
136 lines (133 loc) • 4.82 kB
JavaScript
import {expect} from 'chai';
import {spec} from 'modules/smarticoBidAdapter.js';
import {newBidder} from 'src/adapters/bidderFactory.js';
describe('smarticoBidAdapter', function () {
const adapter = newBidder(spec);
let bid = {
adUnitCode: 'adunit-code',
auctionId: '5kaj89l8-3456-2s56-c455-4g6h78jsdfgf',
bidRequestsCount: 1,
bidder: 'smartico',
bidderRequestId: '24081afs940568',
bidderRequestsCount: 1,
bidderWinsCount: 0,
bidId: '22499d052045',
mediaTypes: {banner: {sizes: [[300, 250]]}},
params: {
token: 'FNVzUGZn9ebpIOoheh3kEJ2GQ6H6IyMH39sHXaya',
placementId: 'testPlacementId'
},
sizes: [
[300, 250]
],
transactionId: '34562345-4dg7-46g7-4sg6-45gdsdj8fd56'
}
let bidderRequests = {
auctionId: 'b06c5141-fe8f-4cdf-9d7d-54415490a917',
auctionStart: 1579746300522,
bidderCode: 'myBidderCode',
bidderRequestId: '15246a574e859f',
bids: [bid],
refererInfo: {
canonicalUrl: '',
numIframes: 0,
reachedTop: true
}
}
describe('isBidRequestValid', function () {
it('should return true where required params found', function () {
expect(spec.isBidRequestValid(bid)).to.equal(true);
});
});
describe('buildRequests', function () {
let bidRequests = [ bid ];
let request = spec.buildRequests(bidRequests, bidderRequests);
it('sends bid request via POST', function () {
expect(request.method).to.equal('POST');
});
it('must contain token', function() {
expect(request.data.bidParams[0].token).to.equal('FNVzUGZn9ebpIOoheh3kEJ2GQ6H6IyMH39sHXaya');
});
it('must contain auctionId', function() {
expect(request.data.auctionId).to.exist.and.to.be.a('string')
});
it('must contain valid width and height', function() {
expect(request.data.bidParams[0]['banner-format-width']).to.exist.and.to.be.a('number')
expect(request.data.bidParams[0]['banner-format-height']).to.exist.and.to.be.a('number')
});
});
describe('interpretResponse', function () {
let bidRequest = {
method: 'POST',
url: 'https://trmads.eu/preBidRequest',
bids: [bid],
data: [{
token: 'FNVzUGZn9ebpIOoheh3kEJ2GQ6H6IyMH39sHXaya',
bidId: '22499d052045',
'banner-format-width': 300,
'banner-format-height': 250,
placementId: 'testPlacementId',
}]
};
let serverResponse = {
body: [{
bidId: '22499d052045',
id: 987654,
cpm: 10,
netRevenue: 0,
currency: 'EUR',
ttl: 30,
bannerFormatWidth: 300,
bannerFormatHeight: 250,
bannerFormatAlias: 'medium_rectangle',
domains: ['www.advertiser.com'],
title: 'Advertiser'
}]
};
let expectedResponse = [{
requestId: bid.bidId,
cpm: 10,
width: 300,
height: 250,
creativeId: 987654,
currency: 'EUR',
netRevenue: false, // gross
ttl: 30,
ad: '<script id="smartico-widget-testPlacementId-0" async defer type="text/javascript" src="https://trmads.eu/get?token=FNVzUGZn9ebpIOoheh3kEJ2GQ6H6IyMH39sHXaya&auction-id=5kaj89l8-3456-2s56-c455-4g6h78jsdfgf&from-auction-buffer=1&own_session=1&ad=987654&scriptid=smartico-widget-testPlacementId-0&banner-format=medium_rectangle"><\/script>',
meta: {
advertiserDomains: ['www.advertiser.com'],
advertiserName: 'Advertiser'
}}];
let result = spec.interpretResponse(serverResponse, bidRequest);
it('should contain correct creativeId', function () {
expect(result[0].creativeId).to.equal(expectedResponse[0].creativeId)
});
it('should contain correct cpm', function () {
expect(result[0].cpm).to.equal(expectedResponse[0].cpm)
});
it('should contain correct width', function () {
expect(result[0].width).to.equal(expectedResponse[0].width)
});
it('should contain correct height', function () {
expect(result[0].height).to.equal(expectedResponse[0].height)
});
it('should contain correct requestId', function () {
expect(result[0].requestId).to.equal(expectedResponse[0].requestId)
});
it('should contain correct ttl', function () {
expect(result[0].ttl).to.equal(expectedResponse[0].ttl)
});
it('should contain correct netRevenue', function () {
expect(result[0].netRevenue).to.equal(expectedResponse[0].netRevenue)
});
it('should contain correct netRevenue', function () {
expect(result[0].currency).to.equal(expectedResponse[0].currency)
});
it('should contain correct ad content', function () {
expect(result[0].ad).to.equal(expectedResponse[0].ad)
});
it('should contain correct meta content', function () {
expect(result[0].meta).to.deep.equal(expectedResponse[0].meta)
});
});
});