def test_progressbar_done(loop): with cluster() as (s, [a, b]): with Client(s['address'], loop=loop) as c: L = [c.submit(inc, i) for i in range(5)] wait(L) p = ProgressWidget(L) sync(loop, p.listen) assert p.status == 'finished' assert p.bar.value == 1.0 assert p.bar.bar_style == 'success' assert 'Finished' in p.elapsed_time.value f = c.submit(throws, L) wait([f]) p = ProgressWidget([f]) sync(loop, p.listen) assert p.status == 'error' assert p.bar.value == 0.0 assert p.bar.bar_style == 'danger' assert 'Exception' in p.elapsed_time.value try: throws(1) except Exception as e: assert repr(e) in p.elapsed_time.value
def test_progressbar_widget(c, s, a, b): x = c.submit(inc, 1) y = c.submit(inc, x) z = c.submit(inc, y) yield wait(z) progress = ProgressWidget([z.key], scheduler=s.address, complete=True) yield progress.listen() assert progress.bar.value == 1.0 assert "3 / 3" in progress.bar_text.value progress = ProgressWidget([z.key], scheduler=s.address) yield progress.listen()
def test_progressbar_widget(c, s, a, b): x = c.submit(inc, 1) y = c.submit(inc, x) z = c.submit(inc, y) yield wait(z) progress = ProgressWidget([z.key], scheduler=(s.ip, s.port), complete=True) yield progress.listen() assert progress.bar.value == 1.0 assert '3 / 3' in progress.bar_text.value progress = ProgressWidget([z.key], scheduler=(s.ip, s.port)) yield progress.listen()
def test_progressbar_widget(s, a, b): s.update_graph(tasks=valmap(dumps_task, {'x': (inc, 1), 'y': (inc, 'x'), 'z': (inc, 'y')}), keys=['z'], dependencies={'y': {'x'}, 'z': {'y'}}) progress = ProgressWidget(['z'], scheduler=(s.ip, s.port)) yield progress.listen() assert progress.bar.value == 1.0 assert '3 / 3' in progress.bar_text.value progress = ProgressWidget(['z'], scheduler=(s.ip, s.port)) yield progress.listen()
def test_progressbar_widget(s, a, b): s.update_graph(dsk={ 'x': (inc, 1), 'y': (inc, 'x'), 'z': (inc, 'y') }, keys=['z']) progress = ProgressWidget(['z'], scheduler=(s.ip, s.port)) yield progress.listen() assert progress.bar.value == 1.0 assert '3 / 3' in progress.bar_text.value progress = ProgressWidget(['z'], scheduler=(s.ip, s.port)) yield progress.listen()
def test_progressbar_cancel(client): import time L = [client.submit(lambda: time.sleep(0.3), i) for i in range(5)] p = ProgressWidget(L) client.sync(p.listen) L[-1].cancel() wait(L[:-1]) assert p.status == 'error' assert p.bar.value == 0 # no tasks finish before cancel is called
def test_progressbar_done(loop): with cluster() as (s, [a, b]): with Client(('127.0.0.1', s['port']), loop=loop) as c: L = [c.submit(inc, i) for i in range(5)] wait(L) p = ProgressWidget(L) sync(loop, p.listen) assert p.status == 'finished' assert p.bar.value == 1.0 assert p.bar.bar_style == 'success' f = c.submit(throws, L) wait([f]) p = ProgressWidget([f]) sync(loop, p.listen) assert p.status == 'error' assert p.bar.value == 0.0 assert p.bar.bar_style == 'danger'
def test_progressbar_cancel(loop): with cluster() as (s, [a, b]): with Client(s['address'], loop=loop) as c: import time L = [c.submit(lambda: time.sleep(0.3), i) for i in range(5)] p = ProgressWidget(L) sync(loop, p.listen) L[-1].cancel() wait(L[:-1]) assert p.status == 'error' assert p.bar.value == 0 # no tasks finish before cancel is called
async def test_tls(c, s, a, b): x = c.submit(inc, 1) y = c.submit(inc, x) z = c.submit(inc, y) await wait(z) progress = ProgressWidget([z], scheduler=s.address, complete=True) await progress.listen() assert progress.bar.value == 1.0 assert "3 / 3" in progress.bar_text.value
def test_serializers(c, s, a, b): x = c.submit(inc, 1) y = c.submit(inc, x) z = c.submit(inc, y) yield wait(z) progress = ProgressWidget([z], scheduler=s.address, complete=True) yield progress.listen() assert progress.bar.value == 1.0 assert '3 / 3' in progress.bar_text.value
def test_progressbar_cancel(loop): with cluster() as (s, [a, b]): with Executor(('127.0.0.1', s['port']), loop=loop) as e: import time L = [e.submit(lambda: time.sleep(0.3), i) for i in range(5)] p = ProgressWidget(L) sync(loop, p.listen) L[-1].cancel() wait(L[:-1]) assert p.status == 'error' assert p.bar.value == 0 # no tasks finish before cancel is called
def test_progressbar_done(client): L = [client.submit(inc, i) for i in range(5)] wait(L) p = ProgressWidget(L) client.sync(p.listen) assert p.status == "finished" assert p.bar.value == 1.0 assert p.bar.bar_style == "success" assert "Finished" in p.elapsed_time.value f = client.submit(throws, L) wait([f]) p = ProgressWidget([f]) client.sync(p.listen) assert p.status == "error" assert p.bar.value == 0.0 assert p.bar.bar_style == "danger" assert "Exception" in p.elapsed_time.value try: throws(1) except Exception as e: assert repr(e) in p.elapsed_time.value