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
|
import pytest
from flexmock import flexmock
import borgmatic.hooks.monitoring.monitor
from borgmatic.hooks.monitoring import sentry as module
@pytest.mark.parametrize(
'state,configured_states,configured_environment,expected_status',
(
(borgmatic.hooks.monitoring.monitor.State.START, ['start'], None, 'in_progress'),
(
borgmatic.hooks.monitoring.monitor.State.START,
['start', 'finish', 'fail'],
None,
'in_progress',
),
(borgmatic.hooks.monitoring.monitor.State.START, None, 'production', 'in_progress'),
(borgmatic.hooks.monitoring.monitor.State.FINISH, ['finish'], 'development', 'ok'),
(borgmatic.hooks.monitoring.monitor.State.FAIL, ['fail'], 'another-environment', 'error'),
),
)
def test_ping_monitor_constructs_cron_url_and_pings_it(
state, configured_states, configured_environment, expected_status
):
hook_config = {
'data_source_name_url': 'https://5f80ec@o294220.ingest.us.sentry.io/203069',
'monitor_slug': 'test',
}
if configured_states:
hook_config['states'] = configured_states
environment_query = ''
if configured_environment:
hook_config['environment'] = configured_environment
environment_query = f'&environment={configured_environment}'
flexmock(module.requests).should_receive('post').with_args(
f'https://o294220.ingest.us.sentry.io/api/203069/cron/test/5f80ec/?status={expected_status}{environment_query}',
timeout=int,
headers={'User-Agent': 'borgmatic'},
).and_return(flexmock(ok=True)).once()
module.ping_monitor(
hook_config,
{},
'config.yaml',
state,
monitoring_log_level=1,
dry_run=False,
)
def test_ping_monitor_with_unconfigured_state_bails():
hook_config = {
'data_source_name_url': 'https://5f80ec@o294220.ingest.us.sentry.io/203069',
'monitor_slug': 'test',
'states': ['fail'],
}
flexmock(module.requests).should_receive('post').never()
module.ping_monitor(
hook_config,
{},
'config.yaml',
borgmatic.hooks.monitoring.monitor.State.START,
monitoring_log_level=1,
dry_run=False,
)
@pytest.mark.parametrize(
'data_source_name_url',
(
'5f80ec@o294220.ingest.us.sentry.io/203069',
'https://o294220.ingest.us.sentry.io/203069',
'https://5f80ec@/203069',
'https://5f80ec@o294220.ingest.us.sentry.io',
),
)
def test_ping_monitor_with_invalid_data_source_name_url_bails(data_source_name_url):
hook_config = {
'data_source_name_url': data_source_name_url,
'monitor_slug': 'test',
}
flexmock(module.requests).should_receive('post').never()
module.ping_monitor(
hook_config,
{},
'config.yaml',
borgmatic.hooks.monitoring.monitor.State.START,
monitoring_log_level=1,
dry_run=False,
)
def test_ping_monitor_with_invalid_sentry_state_bails():
hook_config = {
'data_source_name_url': 'https://5f80ec@o294220.ingest.us.sentry.io/203069',
'monitor_slug': 'test',
# This should never actually happen in practice, because the config schema prevents it.
'states': ['log'],
}
flexmock(module.requests).should_receive('post').never()
module.ping_monitor(
hook_config,
{},
'config.yaml',
borgmatic.hooks.monitoring.monitor.State.LOG,
monitoring_log_level=1,
dry_run=False,
)
def test_ping_monitor_with_dry_run_bails():
hook_config = {
'data_source_name_url': 'https://5f80ec@o294220.ingest.us.sentry.io/203069',
'monitor_slug': 'test',
}
flexmock(module.requests).should_receive('post').never()
module.ping_monitor(
hook_config,
{},
'config.yaml',
borgmatic.hooks.monitoring.monitor.State.START,
monitoring_log_level=1,
dry_run=True,
)
def test_ping_monitor_with_network_error_does_not_raise():
hook_config = {
'data_source_name_url': 'https://5f80ec@o294220.ingest.us.sentry.io/203069',
'monitor_slug': 'test',
}
response = flexmock(ok=False)
response.should_receive('raise_for_status').and_raise(
module.requests.exceptions.ConnectionError,
)
flexmock(module.requests).should_receive('post').with_args(
'https://o294220.ingest.us.sentry.io/api/203069/cron/test/5f80ec/?status=in_progress',
timeout=int,
headers={'User-Agent': 'borgmatic'},
).and_return(response).once()
module.ping_monitor(
hook_config,
{},
'config.yaml',
borgmatic.hooks.monitoring.monitor.State.START,
monitoring_log_level=1,
dry_run=False,
)
|