1{ 2 "mocks": [ 3 { 4 "request": { 5 "path": "/bidding" 6 }, 7 "response": { 8 "body": "BiddingLogicV2BeaconNoView.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": "/reportWin" 40 }, 41 "response": { 42 "body": null 43 }, 44 "verify_called": true 45 }, 46 { 47 "request": { 48 "path": "/sellerInteraction?view", 49 "method": "POST" 50 }, 51 "response": { 52 "body_str": "200 OK" 53 }, 54 "verify_called": true 55 }, 56 { 57 "request": { 58 "path": "/sellerInteraction?click", 59 "method": "POST" 60 }, 61 "response": { 62 "body_str": "200 OK" 63 }, 64 "verify_called": true 65 }, 66 { 67 "request": { 68 "path": "/reportResult" 69 }, 70 "response": { 71 "body": null 72 }, 73 "verify_called": true 74 }, 75 { 76 "request": { 77 "path": "/buyerInteraction?view", 78 "method": "POST" 79 }, 80 "response": { 81 "body_str": "200 OK" 82 }, 83 "verify_not_called": true 84 }, 85 { 86 "request": { 87 "path": "/buyerInteraction?click", 88 "method": "POST" 89 }, 90 "response": { 91 "body_str": "200 OK" 92 }, 93 "verify_called": true 94 } 95 ], 96 "substitutions": { 97 "<daily-update-uri>": "{base_url_with_prefix}/bidding/daily", 98 "<ad-render-uri-1>": "{base_url_with_prefix}/render_ad/1", 99 "<ad-render-uri-2>": "{base_url_with_prefix}/render_ad/2", 100 "<buyer-trusted-bidding-uri>": "{base_url_with_prefix}/bidding/trusted", 101 "<buyer-reporting-uri>": "{base_url_with_prefix}", 102 "<seller-reporting-uri>": "{base_url_with_prefix}" 103 } 104}