1{ 2 "mocks": [ 3 { 4 "request": { 5 "path": "/bidding" 6 }, 7 "response": { 8 "body": "BiddingLogicV2.js" 9 } 10 }, 11 { 12 "request": { 13 "path": "/scoring" 14 }, 15 "response": { 16 "body": "ScoringLogic.js" 17 } 18 }, 19 { 20 "request": { 21 "path": "/scoring/trusted" 22 }, 23 "response": { 24 "body": "ScoringSignals.json" 25 } 26 }, 27 { 28 "request": { 29 "path": "/bidding/trusted" 30 }, 31 "response": { 32 "body": "BiddingSignals.json" 33 } 34 }, 35 { 36 "request": { 37 "path": "/bidding/daily/shoes" 38 }, 39 "response": { 40 "body": "DailyUpdateResponse.json", 41 "delay_sec": 30 42 }, 43 "verify_called": true 44 }, 45 { 46 "request": { 47 "path": "/buyer/reportImpression" 48 }, 49 "response": { 50 "body": null 51 } 52 }, 53 { 54 "request": { 55 "path": "/seller/reportImpression" 56 }, 57 "response": { 58 "body": null 59 } 60 } 61 ], 62 "substitutions": { 63 "<daily-update-uri>": "{base_url_with_prefix}/bidding/daily", 64 "<ad-render-uri-1>": "{base_url_with_prefix}/render_ad/1", 65 "<ad-render-uri-2>": "{base_url_with_prefix}/render_ad/2", 66 "<buyer-trusted-bidding-uri>": "{base_url_with_prefix}/bidding/trusted", 67 "<buyer-reporting-uri>": "{base_url_with_prefix}/buyer/reportImpression", 68 "<seller-reporting-uri>": "{base_url_with_prefix}/seller/reportImpression" 69 } 70} 71