github.com/prebid/prebid-server@v0.275.0/adapters/applogy/applogytest/exemplary/simple-video.json (about)

     1  {
     2  	"mockBidRequest": {
     3  		"id": "test-request-id",
     4  		"imp": [{
     5  			"id": "test-impression-id-1",
     6  			"video": {
     7  				"w": 900,
     8  				"h": 250,
     9  				"mimes": [
    10  					"video/mp4"
    11  				]
    12  			},
    13  			"ext": {
    14  				"bidder": {
    15  					"token": "test-token-1"
    16  				}
    17  			}
    18  		}, {
    19  			"id": "test-impression-id-2",
    20  			"video": {
    21  				"w": 900,
    22  				"h": 250,
    23  				"mimes": [
    24  					"video/mp4"
    25  				]
    26  			},
    27  			"ext": {
    28  				"bidder": {
    29  					"token": "test-token-1"
    30  				}
    31  			}
    32  		}, {
    33  			"id": "test-impression-id-3",
    34  			"video": {
    35  				"w": 900,
    36  				"h": 250,
    37  				"mimes": [
    38  					"video/mp4"
    39  				]
    40  			},
    41  			"ext": {
    42  				"bidder": {
    43  					"token": "test-token-2"
    44  				}
    45  			}
    46  		}]
    47  	},
    48  	"httpCalls": [{
    49  		"expectedRequest": {
    50  			"uri": "http://example.com/prebid/test-token-1",
    51  			"body": {
    52  				"id": "test-request-id",
    53  				"imp": [{
    54  					"id": "test-impression-id-1",
    55  					"video": {
    56  						"w": 900,
    57  						"h": 250,
    58  						"mimes": [
    59  							"video/mp4"
    60  						]
    61  					},
    62  					"ext": {
    63  						"bidder": {
    64  							"token": "test-token-1"
    65  						}
    66  					}
    67  				}]
    68  			}
    69  		},
    70  		"mockResponse": {
    71  			"status": 200,
    72  			"body": {
    73  				"id": "test-response-id",
    74  				"seatbid": [{
    75  					"bid": [{
    76  						"id": "test-bid-id-1",
    77  						"impid": "test-impression-id-1",
    78  						"price": 1
    79  					}]
    80  				}]
    81  			}
    82  		}
    83  	}, {
    84  		"expectedRequest": {
    85  			"uri": "http://example.com/prebid/test-token-1",
    86  			"body": {
    87  				"id": "test-request-id",
    88  				"imp": [{
    89  					"id": "test-impression-id-2",
    90  					"video": {
    91  						"w": 900,
    92  						"h": 250,
    93  						"mimes": [
    94  							"video/mp4"
    95  						]
    96  					},
    97  					"ext": {
    98  						"bidder": {
    99  							"token": "test-token-1"
   100  						}
   101  					}
   102  				}]
   103  			}
   104  		},
   105  		"mockResponse": {
   106  			"status": 200,
   107  			"body": {
   108  				"id": "test-response-id-2",
   109  				"seatbid": [{
   110  					"bid": [{
   111  						"id": "test-bid-id-2",
   112  						"impid": "test-impression-id-2",
   113  						"price": 2
   114  					}]
   115  				}]
   116  			}
   117  		}
   118  	}, {
   119  		"expectedRequest": {
   120  			"uri": "http://example.com/prebid/test-token-2",
   121  			"body": {
   122  				"id": "test-request-id",
   123  				"imp": [{
   124  					"id": "test-impression-id-3",
   125  					"video": {
   126  						"w": 900,
   127  						"h": 250,
   128  						"mimes": [
   129  							"video/mp4"
   130  						]
   131  					},
   132  					"ext": {
   133  						"bidder": {
   134  							"token": "test-token-2"
   135  						}
   136  					}
   137  				}]
   138  			}
   139  		},
   140  		"mockResponse": {
   141  			"status": 200,
   142  			"body": {
   143  				"id": "test-response-id-3",
   144  				"seatbid": [{
   145  					"bid": [{
   146  						"id": "test-bid-id-3",
   147  						"impid": "test-impression-id-3",
   148  						"price": 3
   149  					}]
   150  				}]
   151  			}
   152  		}
   153  	}],
   154  	"expectedBidResponses": [{
   155  		"bids": [{
   156  			"bid": {
   157  				"id": "test-bid-id-1",
   158  				"impid": "test-impression-id-1",
   159  				"price": 1
   160  			},
   161  			"type": "video"
   162  		}]
   163  	}, {
   164  		"bids": [{
   165  			"bid": {
   166  				"id": "test-bid-id-2",
   167  				"impid": "test-impression-id-2",
   168  				"price": 2
   169  			},
   170  			"type": "video"
   171  		}]
   172  	}, {
   173  		"bids": [{
   174  			"bid": {
   175  				"id": "test-bid-id-3",
   176  				"impid": "test-impression-id-3",
   177  				"price": 3
   178  			},
   179  			"type": "video"
   180  		}]
   181  	}]
   182  }