github.com/prebid/prebid-server/v2@v2.18.0/adapters/algorix/algorixtest/supplemental/bad_response.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [{"w": 320, "h": 50}]
     9          },
    10          "ext": {
    11            "bidder": {
    12              "sid": "testSid",
    13              "token": "testToken"
    14            }
    15          }
    16        }
    17      ]
    18    },
    19  
    20    "httpCalls": [
    21      {
    22        "expectedRequest": {
    23          "uri": "https://xyz.test.com?sid=testSid&token=testToken",
    24          "body": {
    25            "id": "test-request-id",
    26            "imp": [
    27              {
    28                "id":"test-imp-id",
    29                "banner": {
    30                  "format": [{"w": 320, "h": 50}],
    31                  "w": 320,
    32                  "h": 50
    33                },
    34                "ext": {
    35                  "bidder": {
    36                    "sid": "testSid",
    37                    "token": "testToken"
    38                  }
    39                }
    40              }
    41            ]
    42          },
    43          "impIDs":["test-imp-id"]
    44        },
    45        "mockResponse": {
    46          "status": 200,
    47          "body": "{\"id\":test-request-id"
    48        }
    49      }
    50    ],
    51  
    52    "expectedMakeBidsErrors": [
    53      {
    54        "comparison": "literal",
    55        "value": "json: cannot unmarshal string into Go value of type openrtb2.BidResponse"
    56      }
    57    ]
    58  }