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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
# -*- coding: utf-8 -*-
# BSD 2-Clause License
#
# Apprise - Push Notification Library.
# Copyright (c) 2025, Chris Caron <lead2gold@gmail.com>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 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.
#
# 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.
from unittest import mock
from json import dumps
import requests
import apprise
from apprise.plugins.opsgenie import (
NotifyType, NotifyOpsgenie, OpsgeniePriority)
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'
OPSGENIE_GOOD_RESPONSE = dumps({
"result": "Request will be processed",
"took": 0.204,
"requestId": "43a29c5c-3dbf-4fa4-9c26-f4f71023e120"
})
# 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://user@apikey/', {
# No targets specified; this is allowed
'instance': NotifyOpsgenie,
'notify_type': NotifyType.WARNING,
# Bad response returned
'requests_response_text': '{',
# We will not be successful sending the notice
'notify_response': False,
}),
('opsgenie://apikey/', {
# No targets specified; this is allowed
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/user', {
# Valid user
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
'privacy_url': 'opsgenie://a...y/%40user',
}),
('opsgenie://apikey/@user?region=eu', {
# European Region
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/@user?entity=A%20Entity', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/@user?alias=An%20Alias', {
# Assign an alias
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
# Bad Action
('opsgenie://apikey/@user?action=invalid', {
# Assign an entity
'instance': TypeError,
}),
('opsgenie://from@apikey/@user?:invalid=note', {
# Assign an entity
'instance': TypeError,
}),
('opsgenie://apikey/@user?:warning=invalid', {
# Assign an entity
'instance': TypeError,
}),
# Creates an index entry
('opsgenie://apikey/@user?entity=index&action=new', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
# Now action it
('opsgenie://apikey/@user?entity=index&action=acknowledge', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.SUCCESS,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://from@apikey/@user?entity=index&action=note', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.SUCCESS,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://from@apikey/@user?entity=index&action=note', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.SUCCESS,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
'response': False,
'requests_response_code': 500,
}),
('opsgenie://apikey/@user?entity=index&action=close', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.SUCCESS,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/@user?entity=index&action=delete', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.SUCCESS,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
# map info messages to generate a new message
('opsgenie://apikey/@user?entity=index2&:info=new', {
# Assign an entity
'instance': NotifyOpsgenie,
'notify_type': NotifyType.INFO,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://joe@apikey/@user?priority=p3', {
# Assign our priority
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('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
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/@user?priority=invalid', {
# Invalid priority (loads using default)
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('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)
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/@{}/#{}/*{}/^{}/'.format(
UUID4, UUID4, UUID4, UUID4), {
# similar to the above, except we use the UUID's
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
# Same link as before but @ missing at the front causing an ambigious
# lookup however the entry is treated a though a @ was in front (user)
('opsgenie://apikey/{}/#{}/*{}/^{}/'.format(
UUID4, UUID4, UUID4, UUID4), {
# similar to the above, except we use the UUID's
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey?to=#team,user&+key=value&+type=override', {
# Test to= and details (key/value pair) also override 'type'
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/#team/@user/?batch=yes', {
# Test batch=
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/#team/@user/?batch=no', {
# Test batch=
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://?apikey=abc&to=user', {
# Test Kwargs
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
}),
('opsgenie://apikey/#team/user/', {
'instance': NotifyOpsgenie,
# throw a bizzare code forcing us to fail to look it up
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
'response': False,
'requests_response_code': 999,
}),
('opsgenie://apikey/#topic1/device/', {
'instance': NotifyOpsgenie,
'notify_type': NotifyType.FAILURE,
# Our response expected server response
'requests_response_text': OPSGENIE_GOOD_RESPONSE,
# 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(tmpdir):
"""
NotifyOpsgenie() Apprise URLs
"""
# Run our general tests
AppriseURLTester(tests=apprise_url_tests).run_all(str(tmpdir))
@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
mock_post.return_value.content = OPSGENIE_GOOD_RESPONSE
# 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
@mock.patch('requests.post')
def test_plugin_opsgenie_edge_case(mock_post):
"""
NotifyOpsgenie() Edge Cases
"""
# Prepare Mock
mock_post.return_value = requests.Request()
mock_post.return_value.status_code = requests.codes.ok
mock_post.return_value.content = OPSGENIE_GOOD_RESPONSE
instance = apprise.Apprise.instantiate('opsgenie://apikey')
assert isinstance(instance, NotifyOpsgenie)
assert len(instance.store.keys()) == 0
assert instance.notify('test', 'key', NotifyType.FAILURE) is True
assert len(instance.store.keys()) == 1
# Again just causes same index to get over-written
assert instance.notify('test', 'key', NotifyType.FAILURE) is True
assert len(instance.store.keys()) == 1
assert 'a62f2225bf' in instance.store
# Assign it garbage
instance.store['a62f2225bf'] = 'garbage'
# This causes an internal check to fail where the keys are expected to be
# as a list (this one is now a string)
# content self corrects and things are fine
assert instance.notify('test', 'key', NotifyType.FAILURE) is True
assert len(instance.store.keys()) == 1
# new key is new index
assert instance.notify('test', 'key2', NotifyType.FAILURE) is True
assert len(instance.store.keys()) == 2
|