2020-03-24 21:23:54 +00:00
|
|
|
"""Test RT integration"""
|
|
|
|
# Copyright © 2020 Brett Smith
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2020-03-27 11:35:45 +00:00
|
|
|
import contextlib
|
2020-04-23 14:27:47 +00:00
|
|
|
import itertools
|
|
|
|
import re
|
2020-03-27 11:35:45 +00:00
|
|
|
|
2020-03-24 21:23:54 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from . import testutil
|
|
|
|
|
|
|
|
from conservancy_beancount import rtutil
|
|
|
|
|
|
|
|
DEFAULT_RT_URL = testutil.RTClient.DEFAULT_URL[:-9]
|
|
|
|
|
|
|
|
EXPECTED_URLS = [
|
|
|
|
(1, None, 'Ticket/Display.html?id=1'),
|
|
|
|
(1, 2, 'Ticket/Display.html?id=1#txn-1'),
|
|
|
|
(1, 4, 'Ticket/Attachment/1/4/Forwarded%20Message.eml'),
|
|
|
|
(1, 99, None),
|
|
|
|
(2, 1, None),
|
2020-03-31 15:38:15 +00:00
|
|
|
(2, 10, 'Ticket/Attachment/7/10/Company_invoice-2020030405_as-sent.pdf'),
|
2020-03-24 21:23:54 +00:00
|
|
|
(2, 13, 'Ticket/Display.html?id=2#txn-11'),
|
|
|
|
(2, 14, 'Ticket/Display.html?id=2#txn-11'), # statement.txt
|
|
|
|
(3, None, 'Ticket/Display.html?id=3'),
|
|
|
|
(9, None, None),
|
|
|
|
]
|
|
|
|
|
2020-03-24 22:24:31 +00:00
|
|
|
@pytest.fixture(scope='module')
|
2020-03-24 21:23:54 +00:00
|
|
|
def rt():
|
|
|
|
client = testutil.RTClient()
|
|
|
|
return rtutil.RT(client)
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def new_client():
|
|
|
|
class RTClient(testutil.RTClient):
|
2020-03-25 19:23:52 +00:00
|
|
|
TICKET_DATA = testutil.RTClient.TICKET_DATA.copy()
|
2020-03-24 21:23:54 +00:00
|
|
|
return RTClient()
|
|
|
|
|
2020-03-27 11:35:45 +00:00
|
|
|
def new_cache(database=':memory:'):
|
|
|
|
db = rtutil.RTLinkCache.setup(database)
|
|
|
|
if db is None:
|
|
|
|
print("NOTE: did not set up database cache at {}".format(database))
|
|
|
|
return contextlib.nullcontext(db)
|
|
|
|
else:
|
|
|
|
return contextlib.closing(db)
|
|
|
|
|
2020-03-24 21:23:54 +00:00
|
|
|
@pytest.mark.parametrize('ticket_id,attachment_id,expected', EXPECTED_URLS)
|
|
|
|
def test_url(rt, ticket_id, attachment_id, expected):
|
|
|
|
if expected is not None:
|
|
|
|
expected = DEFAULT_RT_URL + expected
|
|
|
|
assert rt.url(ticket_id, attachment_id) == expected
|
|
|
|
|
2020-04-23 14:27:47 +00:00
|
|
|
@pytest.mark.parametrize('attachment_id,first_link_only', itertools.product(
|
|
|
|
[245, None],
|
|
|
|
[True, False],
|
|
|
|
))
|
|
|
|
def test_metadata_regexp(rt, attachment_id, first_link_only):
|
|
|
|
if attachment_id is None:
|
|
|
|
match_links = ['rt:220', 'rt://ticket/220']
|
|
|
|
else:
|
|
|
|
match_links = [f'rt:220/{attachment_id}',
|
|
|
|
f'rt://ticket/220/attachments/{attachment_id}']
|
|
|
|
regexp = rt.metadata_regexp(220, attachment_id, first_link_only=first_link_only)
|
|
|
|
for link in match_links:
|
|
|
|
assert re.search(regexp, link)
|
|
|
|
assert re.search(regexp, link + ' link2')
|
|
|
|
assert re.search(regexp, link + '0') is None
|
|
|
|
assert re.search(regexp, 'a' + link) is None
|
|
|
|
end_match = re.search(regexp, 'link0 ' + link)
|
|
|
|
if first_link_only:
|
|
|
|
assert end_match is None
|
|
|
|
else:
|
|
|
|
assert end_match
|
|
|
|
|
2020-03-24 21:23:54 +00:00
|
|
|
@pytest.mark.parametrize('attachment_id', [
|
2020-03-25 19:23:52 +00:00
|
|
|
13,
|
2020-03-24 21:23:54 +00:00
|
|
|
None,
|
|
|
|
])
|
|
|
|
def test_url_caches(new_client, attachment_id):
|
|
|
|
if attachment_id is None:
|
|
|
|
fragment = ''
|
|
|
|
else:
|
2020-03-25 19:23:52 +00:00
|
|
|
fragment = '#txn-11'
|
|
|
|
expected = '{}Ticket/Display.html?id=2{}'.format(DEFAULT_RT_URL, fragment)
|
2020-03-24 21:23:54 +00:00
|
|
|
rt = rtutil.RT(new_client)
|
2020-03-25 19:23:52 +00:00
|
|
|
assert rt.url(2, attachment_id) == expected
|
2020-03-24 21:23:54 +00:00
|
|
|
new_client.TICKET_DATA.clear()
|
2020-03-25 19:23:52 +00:00
|
|
|
assert rt.url(2, attachment_id) == expected
|
2020-03-24 21:23:54 +00:00
|
|
|
|
|
|
|
@pytest.mark.parametrize('mimetype,extension', [
|
|
|
|
('application/pdf', 'pdf'),
|
|
|
|
('image/png', 'png'),
|
|
|
|
('message/rfc822', 'eml'),
|
|
|
|
('x-test/x-unknown', 'bin'),
|
|
|
|
])
|
|
|
|
def test_url_default_filename(new_client, mimetype, extension):
|
2020-03-25 19:23:52 +00:00
|
|
|
new_client.TICKET_DATA['1'] = [('9', '(Unnamed)', mimetype, '50.5k')]
|
2020-03-24 21:23:54 +00:00
|
|
|
rt = rtutil.RT(new_client)
|
|
|
|
expected = '{}Ticket/Attachment/9/9/RT1%20attachment%209.{}'.format(DEFAULT_RT_URL, extension)
|
|
|
|
assert rt.url(1, 9) == expected
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('ticket_id,attachment_id,expected', EXPECTED_URLS)
|
|
|
|
def test_exists(rt, ticket_id, attachment_id, expected):
|
|
|
|
expected = False if expected is None else True
|
|
|
|
assert rt.exists(ticket_id, attachment_id) is expected
|
|
|
|
|
|
|
|
def test_exists_caches(new_client):
|
|
|
|
rt = rtutil.RT(new_client)
|
|
|
|
assert rt.exists(1, 3)
|
|
|
|
assert rt.exists(2)
|
2020-03-25 19:23:52 +00:00
|
|
|
assert not rt.exists(1, 99)
|
2020-03-24 21:23:54 +00:00
|
|
|
assert not rt.exists(9)
|
|
|
|
new_client.TICKET_DATA.clear()
|
|
|
|
assert rt.exists(1, 3)
|
|
|
|
assert rt.exists(2)
|
2020-03-25 19:23:52 +00:00
|
|
|
assert not rt.exists(1, 99)
|
2020-03-24 21:23:54 +00:00
|
|
|
assert not rt.exists(9)
|
2020-03-24 22:24:31 +00:00
|
|
|
|
|
|
|
@pytest.mark.parametrize('link,expected', [
|
|
|
|
('rt:1/2', ('1', '2')),
|
|
|
|
('rt:123/456', ('123', '456')),
|
|
|
|
('rt:12345', ('12345', None)),
|
|
|
|
('rt:12346/', ('12346', None)),
|
|
|
|
('rt:12346/789', ('12346', '789')),
|
|
|
|
('rt:12346/780/', ('12346', '780')),
|
|
|
|
('rt://ticket/1', ('1', None)),
|
|
|
|
('rt://ticket/1/', ('1', None)),
|
|
|
|
('rt://ticket/1234/attachments/5678', ('1234', '5678')),
|
|
|
|
('rt://ticket/1234/attachments/5678/', ('1234', '5678')),
|
|
|
|
('rt://ticket/1234/attachment/5678', ('1234', '5678')),
|
|
|
|
('rt://ticket/1234/attachment/5678/', ('1234', '5678')),
|
|
|
|
('rt:', None),
|
|
|
|
('rt://', None),
|
|
|
|
('rt:example.org', None),
|
|
|
|
('rt:example.org/1', None),
|
|
|
|
('rt://example.org', None),
|
|
|
|
('rt://example.org/1', None),
|
|
|
|
('https://example.org/rt/Ticket/Display.html?id=123', None),
|
|
|
|
])
|
|
|
|
def test_parse(rt, link, expected):
|
|
|
|
assert rt.parse(link) == expected
|
2020-03-25 14:18:09 +00:00
|
|
|
|
|
|
|
def test_uncommon_server_url_parsing():
|
|
|
|
url = 'https://example.org/REST/1.0/'
|
|
|
|
client = testutil.RTClient(url + 'REST/1.0/')
|
|
|
|
rt = rtutil.RT(client)
|
|
|
|
assert rt.url(1).startswith(url)
|
2020-03-27 11:35:45 +00:00
|
|
|
|
|
|
|
def test_shared_cache(new_client):
|
|
|
|
ticket_id, _, expected = EXPECTED_URLS[0]
|
|
|
|
expected = DEFAULT_RT_URL + expected
|
|
|
|
with new_cache() as cachedb:
|
|
|
|
rt1 = rtutil.RT(new_client, cachedb)
|
|
|
|
assert rt1.url(ticket_id) == expected
|
|
|
|
new_client.TICKET_DATA.clear()
|
|
|
|
rt2 = rtutil.RT(new_client, cachedb)
|
|
|
|
assert rt2.url(ticket_id) == expected
|
|
|
|
assert not rt2.exists(ticket_id + 1)
|
|
|
|
assert rt1 is not rt2
|
|
|
|
|
|
|
|
def test_no_shared_cache(new_client):
|
|
|
|
with new_cache() as cache1, new_cache() as cache2:
|
|
|
|
rt1 = rtutil.RT(new_client, cache1)
|
|
|
|
rt2 = rtutil.RT(new_client, cache2)
|
|
|
|
assert rt1.exists(1)
|
|
|
|
new_client.TICKET_DATA.clear()
|
|
|
|
assert not rt2.exists(1)
|
|
|
|
assert rt1.exists(1)
|
|
|
|
|
|
|
|
def test_read_only_cache(new_client, tmp_path):
|
|
|
|
db_path = tmp_path / 'test.db'
|
|
|
|
ticket_id, _, expected = EXPECTED_URLS[0]
|
|
|
|
expected = DEFAULT_RT_URL + expected
|
|
|
|
with new_cache(db_path) as cache1:
|
|
|
|
rt1 = rtutil.RT(new_client, cache1)
|
|
|
|
assert rt1.url(ticket_id) == expected
|
|
|
|
new_client.TICKET_DATA.clear()
|
|
|
|
db_path.chmod(0o400)
|
|
|
|
with new_cache(db_path) as cache2:
|
|
|
|
rt2 = rtutil.RT(new_client, cache2)
|
|
|
|
assert rt2.url(ticket_id) == expected
|
|
|
|
assert rt2.url(ticket_id + 1) is None
|
|
|
|
|
|
|
|
def test_results_not_found_only_in_transient_cache(new_client):
|
|
|
|
with new_cache() as cache:
|
|
|
|
rt1 = rtutil.RT(new_client, cache)
|
|
|
|
rt2 = rtutil.RT(new_client, cache)
|
|
|
|
assert not rt1.exists(9)
|
|
|
|
new_client.TICKET_DATA['9'] = [('99', '(Unnamed)', 'text/plain', '0b')]
|
|
|
|
assert not rt1.exists(9)
|
|
|
|
assert rt2.exists(9)
|