Exemplo n.º 1
0
def test_cancel_future_after_shutdown_no_wait():
    bpe = BatchPoolExecutor(project='hail-vdc')
    future = bpe.submit(sleep_forever)
    bpe.shutdown(wait=False)
    was_cancelled = future.cancel()
    assert was_cancelled
    assert future.cancelled()
Exemplo n.º 2
0
def test_cancel_future_after_shutdown_no_wait():
    bpe = BatchPoolExecutor(project='hail-vdc', image=PYTHON_DILL_IMAGE)
    def sleep_forever():
        while True:
            time.sleep(3600)

    future = bpe.submit(sleep_forever)
    bpe.shutdown(wait=False)
    was_cancelled = future.cancel()
    assert was_cancelled
    assert future.cancelled()
Exemplo n.º 3
0
def test_map_timeout():
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        try:
            list(bpe.map(lambda _: sleep_forever(), range(5), timeout=2))
        except asyncio.TimeoutError:
            pass
        else:
            assert False
Exemplo n.º 4
0
def test_cancel_future_after_exit_no_wait_on_exit():
    with BatchPoolExecutor(project='hail-vdc', wait_on_exit=False, image=PYTHON_DILL_IMAGE) as bpe:
        def sleep_forever():
            while True:
                time.sleep(3600)

        future = bpe.submit(sleep_forever)
    was_cancelled = future.cancel()
    assert was_cancelled
    assert future.cancelled()
Exemplo n.º 5
0
def test_bad_image_gives_good_error():
    with BatchPoolExecutor(project='hail-vdc',
                           image='hailgenetics/not-a-valid-image:123abc') as bpe:
        future = bpe.submit(lambda: 3)
    try:
        future.exception()
    except ValueError as exc:
        assert 'submitted job failed:' in exc.args[0]
    else:
        assert False
Exemplo n.º 6
0
def test_map_timeout():
    with BatchPoolExecutor(project='hail-vdc', image=PYTHON_DILL_IMAGE) as bpe:
        def sleep_forever():
            while True:
                time.sleep(3600)
        try:
            list(bpe.map(lambda _: sleep_forever(), range(5), timeout=2))
        except asyncio.TimeoutError:
            pass
        else:
            assert False
Exemplo n.º 7
0
def test_exception_in_map():
    def raise_value_error():
        raise ValueError('dead')
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        try:
            gen = bpe.map(lambda _: raise_value_error(), range(5))
            next(gen)
        except ValueError as exc:
            assert 'ValueError: dead' in exc.args[0]
        else:
            assert False
Exemplo n.º 8
0
def test_exception_in_exception():
    def raise_value_error():
        raise ValueError('dead')
    with BatchPoolExecutor(project='hail-vdc', image=PYTHON_DILL_IMAGE) as bpe:
        try:
            future = bpe.submit(raise_value_error)
            future.exception()
        except ValueError as exc:
            assert 'ValueError: dead' in exc.args[0]
        else:
            assert False
Exemplo n.º 9
0
def test_result_with_timeout():
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        future = bpe.submit(sleep_forever)
        try:
            future.result(timeout=2)
        except asyncio.TimeoutError:
            pass
        else:
            assert False
        finally:
            future.cancel()
Exemplo n.º 10
0
def test_no_exception_when_exiting_context():
    def raise_value_error():
        raise ValueError('dead')
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        future = bpe.submit(raise_value_error)
    try:
        future.exception()
    except ValueError as exc:
        assert 'ValueError: dead' in exc.args[0]
    else:
        assert False
Exemplo n.º 11
0
def test_exception_in_result():
    def raise_value_error():
        raise ValueError('dead')
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        try:
            future = bpe.submit(raise_value_error)
            future.result()
        except ValueError as exc:
            assert 'ValueError: dead' in exc.args[0]
        else:
            assert False
