Nextcloud and Nextcloud Talk url_prefix support (#975)

This commit is contained in:
Chris Caron
2023-10-15 13:15:52 -04:00
committed by GitHub
parent 34e52e5d92
commit f6b53ac556
4 changed files with 182 additions and 24 deletions

View File

@ -27,7 +27,8 @@
# POSSIBILITY OF SUCH DAMAGE.
from unittest import mock
from apprise import Apprise
from apprise import NotifyType
import requests
from apprise.plugins.NotifyNextcloud import NotifyNextcloud
from helpers import AppriseURLTester
@ -52,7 +53,10 @@ apprise_url_tests = (
}),
('ncloud://localhost', {
# No user specified
'instance': TypeError,
'instance': NotifyNextcloud,
# Since there are no targets specified we expect a False return on
# send()
'notify_response': False,
}),
('ncloud://user@localhost?to=user1,user2&version=invalid', {
# An invalid version was specified
@ -81,6 +85,12 @@ apprise_url_tests = (
('ncloud://user@localhost?to=user1,user2&version=21', {
'instance': NotifyNextcloud,
}),
('ncloud://user@localhost?to=user1&version=20&url_prefix=/abcd', {
'instance': NotifyNextcloud,
}),
('ncloud://user@localhost?to=user1&version=21&url_prefix=/abcd', {
'instance': NotifyNextcloud,
}),
('ncloud://user:pass@localhost/user1/user2', {
'instance': NotifyNextcloud,
@ -160,3 +170,46 @@ def test_plugin_nextcloud_edge_cases(mock_post):
assert 'shortMessage' in mock_post.call_args_list[0][1]['data']
# The longMessage argument is not set
assert 'longMessage' not in mock_post.call_args_list[0][1]['data']
@mock.patch('requests.post')
def test_plugin_nextcloud_url_prefix(mock_post):
"""
NotifyNextcloud() URL Prefix Testing
"""
response = mock.Mock()
response.content = ''
response.status_code = requests.codes.ok
# Prepare our mock object
mock_post.return_value = response
# instantiate our object (without a batch mode)
obj = Apprise.instantiate(
'ncloud://localhost/admin/?version=20&url_prefix=/abcd')
assert obj.notify(
body='body', title='title', notify_type=NotifyType.INFO) is True
# Not set to batch, so we send 2 different messages
assert mock_post.call_count == 1
assert mock_post.call_args_list[0][0][0] == \
'http://localhost/abcd/ocs/v2.php/apps/' \
'admin_notifications/api/v1/notifications/admin'
mock_post.reset_mock()
# instantiate our object (without a batch mode)
obj = Apprise.instantiate(
'ncloud://localhost/admin/?version=21&'
'url_prefix=a/longer/path/abcd/')
assert obj.notify(
body='body', title='title', notify_type=NotifyType.INFO) is True
# Not set to batch, so we send 2 different messages
assert mock_post.call_count == 1
assert mock_post.call_args_list[0][0][0] == \
'http://localhost/a/longer/path/abcd/' \
'ocs/v2.php/apps/notifications/api/v2/admin_notifications/admin'