{
    "mockBidRequest": {
        "id": "test-request-id",
        "imp": [
            {
                "id": "test-imp-id",
                "ext": {
                    "bidder": {
                        "hash": "123456"
                    }
                },
                "native": {
                    "request": "{json string}",
                    "ver": "1.2"
                }
            }
        ],
        "site": {
            "publisher": {
                "id": "1"
            },
            "page": "some-page-url"
        },
        "device": {
            "w": 1920,
            "h": 800
        }
    },
    "httpCalls": [
        {
            "expectedRequest": {
                "uri": "https://prd-prebid-bidder.adrino.io/openrtb/bid",
                "headers": {
                    "Content-Type": [
                        "application/json;charset=utf-8"
                    ]
                },
                "body": {
                    "id": "test-request-id",
                    "imp": [
                        {
                            "id": "test-imp-id",
                            "ext": {
                                "bidder": {
                                    "hash": "123456"
                                }
                            },
                            "native": {
                                "request": "{json string}",
                                "ver": "1.2"
                            }
                        }
                    ],
                    "site": {
                        "publisher": {
                            "id": "1"
                        },
                        "page": "some-page-url"
                    },
                    "device": {
                        "w": 1920,
                        "h": 800
                    }
                },
                "impIDs":["test-imp-id"]
            },
            "mockResponse": {
                "status": 200,
                "body": {
                    "id": "test-request-id",
                    "seatbid": [
                        {
                            "bid": [
                                {
                                    "id": "test-bid-id",
                                    "impid": "test-imp-id",
                                    "price": 10,
                                    "adm": "{json response string}",
                                    "crid": "test-creative-id",
                                    "ext": {
                                        "prebid": {
                                            "type": "native"
                                        }
                                    }
                                }
                            ]
                        }
                    ],
                    "cur": "PLN"
                }
            }
        }
    ],
    "expectedBidResponses": [
        {
            "currency": "PLN",
            "bids": [
                {
                    "bid": {
                        "id": "test-bid-id",
                        "impid": "test-imp-id",
                        "price": 10,
                        "adm": "{json response string}",
                        "crid": "test-creative-id",
                        "ext": {
                            "prebid": {
                                "type": "native"
                            }
                        }
                    },
                    "type": "native"
                }
            ]
        }
    ]
}
