Exemplo n.º 1
0
def test_two_operations_one_too_long(clean_cache, capfd):
    """2 operations, 1 took >= 3 seconds = still ok"""
    with timeit():
        pass
    # this one took too long
    with timeit():
        pass
    output = capfd.readouterr()[0]
    assert not output
Exemplo n.º 2
0
def test_four_operations_three_took_too_long_using_floats(clean_cache, capfd):
    """4 operations, 3 tooks > 2.2 seconds = NOT ok, prints ALERT"""
    with timeit():
        pass
    with timeit():
        pass
    with timeit():
        pass
    with timeit():
        pass
    output = capfd.readouterr()[0]
    assert output.strip() == ALERT_MSG
Exemplo n.º 3
0
def test_three_operations_two_too_long(clean_cache, capfd):
    """3 operations, 2 took >= 3 seconds = still ok"""
    # Note that each timeit call takes the next 2 elements of side_effect
    # = mocked start/end times in seconds
    with timeit():
        pass
    with timeit():
        pass
    with timeit():
        pass
    output = capfd.readouterr()[0]
    assert not output
Exemplo n.º 4
0
def test_four_operations_took_too_long_but_on_two_days(clean_cache, capfd):
    """4 tooks >= 3 seconds, but spread over 2 days = ok / no alert"""
    # 2 violations yesterday
    with patch('monitor.get_today', return_value=date(2018, 5, 1)):
        with timeit():
            pass
        with timeit():
            pass
    # 2 violations today
    with patch('monitor.get_today', return_value=date(2018, 5, 2)):
        with timeit():
            pass
        with timeit():
            pass
    output = capfd.readouterr()[0]
    assert not output
Exemplo n.º 5
0
def test_one_operation_within_time(clean_cache, capfd):
    """1 operation took 2 seconds = ok"""
    with timeit():
        pass
    output = capfd.readouterr()[0]
    assert not output