import bson
DATA = {'value': b'\x00\x01\x02\x03'}
SQL_REQUEST = """
--!syntax_v1
SELECT doc FROM `orders`
WHERE id = "id1"
"""
async def test_ok(service_client, ydb):
cursor = ydb.execute(SQL_REQUEST)
assert len(cursor) == 1
assert not cursor[0].rows
response = await service_client.post(
'ydb/bson-upserting',
params={'id': 'id1'},
data=bson.BSON.encode(DATA),
headers={'Content-Type': 'application/bson'},
)
assert response.status_code == 200
cursor = ydb.execute(SQL_REQUEST)
assert len(cursor) == 1
assert len(cursor[0].rows) == 1
assert DATA == bson.BSON.decode(cursor[0].rows[0]['doc'])