123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- from enum import Enum
- from flexmock import flexmock
- import borgmatic.hooks.monitor
- from borgmatic.hooks import zabbix as module
- SERVER = 'https://zabbix.com/zabbix/api_jsonrpc.php'
- ITEMID = 55105
- USERNAME = 'testuser'
- PASSWORD = 'fakepassword'
- API_KEY = 'fakekey'
- HOST = 'borg-server'
- KEY = 'borg.status'
- VALUE = 'fail'
- DATA_HOST_KEY = {
- "jsonrpc": "2.0",
- "method": "history.push",
- "params": {"host": HOST, "key": KEY, "value": VALUE},
- "id": 1,
- }
- DATA_HOST_KEY_WITH_TOKEN = {
- "jsonrpc": "2.0",
- "method": "history.push",
- "params": {"host": HOST, "key": KEY, "value": VALUE},
- "id": 1,
- "auth": "3fe6ed01a69ebd79907a120bcd04e494"
- }
- DATA_ITEMID = {
- "jsonrpc": "2.0",
- "method": "history.push",
- "params": {"itemid": ITEMID, "value": VALUE},
- "id": 1,
- }
- DATA_HOST_KEY_WITH_TOKEN = {
- "jsonrpc": "2.0",
- "method": "history.push",
- "params": {"itemid": ITEMID, "value": VALUE},
- "id": 1,
- "auth": "3fe6ed01a69ebd79907a120bcd04e494"
- }
- DATA_USER_LOGIN = {
- "jsonrpc": "2.0",
- "method": "user.login",
- "params": {"username": USERNAME, "password": PASSWORD},
- "id": 1,
- }
- AUTH_HEADERS_API_KEY = {
- 'Content-Type': 'application/json-rpc',
- 'Authorization': f'Bearer {API_KEY}'
- }
- AUTH_HEADERS_USERNAME_PASSWORD = {
- 'Content-Type': 'application/json-rpc'
- }
- def test_ping_monitor_config_with_api_key_only_exit_early():
- # This test should exit early since only providing an API KEY is not enough
- # for the hook to work
- hook_config = {
- 'api_key': API_KEY
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_with_host_only_exit_early():
- # This test should exit early since only providing a HOST is not enough
- # for the hook to work
- hook_config = {
- 'host': HOST
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_with_key_only_exit_early():
- # This test should exit early since only providing a KEY is not enough
- # for the hook to work
- hook_config = {
- 'key': KEY
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_with_server_only_exit_early():
- # This test should exit early since only providing a SERVER is not enough
- # for the hook to work
- hook_config = {
- 'server': SERVER
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_user_password_no_zabbix_data_exit_early():
- # This test should exit early since there are HOST/KEY or ITEMID provided to publish data to
- hook_config = {
- 'server': SERVER,
- 'username': USERNAME,
- 'password': PASSWORD
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_api_key_no_zabbix_data_exit_early():
- # This test should exit early since there are HOST/KEY or ITEMID provided to publish data to
- hook_config = {
- 'server': SERVER,
- 'api_key': API_KEY
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_itemid_no_auth_data_exit_early():
- # This test should exit early since there is no authentication provided
- # and Zabbix requires authentication to use it's API
- hook_config = {
- 'server': SERVER,
- 'itemid': ITEMID
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_host_and_key_no_auth_data_exit_early():
- # This test should exit early since there is no authentication provided
- # and Zabbix requires authentication to use it's API
- hook_config = {
- 'server': SERVER,
- 'host': HOST,
- 'key': KEY
- }
- flexmock(module.logger).should_receive('warning').once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_host_and_key_with_api_key_auth_data_successful():
- # This test should simulate a successful POST to a Zabbix server. This test uses API_KEY
- # to authenticate and HOST/KEY to know which item to populate in Zabbix.
- hook_config = {
- 'server': SERVER,
- 'host': HOST,
- 'key': KEY,
- 'api_key': API_KEY
- }
- flexmock(module.requests).should_receive('post').with_args(
- f'{SERVER}',
- headers=AUTH_HEADERS_API_KEY,
- json=DATA_HOST_KEY,
- ).and_return(flexmock(ok=True)).once()
- flexmock(module.logger).should_receive('warning').never()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_host_and_key_with_username_password_auth_data_successful():
- # This test should simulate a successful POST to a Zabbix server. This test uses USERNAME/PASSWORD
- # to authenticate and HOST/KEY to know which item to populate in Zabbix.
- hook_config = {
- 'server': SERVER,
- 'host': HOST,
- 'key': KEY,
- 'username': USERNAME,
- 'password': PASSWORD
- }
- auth_response = flexmock(ok=True)
- auth_response.should_receive('json').and_return({"jsonrpc":"2.0","result":"3fe6ed01a69ebd79907a120bcd04e494","id":1})
- flexmock(module.requests).should_receive('post').with_args(
- f'{SERVER}',
- headers=AUTH_HEADERS_USERNAME_PASSWORD,
- json=DATA_USER_LOGIN,
- ).and_return(auth_response).once()
- flexmock(module.logger).should_receive('warning').never()
- flexmock(module.requests).should_receive('post').with_args(
- f'{SERVER}',
- headers=AUTH_HEADERS_USERNAME_PASSWORD,
- json=DATA_HOST_KEY_WITH_TOKEN,
- ).and_return(flexmock(ok=True)).once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_itemid_with_api_key_auth_data_successful():
- # This test should simulate a successful POST to a Zabbix server. This test uses API_KEY
- # to authenticate and HOST/KEY to know which item to populate in Zabbix.
- hook_config = {
- 'server': SERVER,
- 'itemid': ITEMID,
- 'api_key': API_KEY
- }
- flexmock(module.requests).should_receive('post').with_args(
- f'{SERVER}',
- headers=AUTH_HEADERS_API_KEY,
- json=DATA_ITEMID,
- ).and_return(flexmock(ok=True)).once()
- flexmock(module.logger).should_receive('warning').never()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- def test_ping_monitor_config_itemid_with_username_password_auth_data_successful():
- # This test should simulate a successful POST to a Zabbix server. This test uses USERNAME/PASSWORD
- # to authenticate and HOST/KEY to know which item to populate in Zabbix.
- hook_config = {
- 'server': SERVER,
- 'itemid': ITEMID,
- 'username': USERNAME,
- 'password': PASSWORD
- }
- auth_response = flexmock(ok=True)
- auth_response.should_receive('json').and_return({"jsonrpc":"2.0","result":"3fe6ed01a69ebd79907a120bcd04e494","id":1})
- flexmock(module.requests).should_receive('post').with_args(
- f'{SERVER}',
- headers=AUTH_HEADERS_USERNAME_PASSWORD,
- json=DATA_USER_LOGIN,
- ).and_return(auth_response).once()
- flexmock(module.logger).should_receive('warning').never()
- flexmock(module.requests).should_receive('post').with_args(
- f'{SERVER}',
- headers=AUTH_HEADERS_USERNAME_PASSWORD,
- json=DATA_HOST_KEY_WITH_TOKEN,
- ).and_return(flexmock(ok=True)).once()
- module.ping_monitor(
- hook_config,
- {},
- 'config.yaml',
- borgmatic.hooks.monitor.State.FAIL,
- monitoring_log_level=1,
- dry_run=False,
- )
- test_ping_monitor_config_itemid_with_username_password_auth_data_successful()
|