mirror of
https://github.com/caronc/apprise.git
synced 2024-11-22 16:13:12 +01:00
c81d2465e4
Instead of needing to individually disable throttling on a per-plugin basis, this fixture takes care of all notifiers in `NOTIFY_MODULE_MAP` automatically. With `autouse=True`, there is no need to activate it manually.
168 lines
5.6 KiB
Python
168 lines
5.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2021 Chris Caron <lead2gold@gmail.com>
|
|
# All rights reserved.
|
|
#
|
|
# This code is licensed under the MIT License.
|
|
#
|
|
# 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 :
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# 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.
|
|
import pytest
|
|
from unittest import mock
|
|
|
|
from apprise.plugins.NotifyBoxcar import NotifyBoxcar
|
|
from helpers import AppriseURLTester
|
|
from apprise import NotifyType
|
|
import requests
|
|
|
|
# Disable logging for a cleaner testing output
|
|
import logging
|
|
logging.disable(logging.CRITICAL)
|
|
|
|
# Our Testing URLs
|
|
apprise_url_tests = (
|
|
('boxcar://', {
|
|
# invalid secret key
|
|
'instance': TypeError,
|
|
}),
|
|
# A a bad url
|
|
('boxcar://:@/', {
|
|
'instance': TypeError,
|
|
}),
|
|
# No secret specified
|
|
('boxcar://%s' % ('a' * 64), {
|
|
'instance': TypeError,
|
|
}),
|
|
# No access specified (whitespace is trimmed)
|
|
('boxcar://%%20/%s' % ('a' * 64), {
|
|
'instance': TypeError,
|
|
}),
|
|
# No secret specified (whitespace is trimmed)
|
|
('boxcar://%s/%%20' % ('a' * 64), {
|
|
'instance': TypeError,
|
|
}),
|
|
# Provide both an access and a secret
|
|
('boxcar://%s/%s' % ('a' * 64, 'b' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
'requests_response_code': requests.codes.created,
|
|
# Our expected url(privacy=True) startswith() response:
|
|
'privacy_url': 'boxcar://a...a/****/',
|
|
}),
|
|
# Test without image set
|
|
('boxcar://%s/%s?image=True' % ('a' * 64, 'b' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
'requests_response_code': requests.codes.created,
|
|
# don't include an image in Asset by default
|
|
'include_image': False,
|
|
}),
|
|
('boxcar://%s/%s?image=False' % ('a' * 64, 'b' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
'requests_response_code': requests.codes.created,
|
|
}),
|
|
# our access, secret and device are all 64 characters
|
|
# which is what we're doing here
|
|
('boxcar://%s/%s/@tag1/tag2///%s/?to=tag3' % (
|
|
'a' * 64, 'b' * 64, 'd' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
'requests_response_code': requests.codes.created,
|
|
}),
|
|
# An invalid tag
|
|
('boxcar://%s/%s/@%s' % ('a' * 64, 'b' * 64, 't' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
'requests_response_code': requests.codes.created,
|
|
}),
|
|
('boxcar://%s/%s/' % ('a' * 64, 'b' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
# force a failure
|
|
'response': False,
|
|
'requests_response_code': requests.codes.internal_server_error,
|
|
}),
|
|
('boxcar://%s/%s/' % ('a' * 64, 'b' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
# throw a bizzare code forcing us to fail to look it up
|
|
'response': False,
|
|
'requests_response_code': 999,
|
|
}),
|
|
('boxcar://%s/%s/' % ('a' * 64, 'b' * 64), {
|
|
'instance': NotifyBoxcar,
|
|
# 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_boxcar_urls():
|
|
"""
|
|
NotifyBoxcar() Apprise URLs
|
|
|
|
"""
|
|
|
|
# Run our general tests
|
|
AppriseURLTester(tests=apprise_url_tests).run_all()
|
|
|
|
|
|
@mock.patch('requests.get')
|
|
@mock.patch('requests.post')
|
|
def test_plugin_boxcar_edge_cases(mock_post, mock_get):
|
|
"""
|
|
NotifyBoxcar() Edge Cases
|
|
|
|
"""
|
|
|
|
# Generate some generic message types
|
|
device = 'A' * 64
|
|
tag = '@B' * 63
|
|
|
|
access = '-' * 64
|
|
secret = '_' * 64
|
|
|
|
# Initializes the plugin with recipients set to None
|
|
NotifyBoxcar(access=access, secret=secret, targets=None)
|
|
|
|
# Initializes the plugin with a valid access, but invalid access key
|
|
with pytest.raises(TypeError):
|
|
NotifyBoxcar(access=None, secret=secret, targets=None)
|
|
|
|
# Initializes the plugin with a valid access, but invalid secret
|
|
with pytest.raises(TypeError):
|
|
NotifyBoxcar(access=access, secret=None, targets=None)
|
|
|
|
# Initializes the plugin with recipients list
|
|
# the below also tests our the variation of recipient types
|
|
NotifyBoxcar(
|
|
access=access, secret=secret, targets=[device, tag])
|
|
|
|
mock_get.return_value = requests.Request()
|
|
mock_post.return_value = requests.Request()
|
|
mock_post.return_value.status_code = requests.codes.created
|
|
mock_get.return_value.status_code = requests.codes.created
|
|
|
|
# Test notifications without a body or a title
|
|
p = NotifyBoxcar(access=access, secret=secret, targets=None)
|
|
|
|
assert p.notify(body=None, title=None, notify_type=NotifyType.INFO) is True
|
|
|
|
# Test comma, separate values
|
|
device = 'a' * 64
|
|
|
|
p = NotifyBoxcar(
|
|
access=access, secret=secret,
|
|
targets=','.join([device, device, device]))
|
|
assert len(p.device_tokens) == 3
|