2021-11-25 21:20:22 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-10-13 23:08:01 +02:00
|
|
|
# BSD 2-Clause License
|
2021-11-25 21:20:22 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# Apprise - Push Notification Library.
|
2024-01-27 21:35:11 +01:00
|
|
|
# Copyright (c) 2024, 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
|
|
|
# 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
|
|
|
|
2021-11-25 21:20:22 +01:00
|
|
|
import pytest
|
|
|
|
import requests
|
|
|
|
from json import dumps
|
2022-10-09 11:28:18 +02:00
|
|
|
|
2024-04-27 19:02:27 +02:00
|
|
|
from apprise.plugins.sinch import NotifySinch
|
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)
|
|
|
|
|
|
|
|
# Our Testing URLs
|
|
|
|
apprise_url_tests = (
|
|
|
|
('sinch://', {
|
|
|
|
# No Account SID specified
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('sinch://:@/', {
|
|
|
|
# invalid Auth token
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('sinch://{}@12345678'.format('a' * 32), {
|
|
|
|
# Just spi provided
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('sinch://{}:{}@_'.format('a' * 32, 'b' * 32), {
|
|
|
|
# spi and token provided but invalid from
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}'.format('a' * 32, 'b' * 32, '3' * 5), {
|
|
|
|
# using short-code (5 characters) without a target
|
|
|
|
# We can still instantiate ourselves with a valid short code
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
# Expected notify() response because we have no one to notify
|
|
|
|
'notify_response': False,
|
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}'.format('a' * 32, 'b' * 32, '3' * 9), {
|
|
|
|
# spi and token provided and from but invalid from no
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}/123/{}/abcd/'.format(
|
|
|
|
'a' * 32, 'b' * 32, '3' * 11, '9' * 15), {
|
|
|
|
# valid everything but target numbers
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://{}:{}@12345/{}'.format('a' * 32, 'b' * 32, '4' * 11), {
|
|
|
|
# using short-code (5 characters)
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
|
|
|
|
# Our expected url(privacy=True) startswith() response:
|
|
|
|
'privacy_url': 'sinch://...aaaa:b...b@12345',
|
|
|
|
}),
|
|
|
|
('sinch://{}:{}@123456/{}'.format('a' * 32, 'b' * 32, '4' * 11), {
|
|
|
|
# using short-code (6 characters)
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}'.format('a' * 32, 'b' * 32, '5' * 11), {
|
|
|
|
# using phone no with no target - we text ourselves in
|
|
|
|
# this case
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}?region=eu'.format('a' * 32, 'b' * 32, '5' * 11), {
|
|
|
|
# Specify a region
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}?region=invalid'.format('a' * 32, 'b' * 32, '5' * 11), {
|
|
|
|
# Invalid region
|
|
|
|
'instance': TypeError,
|
|
|
|
}),
|
|
|
|
('sinch://_?spi={}&token={}&from={}'.format(
|
|
|
|
'a' * 32, 'b' * 32, '5' * 11), {
|
|
|
|
# use get args to acomplish the same thing
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://_?spi={}&token={}&source={}'.format(
|
|
|
|
'a' * 32, 'b' * 32, '5' * 11), {
|
|
|
|
# use get args to acomplish the same thing (use source instead of from)
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://_?spi={}&token={}&from={}&to={}'.format(
|
|
|
|
'a' * 32, 'b' * 32, '5' * 11, '7' * 13), {
|
|
|
|
# use to=
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
2021-11-25 21:20:22 +01:00
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}'.format('a' * 32, 'b' * 32, '6' * 11), {
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
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,
|
|
|
|
}),
|
|
|
|
('sinch://{}:{}@{}'.format('a' * 32, 'b' * 32, '6' * 11), {
|
2022-10-09 11:28:18 +02:00
|
|
|
'instance': NotifySinch,
|
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_sinch_urls():
|
|
|
|
"""
|
|
|
|
NotifyTemplate() Apprise URLs
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Run our general tests
|
|
|
|
AppriseURLTester(tests=apprise_url_tests).run_all()
|
|
|
|
|
|
|
|
|
|
|
|
@mock.patch('requests.post')
|
2022-10-16 16:48:44 +02:00
|
|
|
def test_plugin_sinch_edge_cases(mock_post):
|
2021-11-25 21:20:22 +01:00
|
|
|
"""
|
|
|
|
NotifySinch() Edge Cases
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Prepare our response
|
|
|
|
response = requests.Request()
|
|
|
|
response.status_code = requests.codes.ok
|
|
|
|
|
|
|
|
# Prepare Mock
|
|
|
|
mock_post.return_value = response
|
|
|
|
|
|
|
|
# Initialize some generic (but valid) tokens
|
|
|
|
service_plan_id = '{}'.format('b' * 32)
|
|
|
|
api_token = '{}'.format('b' * 32)
|
|
|
|
source = '+1 (555) 123-3456'
|
|
|
|
|
|
|
|
# No service_plan_id specified
|
|
|
|
with pytest.raises(TypeError):
|
2022-10-09 11:28:18 +02:00
|
|
|
NotifySinch(
|
2021-11-25 21:20:22 +01:00
|
|
|
service_plan_id=None, api_token=api_token, source=source)
|
|
|
|
|
|
|
|
# No api_token specified
|
|
|
|
with pytest.raises(TypeError):
|
2022-10-09 11:28:18 +02:00
|
|
|
NotifySinch(
|
2021-11-25 21:20:22 +01:00
|
|
|
service_plan_id=service_plan_id, api_token=None, source=source)
|
|
|
|
|
|
|
|
# a error response
|
|
|
|
response.status_code = 400
|
|
|
|
response.content = dumps({
|
|
|
|
'code': 21211,
|
|
|
|
'message': "The 'To' number +1234567 is not a valid phone number.",
|
|
|
|
})
|
|
|
|
mock_post.return_value = response
|
|
|
|
|
|
|
|
# Initialize our object
|
2022-10-09 11:28:18 +02:00
|
|
|
obj = NotifySinch(
|
2021-11-25 21:20:22 +01:00
|
|
|
service_plan_id=service_plan_id, api_token=api_token, source=source)
|
|
|
|
|
|
|
|
# We will fail with the above error code
|
|
|
|
assert obj.notify('title', 'body', 'info') is False
|