1{ 2 "mocks": [ 3 { 4 "request": { 5 "path": "/bidding" 6 }, 7 "response": { 8 "body": "BiddingLogicV2Beacon.js" 9 }, 10 "verify_called": true 11 }, 12 { 13 "request": { 14 "path": "/scoring" 15 }, 16 "response": { 17 "body": "ScoringLogicBeacon.js" 18 }, 19 "verify_called": true 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 }, 37 { 38 "request": { 39 "path": "/bidding/daily" 40 }, 41 "response": { 42 "body": "DailyUpdateResponse.json" 43 } 44 }, 45 { 46 "request": { 47 "path": "/reportWin" 48 }, 49 "response": { 50 "body": null 51 }, 52 "verify_called": true 53 }, 54 { 55 "request": { 56 "path": "/sellerInteraction?view", 57 "method": "POST" 58 }, 59 "response": { 60 "body_str": "200 OK" 61 }, 62 "verify_called": true 63 }, 64 { 65 "request": { 66 "path": "/reportResult" 67 }, 68 "response": { 69 "body": null 70 }, 71 "verify_called": true 72 }, 73 { 74 "request": { 75 "path": "/buyerInteraction?view", 76 "method": "POST" 77 }, 78 "response": { 79 "body_str": "200 OK" 80 }, 81 "verify_called": true 82 } 83 ], 84 "substitutions": { 85 "<daily-update-uri>": "{base_url_with_prefix}/bidding/daily", 86 "<ad-render-uri-1>": "{base_url_with_prefix}/render_ad/1", 87 "<ad-render-uri-2>": "{base_url_with_prefix}/render_ad/2", 88 "https://js.example.com/render/ad1": "{base_url_with_prefix}/render_ad/1", 89 "https://js.example.com/render/ad2": "{base_url_with_prefix}/render_ad/2", 90 "<buyer-trusted-bidding-uri>": "{base_url_with_prefix}/bidding/trusted", 91 "https://js.example.com/bidding/trusted": "{base_url_with_prefix}/bidding/trusted", 92 "<buyer-reporting-uri>": "{base_url_with_prefix}", 93 "<seller-reporting-uri>": "{base_url_with_prefix}" 94 } 95}