2023-02-21 16:29:35 +00:00
|
|
|
import trio
|
|
|
|
|
|
|
|
from typing import AsyncContextManager
|
|
|
|
|
2023-02-21 16:58:04 +00:00
|
|
|
from elasticsearch import Elasticsearch
|
2023-03-09 01:20:11 +00:00
|
|
|
from piker.service import marketstore
|
|
|
|
|
2023-02-21 16:58:04 +00:00
|
|
|
|
2023-02-24 18:11:15 +00:00
|
|
|
def test_marketstore_startup_and_version(
|
2023-02-22 16:28:07 +00:00
|
|
|
open_test_pikerd: AsyncContextManager,
|
2023-03-09 17:23:46 +00:00
|
|
|
loglevel: str,
|
2023-02-22 16:28:07 +00:00
|
|
|
):
|
|
|
|
'''
|
2023-03-09 17:23:46 +00:00
|
|
|
Verify marketstore tsdb starts up and we can
|
|
|
|
connect with a client to do basic API reqs.
|
2023-02-22 16:28:07 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
async def main():
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-02-22 16:28:07 +00:00
|
|
|
async with (
|
|
|
|
open_test_pikerd(
|
2023-02-24 18:11:15 +00:00
|
|
|
loglevel=loglevel,
|
2023-02-22 16:28:07 +00:00
|
|
|
tsdb=True
|
2023-03-09 17:23:46 +00:00
|
|
|
) as (
|
|
|
|
_, # host
|
|
|
|
_, # port
|
|
|
|
pikerd_portal,
|
|
|
|
services,
|
|
|
|
),
|
2023-02-22 16:28:07 +00:00
|
|
|
):
|
2023-03-09 17:23:46 +00:00
|
|
|
# XXX NOTE: we use a retry-connect loop because it seems
|
|
|
|
# that if we connect *too fast* to a booting container
|
|
|
|
# instance (i.e. if mkts's IPC machinery isn't up early
|
|
|
|
# enough) the client will hang on req-resp submissions. So,
|
|
|
|
# instead we actually reconnect the client entirely in
|
|
|
|
# a loop until we get a response.
|
|
|
|
for _ in range(3):
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-03-09 17:23:46 +00:00
|
|
|
# NOTE: default sockaddr is embedded within
|
|
|
|
async with marketstore.get_client() as client:
|
|
|
|
|
|
|
|
with trio.move_on_after(1) as cs:
|
|
|
|
syms = await client.list_symbols()
|
|
|
|
|
|
|
|
if cs.cancelled_caught:
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
|
|
# should be an empty db?
|
|
|
|
assert not syms
|
|
|
|
print(f'RX syms resp: {syms}')
|
|
|
|
|
|
|
|
assert (
|
|
|
|
len(await client.server_version()) ==
|
|
|
|
len('3862e9973da36cfc6004b88172c08f09269aaf01')
|
|
|
|
)
|
|
|
|
print('VERSION CHECKED')
|
|
|
|
|
|
|
|
break # get out of retry-connect loop
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-02-22 16:28:07 +00:00
|
|
|
trio.run(main)
|
2023-02-21 16:29:35 +00:00
|
|
|
|
|
|
|
|
2023-02-24 18:11:15 +00:00
|
|
|
def test_elasticsearch_startup_and_version(
|
2023-02-21 16:58:04 +00:00
|
|
|
open_test_pikerd: AsyncContextManager,
|
2023-03-09 17:23:46 +00:00
|
|
|
loglevel: str,
|
2023-02-21 16:29:35 +00:00
|
|
|
):
|
2023-02-21 16:58:04 +00:00
|
|
|
'''
|
2023-02-22 16:28:07 +00:00
|
|
|
Verify elasticsearch starts correctly
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-02-21 16:58:04 +00:00
|
|
|
'''
|
|
|
|
async def main():
|
|
|
|
port = 19200
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-02-21 16:58:04 +00:00
|
|
|
async with open_test_pikerd(
|
2023-02-24 18:11:15 +00:00
|
|
|
loglevel=loglevel,
|
2023-02-21 16:58:04 +00:00
|
|
|
es=True
|
|
|
|
) as (s, i, pikerd_portal, services):
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-02-21 16:58:04 +00:00
|
|
|
es = Elasticsearch(hosts=[f'http://localhost:{port}'])
|
|
|
|
assert es.info()['version']['number'] == '7.17.4'
|
2023-02-21 16:29:35 +00:00
|
|
|
|
2023-02-21 16:58:04 +00:00
|
|
|
trio.run(main)
|