1{ 2 "mocks": [ 3 { 4 "request": { 5 "path": "/bidding", 6 "header": { 7 "x_fledge_buyer_bidding_logic_version": "3" 8 } 9 }, 10 "response": { 11 "body": "BiddingLogicV3WithDebugReporting.js", 12 "header": { 13 "x_fledge_buyer_bidding_logic_version": "3" 14 } 15 } 16 }, 17 { 18 "request": { 19 "path": "/scoring" 20 }, 21 "response": { 22 "body": "ScoringLogicWithDebugReporting.js" 23 } 24 }, 25 { 26 "request": { 27 "path": "/scoring/trusted" 28 }, 29 "response": { 30 "body": "ScoringSignals.json" 31 } 32 }, 33 { 34 "request": { 35 "path": "/bidding/trusted" 36 }, 37 "response": { 38 "body": "BiddingSignals.json" 39 } 40 }, 41 { 42 "request": { 43 "path": "/buyer/reportImpression" 44 }, 45 "response": { 46 "body": null 47 } 48 }, 49 { 50 "request": { 51 "path": "/seller/reportImpression" 52 }, 53 "response": { 54 "body": null 55 } 56 }, 57 { 58 "request": { 59 "path": "/buyer/reportWin" 60 }, 61 "response": { 62 "body": null 63 }, 64 "verify_called": true 65 }, 66 { 67 "request": { 68 "path": "/buyer/reportLoss" 69 }, 70 "response": { 71 "body": null 72 }, 73 "verify_called": true 74 }, 75 { 76 "request": { 77 "path": "/seller/reportWin" 78 }, 79 "response": { 80 "body": null 81 }, 82 "verify_called": true 83 }, 84 { 85 "request": { 86 "path": "/seller/reportLoss" 87 }, 88 "response": { 89 "body": null 90 }, 91 "verify_called": true 92 } 93 ], 94 "substitutions": { 95 "<daily-update-uri>": "{base_url_with_prefix}/bidding/daily", 96 "<ad-render-uri-1>": "{base_url_with_prefix}/render_ad/1", 97 "<ad-render-uri-2>": "{base_url_with_prefix}/render_ad/2", 98 "https://js.example.com/render/ad1": "{base_url_with_prefix}/render_ad/1", 99 "https://js.example.com/render/ad2": "{base_url_with_prefix}/render_ad/2", 100 "<buyer-trusted-bidding-uri>": "{base_url_with_prefix}/bidding/trusted", 101 "https://js.example.com/bidding/trusted": "{base_url_with_prefix}/bidding/trusted", 102 "<buyer-reporting-uri>": "{base_url_with_prefix}/buyer/reportImpression", 103 "<seller-reporting-uri>": "{base_url_with_prefix}/seller/reportImpression", 104 "<buyer-win-debug-reporting-uri>": "{base_url_with_prefix}/buyer/reportWin", 105 "<buyer-loss-debug-reporting-uri>": "{base_url_with_prefix}/buyer/reportLoss", 106 "<seller-win-debug-reporting-uri>": "{base_url_with_prefix}/seller/reportWin", 107 "<seller-loss-debug-reporting-uri>": "{base_url_with_prefix}/seller/reportLoss" 108 } 109}