2017-12-14 03:35:59 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# Copyright (C) 2019 Chris Caron <lead2gold@gmail.com>
|
|
|
|
# All rights reserved.
|
2017-12-14 03:35:59 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# This code is licensed under the MIT License.
|
2017-12-14 03:35:59 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files(the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions :
|
2017-12-14 03:35:59 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
2017-12-14 03:35:59 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
2017-12-14 03:35:59 +01:00
|
|
|
|
2020-08-04 18:04:23 +02:00
|
|
|
import sys
|
2019-02-25 07:02:29 +01:00
|
|
|
import mock
|
|
|
|
import six
|
2020-08-04 18:04:23 +02:00
|
|
|
import pytest
|
|
|
|
import apprise
|
2019-02-13 23:48:09 +01:00
|
|
|
|
2020-08-04 18:04:23 +02:00
|
|
|
try:
|
|
|
|
from gntp import errors
|
|
|
|
|
|
|
|
TEST_GROWL_EXCEPTIONS = (
|
|
|
|
errors.NetworkError(
|
|
|
|
0, 'gntp.ParseError() not handled'),
|
|
|
|
errors.AuthError(
|
|
|
|
0, 'gntp.AuthError() not handled'),
|
|
|
|
errors.ParseError(
|
|
|
|
0, 'gntp.ParseError() not handled'),
|
|
|
|
errors.UnsupportedError(
|
|
|
|
0, 'gntp.UnsupportedError() not handled'),
|
|
|
|
)
|
2021-11-25 21:20:22 +01:00
|
|
|
|
2020-08-04 18:04:23 +02:00
|
|
|
except ImportError:
|
2021-11-25 21:20:22 +01:00
|
|
|
# no problem; gntp isn't available to us
|
|
|
|
pass
|
2020-08-04 18:04:23 +02:00
|
|
|
|
2021-11-25 21:20:22 +01:00
|
|
|
# Disable logging for a cleaner testing output
|
|
|
|
import logging
|
|
|
|
logging.disable(logging.CRITICAL)
|
2020-08-04 18:04:23 +02:00
|
|
|
|
2021-11-25 21:20:22 +01:00
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
'gntp' in sys.modules,
|
|
|
|
reason="Requires that gntp NOT be installed")
|
|
|
|
def test_plugin_growl_gntp_import_error():
|
2020-08-04 18:04:23 +02:00
|
|
|
"""
|
2021-11-25 21:20:22 +01:00
|
|
|
NotifyGrowl() Import Error
|
2020-08-04 18:04:23 +02:00
|
|
|
|
|
|
|
"""
|
2021-11-25 21:20:22 +01:00
|
|
|
# If the object is disabled, then it can't be instantiated
|
2020-08-04 18:04:23 +02:00
|
|
|
obj = apprise.Apprise.instantiate('growl://growl.server')
|
2021-11-25 21:20:22 +01:00
|
|
|
assert obj is None
|
2020-08-04 18:04:23 +02:00
|
|
|
|
|
|
|
|
2021-11-25 21:20:22 +01:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
'gntp' not in sys.modules, reason="Requires gntp")
|
2020-08-04 18:04:23 +02:00
|
|
|
@mock.patch('gntp.notifier.GrowlNotifier')
|
2021-11-25 21:20:22 +01:00
|
|
|
def test_plugin_growl_exception_handling(mock_gntp):
|
2020-08-04 18:04:23 +02:00
|
|
|
"""
|
2021-11-25 21:20:22 +01:00
|
|
|
NotifyGrowl() Exception Handling
|
2020-08-04 18:04:23 +02:00
|
|
|
"""
|
|
|
|
TEST_GROWL_EXCEPTIONS = (
|
|
|
|
errors.NetworkError(
|
|
|
|
0, 'gntp.ParseError() not handled'),
|
|
|
|
errors.AuthError(
|
|
|
|
0, 'gntp.AuthError() not handled'),
|
|
|
|
errors.ParseError(
|
|
|
|
0, 'gntp.ParseError() not handled'),
|
|
|
|
errors.UnsupportedError(
|
|
|
|
0, 'gntp.UnsupportedError() not handled'),
|
|
|
|
)
|
|
|
|
|
|
|
|
mock_notifier = mock.Mock()
|
|
|
|
mock_gntp.return_value = mock_notifier
|
|
|
|
mock_notifier.notify.return_value = True
|
|
|
|
|
|
|
|
# First we test the growl.register() function
|
|
|
|
for exception in TEST_GROWL_EXCEPTIONS:
|
|
|
|
mock_notifier.register.side_effect = exception
|
|
|
|
|
|
|
|
# instantiate our object
|
|
|
|
obj = apprise.Apprise.instantiate(
|
|
|
|
'growl://growl.server.hostname', suppress_exceptions=False)
|
|
|
|
|
|
|
|
# Verify Growl object was instantiated
|
|
|
|
assert obj is not None
|
|
|
|
|
|
|
|
# We will fail to send the notification because our registration
|
|
|
|
# would have failed
|
|
|
|
assert obj.notify(
|
|
|
|
title='test', body='body',
|
|
|
|
notify_type=apprise.NotifyType.INFO) is False
|
|
|
|
|
|
|
|
# Now we test the growl.notify() function
|
|
|
|
mock_notifier.register.side_effect = None
|
|
|
|
for exception in TEST_GROWL_EXCEPTIONS:
|
|
|
|
mock_notifier.notify.side_effect = exception
|
|
|
|
|
|
|
|
# instantiate our object
|
|
|
|
obj = apprise.Apprise.instantiate(
|
|
|
|
'growl://growl.server.hostname', suppress_exceptions=False)
|
|
|
|
|
|
|
|
# Verify Growl object was instantiated
|
|
|
|
assert obj is not None
|
|
|
|
|
|
|
|
# We will fail to send the notification because of the underlining
|
|
|
|
# notify() call throws an exception
|
|
|
|
assert obj.notify(
|
|
|
|
title='test', body='body',
|
|
|
|
notify_type=apprise.NotifyType.INFO) is False
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
2021-11-25 21:20:22 +01:00
|
|
|
'gntp' not in sys.modules, reason="Requires gntp")
|
2020-08-04 18:04:23 +02:00
|
|
|
@mock.patch('gntp.notifier.GrowlNotifier')
|
2021-11-25 21:20:22 +01:00
|
|
|
def test_plugin_growl_general(mock_gntp):
|
2017-12-14 03:35:59 +01:00
|
|
|
"""
|
2021-11-25 21:20:22 +01:00
|
|
|
NotifyGrowl() General Checks
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
2020-08-04 18:04:23 +02:00
|
|
|
urls = (
|
|
|
|
##################################
|
|
|
|
# NotifyGrowl
|
|
|
|
##################################
|
|
|
|
('growl://', {
|
|
|
|
'instance': None,
|
|
|
|
}),
|
|
|
|
('growl://:@/', {
|
|
|
|
'instance': None
|
|
|
|
}),
|
|
|
|
|
|
|
|
('growl://pass@growl.server', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://ignored:pass@growl.server', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://growl.server', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
# don't include an image by default
|
|
|
|
'include_image': False,
|
|
|
|
}),
|
|
|
|
('growl://growl.server?version=1', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
# Test sticky flag
|
|
|
|
('growl://growl.server?sticky=yes', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://growl.server?sticky=no', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
# Force a failure
|
|
|
|
('growl://growl.server?version=1', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
'growl_response': None,
|
|
|
|
}),
|
|
|
|
('growl://growl.server?version=2', {
|
|
|
|
# don't include an image by default
|
|
|
|
'include_image': False,
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://growl.server?version=2', {
|
|
|
|
# don't include an image by default
|
|
|
|
'include_image': False,
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
'growl_response': None,
|
|
|
|
}),
|
|
|
|
|
|
|
|
# Priorities
|
|
|
|
('growl://pass@growl.server?priority=low', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://pass@growl.server?priority=moderate', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://pass@growl.server?priority=normal', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://pass@growl.server?priority=high', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://pass@growl.server?priority=emergency', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
|
|
|
|
# Invalid Priorities
|
|
|
|
('growl://pass@growl.server?priority=invalid', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://pass@growl.server?priority=', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
|
|
|
|
# invalid version
|
|
|
|
('growl://growl.server?version=', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://growl.server?version=crap', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
|
|
|
|
# Ports
|
|
|
|
('growl://growl.changeport:2000', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://growl.garbageport:garbage', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
('growl://growl.colon:', {
|
|
|
|
'instance': apprise.plugins.NotifyGrowl,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
|
2017-12-14 03:35:59 +01:00
|
|
|
# iterate over our dictionary and test it out
|
2020-08-04 18:04:23 +02:00
|
|
|
for (url, meta) in urls:
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
# Our expected instance
|
|
|
|
instance = meta.get('instance', None)
|
|
|
|
|
|
|
|
# Our expected exception
|
|
|
|
exception = meta.get('exception', None)
|
|
|
|
|
|
|
|
# Our expected server objects
|
|
|
|
self = meta.get('self', None)
|
|
|
|
|
|
|
|
# Our expected Query response (True, False, or exception type)
|
|
|
|
response = meta.get('response', True)
|
|
|
|
|
|
|
|
# Allow us to force the server response code to be something other then
|
|
|
|
# the defaults
|
|
|
|
growl_response = meta.get(
|
|
|
|
'growl_response', True if response else False)
|
|
|
|
|
|
|
|
mock_notifier = mock.Mock()
|
|
|
|
mock_gntp.return_value = mock_notifier
|
2020-08-04 18:04:23 +02:00
|
|
|
mock_notifier.notify.side_effect = None
|
2017-12-14 03:35:59 +01:00
|
|
|
|
2020-08-04 18:04:23 +02:00
|
|
|
# Store our response
|
|
|
|
mock_notifier.notify.return_value = growl_response
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
try:
|
2020-08-04 18:04:23 +02:00
|
|
|
obj = apprise.Apprise.instantiate(url, suppress_exceptions=False)
|
2017-12-14 03:35:59 +01:00
|
|
|
|
2019-10-09 18:39:31 +02:00
|
|
|
assert exception is None
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
if obj is None:
|
|
|
|
# We're done
|
|
|
|
continue
|
|
|
|
|
|
|
|
if instance is None:
|
|
|
|
# Expected None but didn't get it
|
2019-10-09 18:39:31 +02:00
|
|
|
assert False
|
2017-12-14 03:35:59 +01:00
|
|
|
|
2019-10-09 18:39:31 +02:00
|
|
|
assert isinstance(obj, instance) is True
|
2019-02-13 23:48:09 +01:00
|
|
|
|
2020-08-04 18:04:23 +02:00
|
|
|
if isinstance(obj, apprise.plugins.NotifyBase):
|
2019-02-13 23:48:09 +01:00
|
|
|
# We loaded okay; now lets make sure we can reverse this url
|
2019-10-09 18:39:31 +02:00
|
|
|
assert isinstance(obj.url(), six.string_types) is True
|
2019-02-13 23:48:09 +01:00
|
|
|
|
2019-09-29 23:17:25 +02:00
|
|
|
# Test our privacy=True flag
|
2019-10-09 18:39:31 +02:00
|
|
|
assert isinstance(
|
|
|
|
obj.url(privacy=True), six.string_types) is True
|
2019-09-29 23:17:25 +02:00
|
|
|
|
2019-02-13 23:48:09 +01:00
|
|
|
# Instantiate the exact same object again using the URL from
|
|
|
|
# the one that was already created properly
|
2020-08-04 18:04:23 +02:00
|
|
|
obj_cmp = apprise.Apprise.instantiate(obj.url())
|
2019-02-13 23:48:09 +01:00
|
|
|
|
|
|
|
# Our object should be the same instance as what we had
|
|
|
|
# originally expected above.
|
2020-08-04 18:04:23 +02:00
|
|
|
if not isinstance(obj_cmp, apprise.plugins.NotifyBase):
|
2019-02-13 23:48:09 +01:00
|
|
|
# Assert messages are hard to trace back with the way
|
|
|
|
# these tests work. Just printing before throwing our
|
|
|
|
# assertion failure makes things easier to debug later on
|
|
|
|
print('TEST FAIL: {} regenerated as {}'.format(
|
|
|
|
url, obj.url()))
|
2019-10-09 18:39:31 +02:00
|
|
|
assert False
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
if self:
|
|
|
|
# Iterate over our expected entries inside of our object
|
|
|
|
for key, val in self.items():
|
|
|
|
# Test that our object has the desired key
|
2019-10-09 18:39:31 +02:00
|
|
|
assert hasattr(key, obj)
|
|
|
|
assert getattr(key, obj) == val
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
try:
|
2020-08-04 18:04:23 +02:00
|
|
|
# check that we're as expected
|
|
|
|
assert obj.notify(
|
|
|
|
title='test', body='body',
|
|
|
|
notify_type=apprise.NotifyType.INFO) == response
|
2017-12-14 03:35:59 +01:00
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
# Check that we were expecting this exception to happen
|
|
|
|
assert isinstance(e, response)
|
|
|
|
|
|
|
|
except AssertionError:
|
|
|
|
# Don't mess with these entries
|
|
|
|
print('%s AssertionError' % url)
|
|
|
|
raise
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
# Handle our exception
|
|
|
|
print('%s / %s' % (url, str(e)))
|
2019-10-09 18:39:31 +02:00
|
|
|
assert exception is not None
|
|
|
|
assert isinstance(e, exception)
|