2021-11-25 21:20:22 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-02-09 09:54:55 +01:00
|
|
|
# BSD 3-Clause License
|
2021-11-25 21:20:22 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# Apprise - Push Notification Library.
|
|
|
|
# Copyright (c) 2023, Chris Caron <lead2gold@gmail.com>
|
2021-11-25 21:20:22 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
2021-11-25 21:20:22 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions and the following disclaimer.
|
2021-11-25 21:20:22 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
|
|
# and/or other materials provided with the distribution.
|
2021-11-25 21:20:22 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# 3. Neither the name of the copyright holder nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2022-10-08 02:28:36 +02:00
|
|
|
from unittest import mock
|
2022-09-01 02:05:40 +02:00
|
|
|
|
2022-06-09 23:54:57 +02:00
|
|
|
import requests
|
|
|
|
import apprise
|
2022-10-09 11:28:18 +02:00
|
|
|
from apprise.plugins.NotifyOpsgenie import NotifyOpsgenie, OpsgeniePriority
|
2021-11-25 21:20:22 +01:00
|
|
|
from helpers import AppriseURLTester
|
|
|
|
|
|
|
|
# Disable logging for a cleaner testing output
|
|
|
|
import logging
|
|
|
|
logging.disable(logging.CRITICAL)
|
|
|
|
|
|
|
|
# a test UUID we can use
|
|
|
|
UUID4 = '8b799edf-6f98-4d3a-9be7-2862fb4e5752'
|
|
|
|
|
|
|
|
# Our Testing URLs
|
|
|
|
apprise_url_tests = (
|
|
|
|
('opsgenie://', {
|
|
|
|
# We failed to identify any valid authentication
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('opsgenie://:@/', {
|
|
|
|
# We failed to identify any valid authentication
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('opsgenie://%20%20/', {
|
|
|
|
# invalid apikey specified
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('opsgenie://apikey/user/?region=xx', {
|
|
|
|
# invalid region id
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('opsgenie://apikey/', {
|
|
|
|
# No targets specified; this is allowed
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/user', {
|
|
|
|
# Valid user
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
'privacy_url': 'opsgenie://a...y/%40user',
|
|
|
|
}),
|
|
|
|
('opsgenie://apikey/@user?region=eu', {
|
|
|
|
# European Region
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/@user?entity=A%20Entity', {
|
|
|
|
# Assign an entity
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/@user?alias=An%20Alias', {
|
|
|
|
# Assign an alias
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/@user?priority=p3', {
|
|
|
|
# Assign our priority
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/?tags=comma,separated', {
|
|
|
|
# Test our our 'tags' (tag is reserved in Apprise) but not 'tags'
|
|
|
|
# Also test the fact we do not need to define a target
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/@user?priority=invalid', {
|
|
|
|
# Invalid priority (loads using default)
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/user@email.com/#team/*sche/^esc/%20/a', {
|
|
|
|
# Valid user (email), valid schedule, Escalated ID,
|
|
|
|
# an invalid entry (%20), and too short of an entry (a)
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/{}/@{}/#{}/*{}/^{}/'.format(
|
|
|
|
UUID4, UUID4, UUID4, UUID4, UUID4), {
|
|
|
|
# similar to the above, except we use the UUID's
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey?to=#team,user&+key=value&+type=override', {
|
|
|
|
# Test to= and details (key/value pair) also override 'type'
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/#team/@user/?batch=yes', {
|
|
|
|
# Test batch=
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/#team/@user/?batch=no', {
|
|
|
|
# Test batch=
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://?apikey=abc&to=user', {
|
|
|
|
# Test Kwargs
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('opsgenie://apikey/#team/user/', {
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
# throw a bizzare code forcing us to fail to look it up
|
|
|
|
'response': False,
|
|
|
|
'requests_response_code': 999,
|
|
|
|
}),
|
|
|
|
('opsgenie://apikey/#topic1/device/', {
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifyOpsgenie,
|
2021-11-25 21:20:22 +01:00
|
|
|
# Throws a series of connection and transfer exceptions when this flag
|
|
|
|
# is set and tests that we gracfully handle them
|
|
|
|
'test_requests_exceptions': True,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_plugin_opsgenie_urls():
|
|
|
|
"""
|
|
|
|
NotifyOpsgenie() Apprise URLs
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Run our general tests
|
|
|
|
AppriseURLTester(tests=apprise_url_tests).run_all()
|
2022-06-09 23:54:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
@mock.patch('requests.post')
|
|
|
|
def test_plugin_opsgenie_config_files(mock_post):
|
|
|
|
"""
|
|
|
|
NotifyOpsgenie() Config File Cases
|
|
|
|
"""
|
|
|
|
content = """
|
|
|
|
urls:
|
|
|
|
- opsgenie://apikey/user:
|
|
|
|
- priority: 1
|
|
|
|
tag: opsgenie_int low
|
|
|
|
- priority: "1"
|
|
|
|
tag: opsgenie_str_int low
|
|
|
|
- priority: "p1"
|
|
|
|
tag: opsgenie_pstr_int low
|
|
|
|
- priority: low
|
|
|
|
tag: opsgenie_str low
|
|
|
|
|
|
|
|
# This will take on moderate (default) priority
|
|
|
|
- priority: invalid
|
|
|
|
tag: opsgenie_invalid
|
|
|
|
|
|
|
|
- opsgenie://apikey2/user2:
|
|
|
|
- priority: 5
|
|
|
|
tag: opsgenie_int emerg
|
|
|
|
- priority: "5"
|
|
|
|
tag: opsgenie_str_int emerg
|
|
|
|
- priority: "p5"
|
|
|
|
tag: opsgenie_pstr_int emerg
|
|
|
|
- priority: emergency
|
|
|
|
tag: opsgenie_str emerg
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Prepare Mock
|
|
|
|
mock_post.return_value = requests.Request()
|
|
|
|
mock_post.return_value.status_code = requests.codes.ok
|
|
|
|
|
|
|
|
# Create ourselves a config object
|
|
|
|
ac = apprise.AppriseConfig()
|
|
|
|
assert ac.add_config(content=content) is True
|
|
|
|
|
|
|
|
aobj = apprise.Apprise()
|
|
|
|
|
|
|
|
# Add our configuration
|
|
|
|
aobj.add(ac)
|
|
|
|
|
|
|
|
# We should be able to read our 9 servers from that
|
|
|
|
# 4x low
|
|
|
|
# 4x emerg
|
|
|
|
# 1x invalid (so takes on normal priority)
|
|
|
|
assert len(ac.servers()) == 9
|
|
|
|
assert len(aobj) == 9
|
|
|
|
assert len([x for x in aobj.find(tag='low')]) == 4
|
|
|
|
for s in aobj.find(tag='low'):
|
|
|
|
assert s.priority == OpsgeniePriority.LOW
|
|
|
|
|
|
|
|
assert len([x for x in aobj.find(tag='emerg')]) == 4
|
|
|
|
for s in aobj.find(tag='emerg'):
|
|
|
|
assert s.priority == OpsgeniePriority.EMERGENCY
|
|
|
|
|
|
|
|
assert len([x for x in aobj.find(tag='opsgenie_str')]) == 2
|
|
|
|
assert len([x for x in aobj.find(tag='opsgenie_str_int')]) == 2
|
|
|
|
assert len([x for x in aobj.find(tag='opsgenie_pstr_int')]) == 2
|
|
|
|
assert len([x for x in aobj.find(tag='opsgenie_int')]) == 2
|
|
|
|
|
|
|
|
assert len([x for x in aobj.find(tag='opsgenie_invalid')]) == 1
|
|
|
|
assert next(aobj.find(tag='opsgenie_invalid')).priority == \
|
|
|
|
OpsgeniePriority.NORMAL
|