github.com/prebid/prebid-server@v0.275.0/adapters/aja/ajatest/supplemental/status-bad-request.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-req-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "video": {
     8            "mimes": ["video/mp4"],
     9            "w": 640,
    10            "h": 480
    11          },
    12          "ext": {
    13            "bidder": {
    14              "asi": "test-asi"
    15            }
    16          }
    17        }
    18      ],
    19      "user": {
    20        "buyeruid": "test-uid"
    21      },
    22      "tmax": 500
    23    },
    24  
    25    "httpCalls": [
    26      {
    27        "expectedRequest": {
    28          "uri": "https://localhost/bid/4",
    29          "headers": {},
    30          "body": {
    31            "id": "test-req-id",
    32            "imp": [
    33              {
    34                "id": "test-imp-id",
    35                "video": {
    36                  "mimes": ["video/mp4"],
    37                  "w": 640,
    38                  "h": 480
    39                },
    40                "tagid": "test-asi"
    41              }
    42            ],
    43            "user": {
    44              "buyeruid": "test-uid"
    45            },
    46            "tmax": 500
    47          }
    48        },
    49        "mockResponse": {
    50          "status": 400,
    51          "body": {}
    52        }
    53      }
    54    ],
    55  
    56    "expectedBidResponses": [],
    57  
    58    "expectedMakeBidsErrors": [
    59      {
    60        "value": "Unexpected status code: 400",
    61        "comparison": "literal"
    62      }
    63    ]
    64  }