github.com/prebid/prebid-server@v0.275.0/adapters/ccx/ccxtest/supplemental/500-response-from-target.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [{"w": 300, "h": 250}]
     9          },
    10          "ext": {
    11            "bidder": {
    12              "placementId": 123456789
    13            }
    14          }
    15        }
    16      ],
    17      "site": {
    18        "page": "somepage.com"
    19      }
    20    },
    21    
    22      "httpCalls": [
    23        {
    24          "expectedRequest": {
    25            "uri": "https://delivery.clickonometrics.pl/ortb/prebid/bid",
    26            "body": {
    27              "id": "test-request-id",
    28              "imp": [
    29                {
    30                  "id": "test-imp-id",
    31                  "banner": {
    32                    "format": [{"w": 300, "h": 250}]
    33                  },
    34                  "ext": {
    35                    "bidder": {
    36                      "placementId": 123456789
    37                    }
    38                  }
    39                }
    40              ],
    41              "site": {
    42                  "page": "somepage.com"
    43              }
    44            }
    45          },
    46          "mockResponse": {
    47            "status": 500
    48          }
    49        }
    50      ],
    51      "expectedMakeBidsErrors": [
    52          {
    53              "value": "Unexpected status code: 500. Run with request.debug = 1 for more info.",
    54              "comparison": "literal"
    55          }
    56      ]
    57    }
    58