{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [
      {
        "id": "test-imp-id",
        "video": {
          "w": 900,
          "h": 250,
          "mimes": [
            "video/x-flv",
            "video/mp4"
          ]
        },
        "ext": {
          "bidder": {
            "aid": 1000
          }
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://ghb.adtelligent.com/pbs/ortb?aid=1000",
        "body": {
          "id": "test-request-id",
          "imp": [
            {
              "id":"test-imp-id",
              "video": {
                "w": 900,
                "h": 250,
                "mimes": [
                  "video/x-flv",
                  "video/mp4"
                ]
              },
              "ext": {
                "adtelligent": {
                  "aid": 1000
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "bid": [
                {
                  "id": "test-bid-id",
                  "impid": "SOME-WRONG-IMP-ID",
                  "price": 3.5,
                  "w": 900,
                  "h": 250
                }
              ]
            }
          ]
        }
      }
    }
  ],
  "expectedBidResponses": [{"currency":"USD","bids":[]}],
  "expectedMakeBidsErrors": [
    {
      "value": "ignoring bid id=test-bid-id, request doesn't contain any impression with id=SOME-WRONG-IMP-ID",
      "comparison": "literal"
    }
  ]
}
