github.com/prebid/prebid-server/v2@v2.18.0/adapters/eplanning/eplanningtest/supplemental/three-imps-1_banner-1_video_instream-and-1_video_outstream-only-send-video-instream.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_adunitcode_banner"
    15              }
    16            }
    17          },
    18          {
    19            "id": "test-imp-instream",
    20            "video": {
    21              "w": 640,
    22              "h": 480,
    23              "placement": 1
    24            },
    25            "ext": {
    26              "bidder": {
    27                "ci": "6789",
    28                "adunit_code": "test_adunitcode_instream"
    29              }
    30            }
    31          },
    32          {
    33            "id": "test-imp-outstream",
    34            "video": {
    35              "w": 640,
    36              "h": 480,
    37              "placement": 5
    38            },
    39            "ext": {
    40              "bidder": {
    41                "ci": "6789",
    42                "adunit_code": "test_adunitcode_outstream"
    43              }
    44            }
    45          }
    46        ]
    47      },
    48    
    49      "httpCalls": [
    50        {
    51          "expectedRequest": {
    52            "uri": "http://rtb.e-planning.net/pbs/1/6789/1/FILE/ROS?e=video_640x480_0%3A640x480%3B1&ncb=1&ur=FILE&vctx=1&vv=3",
    53            "body": {},
    54            "impIDs":["test-imp-id","test-imp-instream","test-imp-outstream"]
    55          },
    56          "mockResponse": {
    57            "status": 200,
    58            "body": {
    59              "sI": { "k": "12345" },
    60              "sec": "ROS",
    61              "sp": [
    62                {
    63                  "k": "video_640x480_0",
    64                  "a": [{
    65                    "i": "123456789abcdef",
    66                    "pr": "0.5",
    67                    "adm": "<VAST>test</VAST>",
    68                    "crid": "abcdef123456789",
    69                    "id": "adid12345",
    70                    "w": 640,
    71                    "h": 480
    72                  }]
    73                }
    74              ]
    75            }
    76          }
    77        }
    78      ],
    79    
    80      "expectedBidResponses": [
    81        {
    82          "currency": "USD",
    83          "bids": [
    84            {
    85              "bid": {
    86                "id": "123456789abcdef",
    87                "impid": "test-imp-instream",
    88                "price": 0.5,
    89                "adm": "<VAST>test</VAST>",
    90                "adid": "adid12345",
    91                "crid": "abcdef123456789",
    92                "w": 640,
    93                "h": 480
    94              },
    95              "type": "video"
    96            }
    97          ]
    98        }
    99      ],
   100  
   101      "expectedMakeRequestsErrors": [
   102        {
   103          "value": "Ignoring imp id=test-imp-id, auction instream and imp no instream",
   104          "comparison": "literal"
   105        },
   106        {
   107          "value": "Ignoring imp id=test-imp-outstream, auction instream and imp no instream",
   108          "comparison": "literal"
   109        }
   110      ]
   111    }
   112