Exemplo n.º 12
0
def test_map_chunksize(backend):
    row_args = [x for row in range(5) for x in [row, row, row, row, row]]
    col_args = [x for row in range(5) for x in list(range(5))]
    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           image=PYTHON_DILL_IMAGE) as bpe:
        multiplication_table = list(
            bpe.map(lambda x, y: x * y, row_args, col_args, chunksize=5))
    assert multiplication_table == [
        0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 0, 2, 4, 6, 8, 0, 3, 6, 9, 12, 0, 4, 8,
        12, 16
    ]
Exemplo n.º 13
0
def test_cancel_future(backend):
    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           image=PYTHON_DILL_IMAGE) as bpe:

        def sleep_forever():
            while True:
                time.sleep(3600)

        future = bpe.submit(sleep_forever)
        was_cancelled = future.cancel()
    assert was_cancelled
    assert future.cancelled()
Exemplo n.º 14
0
def test_exception_in_map(backend):
    def raise_value_error():
        raise ValueError('dead')

    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           image=PYTHON_DILL_IMAGE) as bpe:
        try:
            gen = bpe.map(lambda _: raise_value_error(), range(5))
            next(gen)
        except ValueError as exc:
            assert 'ValueError: dead' in exc.args[0]
        else:
            assert False
Exemplo n.º 15
0
def test_result_with_timeout():
    with BatchPoolExecutor(project='hail-vdc', image=PYTHON_DILL_IMAGE) as bpe:
        def sleep_forever():
            while True:
                time.sleep(3600)

        future = bpe.submit(sleep_forever)
        try:
            future.result(timeout=2)
        except asyncio.TimeoutError:
            pass
        else:
            assert False
        finally:
            future.cancel()
Exemplo n.º 16
0
def test_map_error_without_wait_no_error():
    with BatchPoolExecutor(project='hail-vdc', wait_on_exit=False) as bpe:
        bpe.map(lambda _: time.sleep(10), range(5), timeout=2)
Exemplo n.º 17
0
def test_simple_map():
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        actual = list(bpe.map(lambda x: x * 3, range(4)))
    assert [0, 3, 6, 9] == actual
Exemplo n.º 18
0
def test_cancel_future_after_exit_no_wait_on_exit():
    with BatchPoolExecutor(project='hail-vdc', wait_on_exit=False) as bpe:
        future = bpe.submit(sleep_forever)
    was_cancelled = future.cancel()
    assert was_cancelled
    assert future.cancelled()
Exemplo n.º 19
0
def test_cancel_future():
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        future = bpe.submit(sleep_forever)
        was_cancelled = future.cancel()
    assert was_cancelled
    assert future.cancelled()
Exemplo n.º 20
0
def test_simple_submit_result():
    with BatchPoolExecutor(project='hail-vdc') as bpe:
        future_twenty_one = bpe.submit(lambda: 7 * 3)
    assert 21 == future_twenty_one.result()
Exemplo n.º 21
0
def test_map_error_without_wait_no_error(backend):
    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           wait_on_exit=False,
                           image=PYTHON_DILL_IMAGE) as bpe:
        bpe.map(lambda _: time.sleep(10), range(5), timeout=2)
Exemplo n.º 22
0
def test_simple_submit_result(backend):
    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           image=PYTHON_DILL_IMAGE) as bpe:
        future_twenty_one = bpe.submit(lambda: 7 * 3)
    assert 21 == future_twenty_one.result()
Exemplo n.º 23
0
def test_empty_map(backend):
    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           image=PYTHON_DILL_IMAGE) as bpe:
        actual = list(bpe.map(lambda x: x * 3, []))
    assert [] == actual
Exemplo n.º 24
0
def test_simple_map(backend):
    with BatchPoolExecutor(backend=backend,
                           project='hail-vdc',
                           image=PYTHON_DILL_IMAGE) as bpe:
        actual = list(bpe.map(lambda x: x * 3, range(4)))
    assert [0, 3, 6, 9] == actual