github.com/prebid/prebid-server/v2@v2.18.0/adapters/adnuntius/adnuntiustest/supplemental/test-networks.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "site": { 5 "page": "prebid.org" 6 }, 7 "imp": [ 8 { 9 "id": "test-imp-id", 10 "banner": { 11 "format": [ 12 { 13 "w": 300, 14 "h": 250 15 }, 16 { 17 "w": 300, 18 "h": 600 19 } 20 ] 21 }, 22 "ext": { 23 "bidder": { 24 "auId": "123", 25 "network" : "test" 26 } 27 } 28 } 29 ] 30 }, 31 32 "httpCalls": [ 33 { 34 "expectedRequest": { 35 "uri": "http://whatever.url?format=json&tzo=0", 36 "body": { 37 "adUnits": [ 38 { 39 "auId": "123", 40 "targetId": "123-test-imp-id", 41 "dimensions": [[300,250],[300,600]] 42 } 43 ], 44 "context": "prebid.org", 45 "metaData": {} 46 }, 47 "impIDs":["test-imp-id"] 48 }, 49 "mockResponse": { 50 "status": 200, 51 "body": { 52 "adUnits": [ 53 { 54 "auId": "0000000000000123", 55 "targetId": "123-test-imp-id", 56 "html": "<ADCODE>", 57 "responseId": "adn-rsp-900646517", 58 "ads": [ 59 { 60 "destinationUrls": { 61 "url": "http://www.google.com" 62 }, 63 "bid": { 64 "amount": 20.0, 65 "currency": "NOK" 66 }, 67 "adId": "adn-id-1559784094", 68 "creativeWidth": "980", 69 "creativeHeight": "240", 70 "creativeId": "jn9hpzvlsf8cpdmm", 71 "lineItemId": "q7y9qm5b0xt9htrv" 72 } 73 ] 74 } 75 ] 76 } 77 } 78 } 79 ], 80 "expectedBidResponses": [ 81 { 82 "bids": [ 83 { 84 "bid": { 85 "id": "adn-id-1559784094", 86 "impid": "test-imp-id", 87 "price": 20000, 88 "adm": "<ADCODE>", 89 "adid": "adn-id-1559784094", 90 "adomain": ["google.com"], 91 "cid": "q7y9qm5b0xt9htrv", 92 "crid": "jn9hpzvlsf8cpdmm", 93 "w": 980, 94 "h": 240 95 }, 96 "type": "banner" 97 } 98 ], 99 "currency": "NOK" 100 } 101 ] 102 }