2020-03-05 16:55:54 +00:00
|
|
|
"""Mock Beancount objects for testing"""
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
import datetime
|
2020-03-24 21:23:54 +00:00
|
|
|
import itertools
|
2020-05-04 20:36:59 +00:00
|
|
|
import re
|
2020-07-29 21:22:09 +00:00
|
|
|
import unittest.mock
|
2020-03-05 16:55:54 +00:00
|
|
|
|
|
|
|
import beancount.core.amount as bc_amount
|
|
|
|
import beancount.core.data as bc_data
|
2020-05-05 18:31:08 +00:00
|
|
|
import beancount.loader as bc_loader
|
2020-07-16 14:11:39 +00:00
|
|
|
import beancount.parser.options as bc_options
|
2020-03-05 16:55:54 +00:00
|
|
|
|
2020-07-29 21:22:09 +00:00
|
|
|
import git
|
2020-06-03 23:03:02 +00:00
|
|
|
import odf.element
|
|
|
|
import odf.opendocument
|
|
|
|
import odf.table
|
|
|
|
|
2020-03-05 16:55:54 +00:00
|
|
|
from decimal import Decimal
|
2020-03-19 21:23:27 +00:00
|
|
|
from pathlib import Path
|
2020-06-03 23:03:02 +00:00
|
|
|
from typing import Any, Optional, NamedTuple
|
2020-03-05 16:55:54 +00:00
|
|
|
|
2020-07-10 14:45:59 +00:00
|
|
|
from conservancy_beancount import books, data, rtutil
|
2020-03-25 04:12:20 +00:00
|
|
|
|
2020-03-05 19:37:47 +00:00
|
|
|
EXTREME_FUTURE_DATE = datetime.date(datetime.MAXYEAR, 12, 30)
|
|
|
|
FUTURE_DATE = datetime.date.today() + datetime.timedelta(days=365 * 99)
|
2020-03-05 16:55:54 +00:00
|
|
|
FY_START_DATE = datetime.date(2020, 3, 1)
|
|
|
|
FY_MID_DATE = datetime.date(2020, 9, 1)
|
2020-03-05 19:37:47 +00:00
|
|
|
PAST_DATE = datetime.date(2000, 1, 1)
|
2020-03-23 19:19:15 +00:00
|
|
|
TESTS_DIR = Path(__file__).parent
|
2020-03-05 16:55:54 +00:00
|
|
|
|
2020-07-16 14:39:48 +00:00
|
|
|
# This function is a teardown fixture, but different test files use
|
2020-07-10 14:45:59 +00:00
|
|
|
# it with different scopes. Typical usage looks like:
|
|
|
|
# clean_account_meta = pytest.fixture([options])(testutil.clean_account_meta)
|
|
|
|
def clean_account_meta():
|
2020-07-16 19:10:12 +00:00
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
data.Account.load_options_map(bc_options.OPTIONS_DEFAULTS)
|
|
|
|
data.Account._meta_map.clear()
|
2020-07-10 14:45:59 +00:00
|
|
|
|
2020-06-03 23:03:02 +00:00
|
|
|
def _ods_cell_value_type(cell):
|
|
|
|
assert cell.tagName == 'table:table-cell'
|
|
|
|
return cell.getAttribute('valuetype')
|
|
|
|
|
|
|
|
def _ods_cell_value(cell):
|
|
|
|
value_type = cell.getAttribute('valuetype')
|
|
|
|
if value_type == 'currency' or value_type == 'float':
|
|
|
|
return Decimal(cell.getAttribute('value'))
|
|
|
|
elif value_type == 'date':
|
|
|
|
return datetime.datetime.strptime(
|
|
|
|
cell.getAttribute('datevalue'), '%Y-%m-%d',
|
|
|
|
).date()
|
|
|
|
else:
|
|
|
|
return cell.getAttribute('value')
|
|
|
|
|
|
|
|
def _ods_elem_text(elem):
|
|
|
|
if isinstance(elem, odf.element.Text):
|
|
|
|
return elem.data
|
|
|
|
else:
|
|
|
|
return '\0'.join(_ods_elem_text(child) for child in elem.childNodes)
|
|
|
|
|
|
|
|
odf.element.Element.value_type = property(_ods_cell_value_type)
|
|
|
|
odf.element.Element.value = property(_ods_cell_value)
|
|
|
|
odf.element.Element.text = property(_ods_elem_text)
|
|
|
|
|
2020-05-05 18:31:08 +00:00
|
|
|
def check_lines_match(lines, expect_patterns, source='output'):
|
|
|
|
for pattern in expect_patterns:
|
|
|
|
assert any(re.search(pattern, line) for line in lines), \
|
|
|
|
f"{pattern!r} not found in {source}"
|
|
|
|
|
2020-06-12 19:08:08 +00:00
|
|
|
def check_logs_match(caplog, expected):
|
|
|
|
records = iter(caplog.records)
|
|
|
|
for exp_level, exp_msg in expected:
|
|
|
|
exp_level = exp_level.upper()
|
|
|
|
assert any(
|
|
|
|
log.levelname == exp_level and log.message == exp_msg for log in records
|
|
|
|
), f"{exp_level} log {exp_msg!r} not found"
|
|
|
|
|
2020-03-16 14:15:31 +00:00
|
|
|
def check_post_meta(txn, *expected_meta, default=None):
|
|
|
|
assert len(txn.postings) == len(expected_meta)
|
|
|
|
for post, expected in zip(txn.postings, expected_meta):
|
|
|
|
if not expected:
|
|
|
|
assert not post.meta
|
|
|
|
else:
|
2020-03-19 13:32:06 +00:00
|
|
|
actual = None if post.meta is None else {
|
|
|
|
key: post.meta.get(key, default) for key in expected
|
|
|
|
}
|
|
|
|
assert actual == expected
|
2020-03-16 14:15:31 +00:00
|
|
|
|
2020-03-28 18:31:17 +00:00
|
|
|
def combine_values(*value_seqs):
|
2020-03-29 14:18:51 +00:00
|
|
|
stop = 0
|
|
|
|
for seq in value_seqs:
|
|
|
|
try:
|
|
|
|
stop = max(stop, len(seq))
|
|
|
|
except TypeError:
|
|
|
|
pass
|
2020-03-28 18:31:17 +00:00
|
|
|
return itertools.islice(
|
|
|
|
zip(*(itertools.cycle(seq) for seq in value_seqs)),
|
2020-03-29 14:18:51 +00:00
|
|
|
stop,
|
2020-03-28 18:31:17 +00:00
|
|
|
)
|
|
|
|
|
2020-04-22 13:17:58 +00:00
|
|
|
def date_seq(date=FY_MID_DATE, step=1):
|
|
|
|
while True:
|
|
|
|
yield date
|
|
|
|
date += datetime.timedelta(days=step)
|
|
|
|
|
2020-03-05 16:55:54 +00:00
|
|
|
def parse_date(s, fmt='%Y-%m-%d'):
|
|
|
|
return datetime.datetime.strptime(s, fmt).date()
|
|
|
|
|
2020-03-23 19:19:15 +00:00
|
|
|
def test_path(s):
|
|
|
|
if s is None:
|
|
|
|
return s
|
|
|
|
s = Path(s)
|
|
|
|
if not s.is_absolute():
|
|
|
|
s = TESTS_DIR / s
|
|
|
|
return s
|
|
|
|
|
2020-03-28 17:35:38 +00:00
|
|
|
def Amount(number, currency='USD'):
|
|
|
|
return bc_amount.Amount(Decimal(number), currency)
|
|
|
|
|
2020-04-09 18:13:07 +00:00
|
|
|
def Cost(number, currency='USD', date=FY_MID_DATE, label=None):
|
|
|
|
return bc_data.Cost(Decimal(number), currency, date, label)
|
|
|
|
|
2020-03-05 16:55:54 +00:00
|
|
|
def Posting(account, number,
|
|
|
|
currency='USD', cost=None, price=None, flag=None,
|
2020-06-11 13:55:13 +00:00
|
|
|
_post_type=bc_data.Posting, _meta_type=None, **meta):
|
2020-04-09 18:13:07 +00:00
|
|
|
if cost is not None:
|
|
|
|
cost = Cost(*cost)
|
2020-04-12 02:26:01 +00:00
|
|
|
if not meta:
|
2020-03-08 15:32:03 +00:00
|
|
|
meta = None
|
2020-06-11 13:55:13 +00:00
|
|
|
elif _meta_type:
|
|
|
|
meta = _meta_type(meta)
|
|
|
|
return _post_type(
|
2020-03-05 16:55:54 +00:00
|
|
|
account,
|
2020-04-09 18:13:07 +00:00
|
|
|
Amount(number, currency),
|
2020-03-05 16:55:54 +00:00
|
|
|
cost,
|
|
|
|
price,
|
|
|
|
flag,
|
|
|
|
meta,
|
|
|
|
)
|
|
|
|
|
2020-04-28 19:33:30 +00:00
|
|
|
def Transaction(date=FY_MID_DATE, flag='*', payee=None,
|
|
|
|
narration='', tags=None, links=None, postings=(),
|
|
|
|
**meta):
|
|
|
|
if isinstance(date, str):
|
|
|
|
date = parse_date(date)
|
|
|
|
meta.setdefault('filename', '<test>')
|
|
|
|
meta.setdefault('lineno', 0)
|
|
|
|
real_postings = []
|
|
|
|
for post in postings:
|
|
|
|
try:
|
|
|
|
post.account
|
|
|
|
except AttributeError:
|
|
|
|
if isinstance(post[-1], dict):
|
|
|
|
args = post[:-1]
|
|
|
|
kwargs = post[-1]
|
|
|
|
else:
|
|
|
|
args = post
|
|
|
|
kwargs = {}
|
|
|
|
post = Posting(*args, **kwargs)
|
|
|
|
real_postings.append(post)
|
|
|
|
return bc_data.Transaction(
|
|
|
|
meta,
|
|
|
|
date,
|
|
|
|
flag,
|
|
|
|
payee,
|
|
|
|
narration,
|
|
|
|
set(tags or ''),
|
|
|
|
set(links or ''),
|
|
|
|
real_postings,
|
|
|
|
)
|
|
|
|
|
2020-03-29 02:19:49 +00:00
|
|
|
LINK_METADATA_STRINGS = {
|
|
|
|
'Invoices/304321.pdf',
|
|
|
|
'rt:123/456',
|
|
|
|
'rt://ticket/234',
|
|
|
|
}
|
|
|
|
|
|
|
|
NON_LINK_METADATA_STRINGS = {
|
|
|
|
'',
|
|
|
|
' ',
|
|
|
|
' ',
|
|
|
|
}
|
|
|
|
|
2020-03-28 17:35:38 +00:00
|
|
|
NON_STRING_METADATA_VALUES = [
|
|
|
|
Decimal(5),
|
|
|
|
FY_MID_DATE,
|
|
|
|
Amount(50),
|
|
|
|
Amount(500, None),
|
|
|
|
]
|
|
|
|
|
2020-04-09 19:11:16 +00:00
|
|
|
OPENING_EQUITY_ACCOUNTS = itertools.cycle([
|
|
|
|
'Equity:Funds:Unrestricted',
|
|
|
|
'Equity:Funds:Restricted',
|
|
|
|
'Equity:OpeningBalance',
|
|
|
|
])
|
|
|
|
|
2020-06-03 23:03:02 +00:00
|
|
|
class ODSCell:
|
|
|
|
@classmethod
|
|
|
|
def from_row(cls, row):
|
|
|
|
return row.getElementsByType(odf.table.TableCell)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_sheet(cls, spreadsheet):
|
|
|
|
for row in spreadsheet.getElementsByType(odf.table.TableRow):
|
|
|
|
yield list(cls.from_row(row))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_ods_file(cls, path):
|
|
|
|
ods = odf.opendocument.load(path)
|
|
|
|
return cls.from_sheet(ods.spreadsheet)
|
|
|
|
|
|
|
|
|
2020-04-28 19:33:30 +00:00
|
|
|
def OpeningBalance(acct=None, **txn_meta):
|
|
|
|
if acct is None:
|
|
|
|
acct = next(OPENING_EQUITY_ACCOUNTS)
|
|
|
|
return Transaction(**txn_meta, postings=[
|
|
|
|
('Assets:Receivable:Accounts', 100),
|
|
|
|
('Assets:Receivable:Loans', 200),
|
|
|
|
('Liabilities:Payable:Accounts', -15),
|
|
|
|
('Liabilities:Payable:Vacation', -25),
|
|
|
|
(acct, -260),
|
|
|
|
])
|
2020-03-19 21:23:27 +00:00
|
|
|
|
2020-05-04 20:36:59 +00:00
|
|
|
class TestBooksLoader(books.Loader):
|
|
|
|
def __init__(self, source):
|
|
|
|
self.source = source
|
|
|
|
|
2020-06-04 13:03:10 +00:00
|
|
|
def load_all(self, from_year=None):
|
2020-05-16 14:27:06 +00:00
|
|
|
return bc_loader.load_file(self.source)
|
2020-05-05 18:31:08 +00:00
|
|
|
|
2020-06-03 20:54:22 +00:00
|
|
|
def load_fy_range(self, from_fy, to_fy=None):
|
|
|
|
return self.load_all()
|
|
|
|
|
2020-05-04 20:36:59 +00:00
|
|
|
|
2020-03-19 21:23:27 +00:00
|
|
|
class TestConfig:
|
2020-03-29 14:30:54 +00:00
|
|
|
def __init__(self, *,
|
2020-05-04 20:36:59 +00:00
|
|
|
books_path=None,
|
2020-06-16 14:18:18 +00:00
|
|
|
fiscal_year=(3, 1),
|
2020-03-29 14:30:54 +00:00
|
|
|
payment_threshold=0,
|
2020-03-25 04:12:20 +00:00
|
|
|
repo_path=None,
|
|
|
|
rt_client=None,
|
|
|
|
):
|
2020-09-10 20:59:29 +00:00
|
|
|
self._books_path = books_path
|
2020-06-16 14:18:18 +00:00
|
|
|
self.fiscal_year = fiscal_year
|
2020-03-29 14:30:54 +00:00
|
|
|
self._payment_threshold = Decimal(payment_threshold)
|
2020-03-23 19:19:15 +00:00
|
|
|
self.repo_path = test_path(repo_path)
|
2020-03-25 04:12:20 +00:00
|
|
|
self._rt_client = rt_client
|
|
|
|
if rt_client is None:
|
|
|
|
self._rt_wrapper = None
|
|
|
|
else:
|
|
|
|
self._rt_wrapper = rtutil.RT(rt_client)
|
2020-03-19 21:23:27 +00:00
|
|
|
|
2020-05-04 20:36:59 +00:00
|
|
|
def books_loader(self):
|
2020-09-10 20:59:29 +00:00
|
|
|
if self._books_path is None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return TestBooksLoader(self._books_path)
|
|
|
|
|
|
|
|
def books_path(self):
|
|
|
|
return self._books_path
|
2020-05-04 20:36:59 +00:00
|
|
|
|
2020-07-29 21:30:07 +00:00
|
|
|
def books_repo(self):
|
|
|
|
return None
|
|
|
|
|
2020-05-04 20:36:59 +00:00
|
|
|
def config_file_path(self):
|
|
|
|
return test_path('userconfig/conservancy_beancount/config.ini')
|
|
|
|
|
2020-06-16 14:18:18 +00:00
|
|
|
def fiscal_year_begin(self):
|
|
|
|
return books.FiscalYear(*self.fiscal_year)
|
|
|
|
|
2020-03-29 14:30:54 +00:00
|
|
|
def payment_threshold(self):
|
|
|
|
return self._payment_threshold
|
|
|
|
|
2020-03-19 21:23:27 +00:00
|
|
|
def repository_path(self):
|
|
|
|
return self.repo_path
|
2020-03-24 13:08:08 +00:00
|
|
|
|
2020-03-25 04:12:20 +00:00
|
|
|
def rt_client(self):
|
|
|
|
return self._rt_client
|
|
|
|
|
|
|
|
def rt_wrapper(self):
|
|
|
|
return self._rt_wrapper
|
|
|
|
|
2020-03-24 13:08:08 +00:00
|
|
|
|
2020-07-29 21:22:09 +00:00
|
|
|
def TestRepo(head_hexsha='abcd1234', dirty=False):
|
|
|
|
retval = unittest.mock.Mock(spec=git.Repo)
|
|
|
|
retval.is_dirty.return_value = dirty
|
|
|
|
retval.head.commit.hexsha = head_hexsha
|
|
|
|
return retval
|
|
|
|
|
|
|
|
|
2020-03-24 21:23:54 +00:00
|
|
|
class _TicketBuilder:
|
|
|
|
MESSAGE_ATTACHMENTS = [
|
|
|
|
('(Unnamed)', 'multipart/alternative', '0b'),
|
|
|
|
('(Unnamed)', 'text/plain', '1.2k'),
|
|
|
|
('(Unnamed)', 'text/html', '1.4k'),
|
|
|
|
]
|
|
|
|
MISC_ATTACHMENTS = [
|
|
|
|
('Forwarded Message.eml', 'message/rfc822', '3.1k'),
|
|
|
|
('photo.jpg', 'image/jpeg', '65.2k'),
|
2020-03-31 15:38:15 +00:00
|
|
|
('ConservancyInvoice-301.pdf', 'application/pdf', '326k'),
|
|
|
|
('Company_invoice-2020030405_as-sent.pdf', 'application/pdf', '50k'),
|
2020-03-24 21:23:54 +00:00
|
|
|
('statement.txt', 'text/plain', '652b'),
|
2020-03-31 15:38:15 +00:00
|
|
|
('screenshot.png', 'image/png', '1.9m'),
|
2020-03-24 21:23:54 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.id_seq = itertools.count(1)
|
|
|
|
self.misc_attchs = itertools.cycle(self.MISC_ATTACHMENTS)
|
|
|
|
|
|
|
|
def new_attch(self, attch):
|
|
|
|
return (str(next(self.id_seq)), *attch)
|
|
|
|
|
|
|
|
def new_msg_with_attachments(self, attachments_count=1):
|
|
|
|
for attch in self.MESSAGE_ATTACHMENTS:
|
|
|
|
yield self.new_attch(attch)
|
|
|
|
for _ in range(attachments_count):
|
|
|
|
yield self.new_attch(next(self.misc_attchs))
|
|
|
|
|
|
|
|
def new_messages(self, messages_count, attachments_count=None):
|
|
|
|
for n in range(messages_count):
|
|
|
|
if attachments_count is None:
|
|
|
|
att_count = messages_count - n
|
|
|
|
else:
|
|
|
|
att_count = attachments_count
|
|
|
|
yield from self.new_msg_with_attachments(att_count)
|
|
|
|
|
|
|
|
|
2020-03-24 13:08:08 +00:00
|
|
|
class RTClient:
|
2020-03-24 21:23:54 +00:00
|
|
|
_builder = _TicketBuilder()
|
|
|
|
DEFAULT_URL = 'https://example.org/defaultrt/REST/1.0/'
|
|
|
|
TICKET_DATA = {
|
|
|
|
'1': list(_builder.new_messages(1, 3)),
|
|
|
|
'2': list(_builder.new_messages(2, 1)),
|
|
|
|
'3': list(_builder.new_messages(3, 0)),
|
|
|
|
}
|
|
|
|
del _builder
|
|
|
|
|
2020-03-24 13:08:08 +00:00
|
|
|
def __init__(self,
|
2020-03-24 21:23:54 +00:00
|
|
|
url=DEFAULT_URL,
|
2020-03-24 13:08:08 +00:00
|
|
|
default_login=None,
|
|
|
|
default_password=None,
|
|
|
|
proxy=None,
|
|
|
|
default_queue='General',
|
|
|
|
skip_login=False,
|
|
|
|
verify_cert=True,
|
|
|
|
http_auth=None,
|
2020-05-16 15:31:00 +00:00
|
|
|
want_cfs=True,
|
2020-03-24 13:08:08 +00:00
|
|
|
):
|
|
|
|
self.url = url
|
|
|
|
if http_auth is None:
|
|
|
|
self.user = default_login
|
|
|
|
self.password = default_password
|
|
|
|
self.auth_method = 'login'
|
|
|
|
self.login_result = skip_login or None
|
|
|
|
else:
|
|
|
|
self.user = http_auth.username
|
|
|
|
self.password = http_auth.password
|
|
|
|
self.auth_method = type(http_auth).__name__
|
|
|
|
self.login_result = True
|
|
|
|
self.last_login = None
|
2020-05-16 15:31:00 +00:00
|
|
|
self.want_cfs = want_cfs
|
2020-06-23 18:27:11 +00:00
|
|
|
self.edits = {}
|
2020-03-24 13:08:08 +00:00
|
|
|
|
|
|
|
def login(self, login=None, password=None):
|
|
|
|
if login is None and password is None:
|
|
|
|
login = self.user
|
|
|
|
password = self.password
|
|
|
|
self.login_result = bool(login and password and not password.startswith('bad'))
|
|
|
|
self.last_login = (login, password, self.login_result)
|
|
|
|
return self.login_result
|
2020-03-24 21:23:54 +00:00
|
|
|
|
|
|
|
def get_attachments(self, ticket_id):
|
|
|
|
try:
|
|
|
|
return list(self.TICKET_DATA[str(ticket_id)])
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_attachment(self, ticket_id, attachment_id):
|
|
|
|
try:
|
|
|
|
att_seq = iter(self.TICKET_DATA[str(ticket_id)])
|
|
|
|
except KeyError:
|
2020-03-25 14:50:50 +00:00
|
|
|
return None
|
2020-03-24 21:23:54 +00:00
|
|
|
att_id = str(attachment_id)
|
|
|
|
multipart_id = None
|
|
|
|
for attch in att_seq:
|
|
|
|
if attch[0] == att_id:
|
|
|
|
break
|
|
|
|
elif attch[2].startswith('multipart/'):
|
|
|
|
multipart_id = attch[0]
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
tx_id = multipart_id or att_id
|
|
|
|
if attch[1] == '(Unnamed)':
|
|
|
|
filename = ''
|
|
|
|
else:
|
|
|
|
filename = attch[1]
|
|
|
|
return {
|
|
|
|
'id': att_id,
|
|
|
|
'ContentType': attch[2],
|
|
|
|
'Filename': filename,
|
|
|
|
'Transaction': tx_id,
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_ticket(self, ticket_id):
|
|
|
|
ticket_id_s = str(ticket_id)
|
|
|
|
if ticket_id_s not in self.TICKET_DATA:
|
|
|
|
return None
|
2020-05-16 15:31:00 +00:00
|
|
|
retval = {
|
2020-03-24 21:23:54 +00:00
|
|
|
'id': 'ticket/{}'.format(ticket_id_s),
|
|
|
|
'numerical_id': ticket_id_s,
|
2020-05-04 20:36:59 +00:00
|
|
|
'Requestors': [
|
|
|
|
f'mx{ticket_id_s}@example.org',
|
|
|
|
'requestor2@example.org',
|
|
|
|
],
|
|
|
|
}
|
2020-05-16 15:31:00 +00:00
|
|
|
if self.want_cfs:
|
2020-06-23 18:27:11 +00:00
|
|
|
retval['CF.{payment-amount}'] = ''
|
|
|
|
retval['CF.{payment-method}'] = ''
|
2020-05-16 15:31:00 +00:00
|
|
|
retval['CF.{payment-to}'] = f'Hon. Mx. {ticket_id_s}'
|
|
|
|
return retval
|
2020-05-04 20:36:59 +00:00
|
|
|
|
2020-06-23 18:27:11 +00:00
|
|
|
def edit_ticket(self, ticket_id, **kwargs):
|
|
|
|
self.edits.setdefault(str(ticket_id), {}).update(kwargs)
|
|
|
|
return True
|
|
|
|
|
2020-05-04 20:36:59 +00:00
|
|
|
def get_user(self, user_id):
|
|
|
|
user_id_s = str(user_id)
|
|
|
|
match = re.search(r'(\d+)@', user_id_s)
|
|
|
|
if match is None:
|
|
|
|
email = f'mx{user_id_s}@example.org'
|
|
|
|
user_id_num = int(user_id_s)
|
|
|
|
else:
|
|
|
|
email = user_id_s
|
|
|
|
user_id_num = int(match.group(1))
|
2020-05-18 18:44:34 +00:00
|
|
|
retval = {
|
2020-05-04 20:36:59 +00:00
|
|
|
'id': f'user/{user_id_num}',
|
|
|
|
'EmailAddress': email,
|
|
|
|
'Name': email,
|
2020-03-24 21:23:54 +00:00
|
|
|
}
|
2020-05-18 18:44:34 +00:00
|
|
|
if self.want_cfs:
|
|
|
|
retval['RealName'] = f'Mx. {user_id_num}'
|
|
|
|
return retval
|