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