mirror of
https://github.com/caronc/apprise.git
synced 2025-01-01 03:29:53 +01:00
D7 Networks Rewrite in lieu of its new API (#791)
This commit is contained in:
parent
d21a1cb1f7
commit
0b1655c5eb
@ -130,7 +130,7 @@ The table below identifies the services this tool supports and some example serv
|
||||
| [BulkSMS](https://github.com/caronc/apprise/wiki/Notify_bulksms) | bulksms:// | (TCP) 443 | bulksms://user:password@ToPhoneNo<br/>bulksms://User:Password@ToPhoneNo1/ToPhoneNo2/ToPhoneNoN/
|
||||
| [ClickSend](https://github.com/caronc/apprise/wiki/Notify_clicksend) | clicksend:// | (TCP) 443 | clicksend://user:pass@PhoneNo<br/>clicksend://user:pass@ToPhoneNo1/ToPhoneNo2/ToPhoneNoN
|
||||
| [DAPNET](https://github.com/caronc/apprise/wiki/Notify_dapnet) | dapnet:// | (TCP) 80 | dapnet://user:pass@callsign<br/>dapnet://user:pass@callsign1/callsign2/callsignN
|
||||
| [D7 Networks](https://github.com/caronc/apprise/wiki/Notify_d7networks) | d7sms:// | (TCP) 443 | d7sms://user:pass@PhoneNo<br/>d7sms://user:pass@ToPhoneNo1/ToPhoneNo2/ToPhoneNoN
|
||||
| [D7 Networks](https://github.com/caronc/apprise/wiki/Notify_d7networks) | d7sms:// | (TCP) 443 | d7sms://token@PhoneNo<br/>d7sms://token@ToPhoneNo1/ToPhoneNo2/ToPhoneNoN
|
||||
| [DingTalk](https://github.com/caronc/apprise/wiki/Notify_dingtalk) | dingtalk:// | (TCP) 443 | dingtalk://token/<br />dingtalk://token/ToPhoneNo<br />dingtalk://token/ToPhoneNo1/ToPhoneNo2/ToPhoneNo1/
|
||||
| [Kavenegar](https://github.com/caronc/apprise/wiki/Notify_kavenegar) | kavenegar:// | (TCP) 443 | kavenegar://ApiKey/ToPhoneNo<br/>kavenegar://FromPhoneNo@ApiKey/ToPhoneNo<br/>kavenegar://ApiKey/ToPhoneNo1/ToPhoneNo2/ToPhoneNoN
|
||||
| [MessageBird](https://github.com/caronc/apprise/wiki/Notify_messagebird) | msgbird:// | (TCP) 443 | msgbird://ApiKey/FromPhoneNo<br/>msgbird://ApiKey/FromPhoneNo/ToPhoneNo<br/>msgbird://ApiKey/FromPhoneNo/ToPhoneNo1/ToPhoneNo2/ToPhoneNoN/
|
||||
|
@ -29,17 +29,18 @@
|
||||
# After you've established your account you can get your api login credentials
|
||||
# (both user and password) from the API Details section from within your
|
||||
# account profile area: https://d7networks.com/accounts/profile/
|
||||
#
|
||||
# API Reference: https://d7networks.com/docs/Messages/Send_Message/
|
||||
|
||||
import requests
|
||||
import base64
|
||||
from json import dumps
|
||||
from json import loads
|
||||
|
||||
from .NotifyBase import NotifyBase
|
||||
from ..URLBase import PrivacyMode
|
||||
from ..common import NotifyType
|
||||
from ..utils import is_phone_no
|
||||
from ..utils import parse_phone_no
|
||||
from ..utils import validate_regex
|
||||
from ..utils import parse_bool
|
||||
from ..AppriseLocale import gettext_lazy as _
|
||||
|
||||
@ -52,25 +53,6 @@ D7NETWORKS_HTTP_ERROR_MAP = {
|
||||
}
|
||||
|
||||
|
||||
# Priorities
|
||||
class D7SMSPriority:
|
||||
"""
|
||||
D7 Networks SMS Message Priority
|
||||
"""
|
||||
LOW = 0
|
||||
MODERATE = 1
|
||||
NORMAL = 2
|
||||
HIGH = 3
|
||||
|
||||
|
||||
D7NETWORK_SMS_PRIORITIES = (
|
||||
D7SMSPriority.LOW,
|
||||
D7SMSPriority.MODERATE,
|
||||
D7SMSPriority.NORMAL,
|
||||
D7SMSPriority.HIGH,
|
||||
)
|
||||
|
||||
|
||||
class NotifyD7Networks(NotifyBase):
|
||||
"""
|
||||
A wrapper for D7 Networks Notifications
|
||||
@ -92,11 +74,8 @@ class NotifyD7Networks(NotifyBase):
|
||||
# A URL that takes you to the setup/help of the specific protocol
|
||||
setup_url = 'https://github.com/caronc/apprise/wiki/Notify_d7networks'
|
||||
|
||||
# D7 Networks batch notification URL
|
||||
notify_batch_url = 'http://rest-api.d7networks.com/secure/sendbatch'
|
||||
|
||||
# D7 Networks single notification URL
|
||||
notify_url = 'http://rest-api.d7networks.com/secure/send'
|
||||
notify_url = 'https://api.d7networks.com/messages/v1/send'
|
||||
|
||||
# The maximum length of the body
|
||||
body_maxlen = 160
|
||||
@ -107,21 +86,16 @@ class NotifyD7Networks(NotifyBase):
|
||||
|
||||
# Define object templates
|
||||
templates = (
|
||||
'{schema}://{user}:{password}@{targets}',
|
||||
'{schema}://{token}@{targets}',
|
||||
)
|
||||
|
||||
# Define our template tokens
|
||||
template_tokens = dict(NotifyBase.template_tokens, **{
|
||||
'user': {
|
||||
'name': _('Username'),
|
||||
'token': {
|
||||
'name': _('API Access Token'),
|
||||
'type': 'string',
|
||||
'required': True,
|
||||
},
|
||||
'password': {
|
||||
'name': _('Password'),
|
||||
'type': 'string',
|
||||
'private': True,
|
||||
'required': True,
|
||||
},
|
||||
'target_phone': {
|
||||
'name': _('Target Phone No'),
|
||||
@ -138,16 +112,11 @@ class NotifyD7Networks(NotifyBase):
|
||||
|
||||
# Define our template arguments
|
||||
template_args = dict(NotifyBase.template_args, **{
|
||||
'priority': {
|
||||
'name': _('Priority'),
|
||||
'type': 'choice:int',
|
||||
'min': D7SMSPriority.LOW,
|
||||
'max': D7SMSPriority.HIGH,
|
||||
'values': D7NETWORK_SMS_PRIORITIES,
|
||||
|
||||
# The website identifies that the default priority is low; so
|
||||
# this plugin will honor that same default
|
||||
'default': D7SMSPriority.LOW,
|
||||
'unicode': {
|
||||
# Unicode characters (default is 'auto')
|
||||
'name': _('Unicode Characters'),
|
||||
'type': 'bool',
|
||||
'default': False,
|
||||
},
|
||||
'batch': {
|
||||
'name': _('Batch Mode'),
|
||||
@ -172,20 +141,13 @@ class NotifyD7Networks(NotifyBase):
|
||||
},
|
||||
})
|
||||
|
||||
def __init__(self, targets=None, priority=None, source=None, batch=False,
|
||||
**kwargs):
|
||||
def __init__(self, token=None, targets=None, source=None,
|
||||
batch=False, unicode=None, **kwargs):
|
||||
"""
|
||||
Initialize D7 Networks Object
|
||||
"""
|
||||
super().__init__(**kwargs)
|
||||
|
||||
# The Priority of the message
|
||||
if priority not in D7NETWORK_SMS_PRIORITIES:
|
||||
self.priority = self.template_args['priority']['default']
|
||||
|
||||
else:
|
||||
self.priority = priority
|
||||
|
||||
# Prepare Batch Mode Flag
|
||||
self.batch = batch
|
||||
|
||||
@ -193,8 +155,15 @@ class NotifyD7Networks(NotifyBase):
|
||||
self.source = None \
|
||||
if not isinstance(source, str) else source.strip()
|
||||
|
||||
if not (self.user and self.password):
|
||||
msg = 'A D7 Networks user/pass was not provided.'
|
||||
# Define whether or not we should set the unicode flag
|
||||
self.unicode = self.template_args['unicode']['default'] \
|
||||
if unicode is None else bool(unicode)
|
||||
|
||||
# The token associated with the account
|
||||
self.token = validate_regex(token)
|
||||
if not self.token:
|
||||
msg = 'The D7 Networks token specified ({}) is invalid.'\
|
||||
.format(token)
|
||||
self.logger.warning(msg)
|
||||
raise TypeError(msg)
|
||||
|
||||
@ -229,40 +198,41 @@ class NotifyD7Networks(NotifyBase):
|
||||
# error tracking (used for function return)
|
||||
has_error = False
|
||||
|
||||
auth = '{user}:{password}'.format(
|
||||
user=self.user, password=self.password)
|
||||
|
||||
# Python 3's versio of b64encode() expects a byte array and not
|
||||
# a string. To accommodate this, we encode the content here
|
||||
auth = auth.encode('utf-8')
|
||||
|
||||
# Prepare our headers
|
||||
headers = {
|
||||
'User-Agent': self.app_id,
|
||||
'Content-Type': 'application/json',
|
||||
'Accept': 'application/json',
|
||||
'Authorization': 'Basic {}'.format(base64.b64encode(auth))
|
||||
'Authorization': f'Bearer {self.token}',
|
||||
}
|
||||
|
||||
# Our URL varies depending if we're doing a batch mode or not
|
||||
url = self.notify_batch_url if self.batch else self.notify_url
|
||||
payload = {
|
||||
'message_globals': {
|
||||
'channel': 'sms',
|
||||
},
|
||||
'messages': [{
|
||||
# Populated later on
|
||||
'recipients': None,
|
||||
'content': body,
|
||||
'data_coding':
|
||||
# auto is a better substitute over 'text' as text is easier to
|
||||
# detect from a post than `unicode` is.
|
||||
'auto' if not self.unicode else 'unicode',
|
||||
}],
|
||||
}
|
||||
|
||||
# use the list directly
|
||||
targets = list(self.targets)
|
||||
|
||||
if self.source:
|
||||
payload['message_globals']['originator'] = self.source
|
||||
|
||||
target = None
|
||||
while len(targets):
|
||||
|
||||
if self.batch:
|
||||
# Prepare our payload
|
||||
payload = {
|
||||
'globals': {
|
||||
'priority': self.priority,
|
||||
'from': self.source if self.source else self.app_id,
|
||||
},
|
||||
'messages': [{
|
||||
'to': self.targets,
|
||||
'content': body,
|
||||
}],
|
||||
}
|
||||
payload['messages'][0]['recipients'] = self.targets
|
||||
|
||||
# Reset our targets so we don't keep going. This is required
|
||||
# because we're in batch mode; we only need to loop once.
|
||||
@ -274,24 +244,19 @@ class NotifyD7Networks(NotifyBase):
|
||||
target = targets.pop(0)
|
||||
|
||||
# Prepare our payload
|
||||
payload = {
|
||||
'priority': self.priority,
|
||||
'content': body,
|
||||
'to': target,
|
||||
'from': self.source if self.source else self.app_id,
|
||||
}
|
||||
payload['messages'][0]['recipients'] = [target]
|
||||
|
||||
# Some Debug Logging
|
||||
self.logger.debug(
|
||||
'D7 Networks POST URL: {} (cert_verify={})'.format(
|
||||
url, self.verify_certificate))
|
||||
self.notify_url, self.verify_certificate))
|
||||
self.logger.debug('D7 Networks Payload: {}' .format(payload))
|
||||
|
||||
# Always call throttle before any remote server i/o is made
|
||||
self.throttle()
|
||||
try:
|
||||
r = requests.post(
|
||||
url,
|
||||
self.notify_url,
|
||||
data=dumps(payload),
|
||||
headers=headers,
|
||||
verify=self.verify_certificate,
|
||||
@ -337,29 +302,9 @@ class NotifyD7Networks(NotifyBase):
|
||||
else:
|
||||
|
||||
if self.batch:
|
||||
count = len(self.targets)
|
||||
try:
|
||||
# Get our message delivery count if we can
|
||||
json_response = loads(r.content)
|
||||
count = int(json_response.get(
|
||||
'data', {}).get('messageCount', -1))
|
||||
|
||||
except (AttributeError, TypeError, ValueError):
|
||||
# ValueError = r.content is Unparsable
|
||||
# TypeError = r.content is None
|
||||
# AttributeError = r is None
|
||||
|
||||
# We could not parse JSON response. Assume that
|
||||
# our delivery is okay for now.
|
||||
pass
|
||||
|
||||
if count != len(self.targets):
|
||||
has_error = True
|
||||
|
||||
self.logger.info(
|
||||
'Sent D7 Networks batch SMS notification to '
|
||||
'{} of {} target(s).'.format(
|
||||
count, len(self.targets)))
|
||||
'{} target(s).'.format(len(self.targets)))
|
||||
|
||||
else:
|
||||
self.logger.info(
|
||||
@ -389,22 +334,18 @@ class NotifyD7Networks(NotifyBase):
|
||||
# Define any URL parameters
|
||||
params = {
|
||||
'batch': 'yes' if self.batch else 'no',
|
||||
'unicode': 'yes' if self.unicode else 'no',
|
||||
}
|
||||
|
||||
# Extend our parameters
|
||||
params.update(self.url_parameters(privacy=privacy, *args, **kwargs))
|
||||
|
||||
if self.priority != self.template_args['priority']['default']:
|
||||
params['priority'] = str(self.priority)
|
||||
|
||||
if self.source:
|
||||
params['from'] = self.source
|
||||
|
||||
return '{schema}://{user}:{password}@{targets}/?{params}'.format(
|
||||
# Extend our parameters
|
||||
params.update(self.url_parameters(privacy=privacy, *args, **kwargs))
|
||||
|
||||
return '{schema}://{token}@{targets}/?{params}'.format(
|
||||
schema=self.secure_protocol,
|
||||
user=NotifyD7Networks.quote(self.user, safe=''),
|
||||
password=self.pprint(
|
||||
self.password, privacy, mode=PrivacyMode.Secret, safe=''),
|
||||
token=self.pprint(self.token, privacy, safe=''),
|
||||
targets='/'.join(
|
||||
[NotifyD7Networks.quote(x, safe='') for x in self.targets]),
|
||||
params=NotifyD7Networks.urlencode(params))
|
||||
@ -421,6 +362,23 @@ class NotifyD7Networks(NotifyBase):
|
||||
# We're done early as we couldn't load the results
|
||||
return results
|
||||
|
||||
if 'token' in results['qsd'] and len(results['qsd']['token']):
|
||||
results['token'] = \
|
||||
NotifyD7Networks.unquote(results['qsd']['token'])
|
||||
|
||||
elif results['user']:
|
||||
results['token'] = NotifyD7Networks.unquote(results['user'])
|
||||
|
||||
if results['password']:
|
||||
# Support token containing a colon (:)
|
||||
results['token'] += \
|
||||
':' + NotifyD7Networks.unquote(results['password'])
|
||||
|
||||
elif results['password']:
|
||||
# Support token starting with a colon (:)
|
||||
results['token'] = \
|
||||
':' + NotifyD7Networks.unquote(results['password'])
|
||||
|
||||
# Initialize our targets
|
||||
results['targets'] = list()
|
||||
|
||||
@ -432,44 +390,27 @@ class NotifyD7Networks(NotifyBase):
|
||||
results['targets'].extend(
|
||||
NotifyD7Networks.split_path(results['fullpath']))
|
||||
|
||||
# Set our priority
|
||||
if 'priority' in results['qsd'] and len(results['qsd']['priority']):
|
||||
_map = {
|
||||
'l': D7SMSPriority.LOW,
|
||||
'0': D7SMSPriority.LOW,
|
||||
'm': D7SMSPriority.MODERATE,
|
||||
'1': D7SMSPriority.MODERATE,
|
||||
'n': D7SMSPriority.NORMAL,
|
||||
'2': D7SMSPriority.NORMAL,
|
||||
'h': D7SMSPriority.HIGH,
|
||||
'3': D7SMSPriority.HIGH,
|
||||
}
|
||||
try:
|
||||
results['priority'] = \
|
||||
_map[results['qsd']['priority'][0].lower()]
|
||||
|
||||
except KeyError:
|
||||
# No priority was set
|
||||
pass
|
||||
|
||||
# Support the 'from' and 'source' variable so that we can support
|
||||
# targets this way too.
|
||||
# The 'from' makes it easier to use yaml configuration
|
||||
if 'from' in results['qsd'] and len(results['qsd']['from']):
|
||||
results['source'] = \
|
||||
NotifyD7Networks.unquote(results['qsd']['from'])
|
||||
if 'source' in results['qsd'] and len(results['qsd']['source']):
|
||||
results['source'] = \
|
||||
NotifyD7Networks.unquote(results['qsd']['source'])
|
||||
|
||||
# Get Batch Mode Flag
|
||||
results['batch'] = \
|
||||
parse_bool(results['qsd'].get('batch', False))
|
||||
|
||||
# Get Unicode Flag
|
||||
results['unicode'] = \
|
||||
parse_bool(results['qsd'].get('unicode', False))
|
||||
|
||||
# Support the 'to' variable so that we can support targets this way too
|
||||
# The 'to' makes it easier to use yaml configuration
|
||||
if 'to' in results['qsd'] and len(results['qsd']['to']):
|
||||
results['targets'] += \
|
||||
NotifyD7Networks.parse_phone_no(results['qsd']['to'])
|
||||
|
||||
# Support the 'from' and source variable
|
||||
if 'from' in results['qsd'] and len(results['qsd']['from']):
|
||||
results['source'] = \
|
||||
NotifyD7Networks.unquote(results['qsd']['from'])
|
||||
|
||||
elif 'source' in results['qsd'] and len(results['qsd']['source']):
|
||||
results['source'] = \
|
||||
NotifyD7Networks.unquote(results['qsd']['source'])
|
||||
|
||||
return results
|
||||
|
@ -22,8 +22,13 @@
|
||||
# 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 requests
|
||||
from json import loads
|
||||
from unittest import mock
|
||||
from apprise.plugins.NotifyD7Networks import NotifyD7Networks
|
||||
from helpers import AppriseURLTester
|
||||
from apprise import Apprise
|
||||
from apprise import NotifyType
|
||||
|
||||
# Disable logging for a cleaner testing output
|
||||
import logging
|
||||
@ -39,66 +44,72 @@ apprise_url_tests = (
|
||||
# We failed to identify any valid authentication
|
||||
'instance': TypeError,
|
||||
}),
|
||||
('d7sms://user:pass@{}/{}/{}'.format('1' * 9, '2' * 15, 'a' * 13), {
|
||||
('d7sms://token@{}/{}/{}'.format('1' * 9, '2' * 15, 'a' * 13), {
|
||||
# No valid targets to notify
|
||||
'instance': NotifyD7Networks,
|
||||
# Since there are no targets specified we expect a False return on
|
||||
# send()
|
||||
'notify_response': False,
|
||||
}),
|
||||
('d7sms://user:pass@{}?batch=yes'.format('3' * 14), {
|
||||
('d7sms://token1@{}?batch=yes'.format('3' * 14), {
|
||||
# valid number
|
||||
'instance': NotifyD7Networks,
|
||||
# Our expected url(privacy=True) startswith() response:
|
||||
'privacy_url': 'd7sms://user:****@',
|
||||
'privacy_url': 'd7sms://t...1@',
|
||||
}),
|
||||
('d7sms://user:pass@{}?batch=yes'.format('7' * 14), {
|
||||
# valid number
|
||||
('d7sms://token:colon2@{}?batch=yes'.format('3' * 14), {
|
||||
# valid number - token containing a colon
|
||||
'instance': NotifyD7Networks,
|
||||
# Test what happens if a batch send fails to return a messageCount
|
||||
'requests_response_text': {
|
||||
'data': {
|
||||
'messageCount': 0,
|
||||
},
|
||||
},
|
||||
# Expected notify() response
|
||||
'notify_response': False,
|
||||
# Our expected url(privacy=True) startswith() response:
|
||||
'privacy_url': 'd7sms://t...2@',
|
||||
}),
|
||||
('d7sms://user:pass@{}?batch=yes&to={}'.format('3' * 14, '6' * 14), {
|
||||
('d7sms://:token3@{}?batch=yes'.format('3' * 14), {
|
||||
# valid number - token starting wit a colon
|
||||
'instance': NotifyD7Networks,
|
||||
# Our expected url(privacy=True) startswith() response:
|
||||
'privacy_url': 'd7sms://:...3@',
|
||||
}),
|
||||
('d7sms://{}?token=token6'.format('3' * 14), {
|
||||
# valid number - token starting wit a colon
|
||||
'instance': NotifyD7Networks,
|
||||
# Our expected url(privacy=True) startswith() response:
|
||||
'privacy_url': 'd7sms://t...6@',
|
||||
}),
|
||||
('d7sms://token4@{}?unicode=no'.format('3' * 14), {
|
||||
# valid number - test unicode
|
||||
'instance': NotifyD7Networks,
|
||||
# Our expected url(privacy=True) startswith() response:
|
||||
'privacy_url': 'd7sms://t...4@',
|
||||
}),
|
||||
('d7sms://token8@{}/{}/?unicode=yes'.format('3' * 14, '4' * 14), {
|
||||
# valid number - test unicode
|
||||
'instance': NotifyD7Networks,
|
||||
# Our expected url(privacy=True) startswith() response:
|
||||
'privacy_url': 'd7sms://t...8@',
|
||||
}),
|
||||
('d7sms://token@{}?batch=yes&to={}'.format('3' * 14, '6' * 14), {
|
||||
# valid number
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}?batch=yes&from=apprise'.format('3' * 14), {
|
||||
('d7sms://token@{}?batch=yes&from=apprise'.format('3' * 14), {
|
||||
# valid number, utilizing the optional from= variable
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}?batch=yes&source=apprise'.format('3' * 14), {
|
||||
('d7sms://token@{}?batch=yes&source=apprise'.format('3' * 14), {
|
||||
# valid number, utilizing the optional source= variable (same as from)
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}?priority=invalid'.format('3' * 14), {
|
||||
# valid number; invalid priority
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}?priority=3'.format('3' * 14), {
|
||||
# valid number; adjusted priority
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}?priority=high'.format('3' * 14), {
|
||||
# valid number; adjusted priority (string supported)
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}?batch=no'.format('3' * 14), {
|
||||
('d7sms://token@{}?batch=no'.format('3' * 14), {
|
||||
# valid number - no batch
|
||||
'instance': NotifyD7Networks,
|
||||
}),
|
||||
('d7sms://user:pass@{}'.format('3' * 14), {
|
||||
('d7sms://token@{}'.format('3' * 14), {
|
||||
'instance': NotifyD7Networks,
|
||||
# throw a bizzare code forcing us to fail to look it up
|
||||
'response': False,
|
||||
'requests_response_code': 999,
|
||||
}),
|
||||
('d7sms://user:pass@{}'.format('3' * 14), {
|
||||
('d7sms://token@{}'.format('3' * 14), {
|
||||
'instance': NotifyD7Networks,
|
||||
# Throws a series of connection and transfer exceptions when this flag
|
||||
# is set and tests that we gracfully handle them
|
||||
@ -115,3 +126,81 @@ def test_plugin_d7networks_urls():
|
||||
|
||||
# Run our general tests
|
||||
AppriseURLTester(tests=apprise_url_tests).run_all()
|
||||
|
||||
|
||||
@mock.patch('requests.post')
|
||||
def test_plugin_d7networks_edge_cases(mock_post):
|
||||
"""
|
||||
NotifyD7Networks() Edge Cases tests
|
||||
|
||||
"""
|
||||
|
||||
# Prepare Mock
|
||||
request = mock.Mock()
|
||||
request.content = '{}'
|
||||
request.status_code = requests.codes.ok
|
||||
mock_post.return_value = request
|
||||
|
||||
# Initializations
|
||||
aobj = Apprise()
|
||||
assert aobj.add('d7sms://Token@15551231234/15551231236')
|
||||
|
||||
body = "test message"
|
||||
|
||||
# Send our notification
|
||||
assert aobj.notify(
|
||||
body=body, title='title', notify_type=NotifyType.INFO)
|
||||
|
||||
# Not set to batch, so we send 2 different messages
|
||||
assert mock_post.call_count == 2
|
||||
assert mock_post.call_args_list[0][0][0] == \
|
||||
'https://api.d7networks.com/messages/v1/send'
|
||||
assert mock_post.call_args_list[1][0][0] == \
|
||||
'https://api.d7networks.com/messages/v1/send'
|
||||
|
||||
# our first post
|
||||
data = loads(mock_post.call_args_list[0][1]['data'])
|
||||
assert len(data['messages']) == 1
|
||||
message = data['messages'][0]
|
||||
assert len(message['recipients']) == 1
|
||||
assert message['content'] == 'title\r\ntest message'
|
||||
assert message['data_coding'] == 'auto'
|
||||
|
||||
# our second post
|
||||
data = loads(mock_post.call_args_list[1][1]['data'])
|
||||
assert len(data['messages']) == 1
|
||||
message = data['messages'][0]
|
||||
assert len(message['recipients']) == 1
|
||||
assert message['content'] == 'title\r\ntest message'
|
||||
assert message['data_coding'] == 'auto'
|
||||
|
||||
#
|
||||
# Do a batch test now
|
||||
#
|
||||
|
||||
mock_post.reset_mock()
|
||||
|
||||
# Initializations
|
||||
aobj = Apprise()
|
||||
assert aobj.add('d7sms://Token@15551231234/15551231236?batch=yes')
|
||||
|
||||
body = "test message"
|
||||
|
||||
# Send our notification
|
||||
assert aobj.notify(
|
||||
body=body, title='title', notify_type=NotifyType.INFO)
|
||||
|
||||
# All notifications go through in a batch
|
||||
assert mock_post.call_count == 1
|
||||
assert mock_post.call_args_list[0][0][0] == \
|
||||
'https://api.d7networks.com/messages/v1/send'
|
||||
|
||||
data = loads(mock_post.call_args_list[0][1]['data'])
|
||||
assert len(data['messages']) == 1
|
||||
message = data['messages'][0]
|
||||
# All of our phone numbers were added here
|
||||
assert len(message['recipients']) == 2
|
||||
assert '15551231234' in message['recipients']
|
||||
assert '15551231236' in message['recipients']
|
||||
assert message['content'] == 'title\r\ntest message'
|
||||
assert message['data_coding'] == 'auto'
|
||||
|
Loading…
Reference in New Issue
Block a user