github.com/prebid/prebid-server/v2@v2.18.0/adapters/eplanning/eplanningtest/supplemental/two-imps-1_banner-and-1_video_outstream-send-only-outstream.json (about)

     1  {
     2      "mockBidRequest": {
     3        "id": "test-request-id",
     4        "imp": [
     5          {
     6            "id": "test-imp-id",
     7            "banner": {
     8              "w": 600,
     9              "h": 300
    10            },
    11            "ext": {
    12              "bidder": {
    13                "ci": "12345",
    14                "adunit_code": "test_ad.-un(itco:de:"
    15              }
    16            }
    17          },
    18          {
    19            "id": "test-imp-outstream",
    20            "video": {
    21              "w": 640,
    22              "h": 480,
    23              "placement": 5
    24            },
    25            "ext": {
    26              "bidder": {
    27                "ci": "6789",
    28                "adunit_code": "test_adunitcode_outstream"
    29              }
    30            }
    31          }
    32        ]
    33      },
    34    
    35      "httpCalls": [
    36        {
    37          "expectedRequest": {
    38            "uri": "http://rtb.e-planning.net/pbs/1/6789/1/FILE/ROS?e=video_640x480_0%3A640x480%3B1&ncb=1&ur=FILE&vctx=2&vv=3",
    39            "body": {},
    40            "impIDs":["test-imp-id","test-imp-outstream"]
    41          },
    42          "mockResponse": {
    43            "status": 200,
    44            "body": {
    45              "sI": { "k": "6789" },
    46              "sec": "ROS",
    47              "sp": [
    48                {
    49                  "k": "video_640x480_0",
    50                  "a": [{
    51                    "i": "123456789abcdef",
    52                    "pr": "0.5",
    53                    "adm": "<VAST>test</VAST>",
    54                    "crid": "abcdef123456789",
    55                    "id": "adid12345",
    56                    "w": 640,
    57                    "h": 480
    58                  }]
    59                }
    60              ]
    61            }
    62          }
    63        }
    64      ],
    65    
    66      "expectedBidResponses": [
    67        {
    68          "currency": "USD",
    69          "bids": [
    70            {
    71              "bid": {
    72                "id": "123456789abcdef",
    73                "impid": "test-imp-outstream",
    74                "price": 0.5,
    75                "adm": "<VAST>test</VAST>",
    76                "adid": "adid12345",
    77                "crid": "abcdef123456789",
    78                "w": 640,
    79                "h": 480
    80              },
    81              "type": "video"
    82            }
    83          ]
    84        }
    85      ],
    86      "expectedMakeRequestsErrors": [
    87        {
    88          "value": "Ignoring imp id=test-imp-id, auction outstream and imp no outstream",
    89          "comparison": "literal"
    90        }
    91      ]
    92    }
    93