1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
from __future__ import annotations
import asyncio
import re
from operator import add, sub
from time import sleep
import pytest
pytest.importorskip("bokeh")
from tlz import first
from tornado.httpclient import AsyncHTTPClient
from distributed.client import wait
from distributed.dashboard.components.worker import (
CommunicatingStream,
CommunicatingTimeSeries,
Counters,
ExecutingTimeSeries,
StateTable,
SystemMonitor,
)
from distributed.metrics import time
from distributed.utils_test import dec, gen_cluster, inc
@gen_cluster(
client=True, worker_kwargs={"dashboard": True}, scheduler_kwargs={"dashboard": True}
)
async def test_routes(c, s, a, b):
port = a.http_server.port
future = c.submit(sleep, 1)
await asyncio.sleep(0.1)
http_client = AsyncHTTPClient()
for suffix in ["status", "counters", "system", "profile", "profile-server"]:
response = await http_client.fetch("http://localhost:%d/%s" % (port, suffix))
body = response.body.decode()
assert "bokeh" in body.lower()
assert not re.search("href=./", body) # no absolute links
response = await http_client.fetch(
"http://localhost:%d/info/main/workers.html" % s.http_server.port
)
assert str(port) in response.body.decode()
@gen_cluster(client=True, worker_kwargs={"dashboard": True})
async def test_simple(c, s, a, b):
assert s.workers[a.address].services == {"dashboard": a.http_server.port}
assert s.workers[b.address].services == {"dashboard": b.http_server.port}
future = c.submit(sleep, 1)
await asyncio.sleep(0.1)
http_client = AsyncHTTPClient()
response = await http_client.fetch(f"http://localhost:{a.http_server.port}/system")
assert "bokeh" in response.body.decode().lower()
@gen_cluster(client=True, worker_kwargs={"dashboard": True})
async def test_services_kwargs(c, s, a, b):
assert s.workers[a.address].services == {"dashboard": a.http_server.port}
@pytest.mark.slow
@pytest.mark.parametrize(
"cls",
(
StateTable,
ExecutingTimeSeries,
CommunicatingTimeSeries,
SystemMonitor,
),
)
@gen_cluster(client=True)
async def test_basic(c, s, a, b, cls):
aa = cls(a)
bb = cls(b)
xs = c.map(inc, range(10), workers=a.address)
ys = c.map(dec, range(10), workers=b.address)
def slowall(*args):
sleep(1)
x = c.submit(slowall, xs, ys, 1, workers=a.address)
y = c.submit(slowall, xs, ys, 2, workers=b.address)
await asyncio.sleep(0.1)
aa.update()
bb.update()
assert len(first(aa.source.data.values())) and len(first(bb.source.data.values()))
@gen_cluster(client=True)
async def test_counters(c, s, a, b):
pytest.importorskip("crick")
while "tick-duration" not in a.digests:
await asyncio.sleep(0.01)
aa = Counters(a)
aa.update()
await asyncio.sleep(0.1)
aa.update()
start = time()
while not len(aa.digest_sources["tick-duration"][0].data["x"]):
await asyncio.sleep(1)
assert time() < start + 5
a.digests["foo"].add(1)
a.digests["foo"].add(2)
aa.add_digest_figure("foo")
a.counters["bar"].add(1)
a.counters["bar"].add(2)
a.counters["bar"].add(2)
aa.add_counter_figure("bar")
for x in [aa.counter_sources.values(), aa.digest_sources.values()]:
for y in x:
for z in y.values():
assert len(set(map(len, z.data.values()))) == 1
@gen_cluster(client=True)
async def test_CommunicatingStream(c, s, a, b):
aa = CommunicatingStream(a)
bb = CommunicatingStream(b)
xs = c.map(inc, range(10), workers=a.address)
ys = c.map(dec, range(10), workers=b.address)
adds = c.map(add, xs, ys, workers=a.address)
subs = c.map(sub, xs, ys, workers=b.address)
await wait([adds, subs])
aa.update()
bb.update()
assert len(first(aa.transfer_outgoing.data.values())) and len(
first(bb.transfer_outgoing.data.values())
)
assert len(first(aa.transfer_incoming.data.values())) and len(
first(bb.transfer_incoming.data.values())
)
@gen_cluster(
client=True, clean_kwargs={"threads": False}, worker_kwargs={"dashboard": True}
)
async def test_prometheus(c, s, a, b):
pytest.importorskip("prometheus_client")
http_client = AsyncHTTPClient()
for suffix in ["metrics"]:
response = await http_client.fetch(
"http://localhost:%d/%s" % (a.http_server.port, suffix)
)
assert response.code == 200
|