2023-04-04 18:17:44 +08:00
|
|
|
# The Mia! Accounting Project.
|
2023-03-17 22:32:01 +08:00
|
|
|
# Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/27
|
|
|
|
|
|
|
|
# Copyright (c) 2023 imacat.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
"""The common test libraries for the offset test cases.
|
|
|
|
|
|
|
|
"""
|
|
|
|
from __future__ import annotations
|
2023-03-18 03:21:47 +08:00
|
|
|
|
2023-04-09 09:53:53 +08:00
|
|
|
from abc import ABC, abstractmethod
|
2023-03-17 22:32:01 +08:00
|
|
|
from datetime import date, timedelta
|
2023-03-18 03:21:47 +08:00
|
|
|
from decimal import Decimal
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
import httpx
|
|
|
|
from flask import Flask
|
|
|
|
|
|
|
|
from test_site import db
|
2023-04-09 11:00:38 +08:00
|
|
|
from testlib import NEXT_URI
|
2023-03-23 17:26:27 +08:00
|
|
|
from testlib_journal_entry import match_journal_entry_detail
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
|
2023-03-20 20:52:35 +08:00
|
|
|
class JournalEntryLineItemData:
|
|
|
|
"""The journal entry line item data."""
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-03-20 16:01:25 +08:00
|
|
|
def __init__(self, account: str, description: str, amount: str,
|
2023-03-20 20:52:35 +08:00
|
|
|
original_line_item: JournalEntryLineItemData | None = None):
|
|
|
|
"""Constructs the journal entry line item data.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param account: The account code.
|
2023-03-20 16:01:25 +08:00
|
|
|
:param description: The description.
|
2023-03-17 22:32:01 +08:00
|
|
|
:param amount: The amount.
|
2023-03-20 20:52:35 +08:00
|
|
|
:param original_line_item: The original journal entry line item.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
2023-03-20 22:08:58 +08:00
|
|
|
self.journal_entry: JournalEntryData | None = None
|
2023-03-17 22:32:01 +08:00
|
|
|
self.id: int = -1
|
|
|
|
self.no: int = -1
|
2023-03-20 20:52:35 +08:00
|
|
|
self.original_line_item: JournalEntryLineItemData | None \
|
2023-03-19 21:00:11 +08:00
|
|
|
= original_line_item
|
2023-03-17 22:32:01 +08:00
|
|
|
self.account: str = account
|
2023-03-20 16:01:25 +08:00
|
|
|
self.description: str = description
|
2023-03-18 03:21:47 +08:00
|
|
|
self.amount: Decimal = Decimal(amount)
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-03-20 20:35:10 +08:00
|
|
|
def form(self, prefix: str, debit_credit: str, index: int,
|
|
|
|
is_update: bool) -> dict[str, str]:
|
2023-03-19 21:00:11 +08:00
|
|
|
"""Returns the line item as form data.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param prefix: The prefix of the form fields.
|
2023-03-20 20:35:10 +08:00
|
|
|
:param debit_credit: Either "debit" or "credit".
|
2023-03-19 21:00:11 +08:00
|
|
|
:param index: The line item index.
|
2023-03-17 22:32:01 +08:00
|
|
|
:param is_update: True for an update operation, or False otherwise
|
|
|
|
:return: The form data.
|
|
|
|
"""
|
2023-03-20 20:35:10 +08:00
|
|
|
prefix = f"{prefix}-{debit_credit}-{index}"
|
2023-03-17 22:32:01 +08:00
|
|
|
form: dict[str, str] = {f"{prefix}-account_code": self.account,
|
2023-03-20 16:01:25 +08:00
|
|
|
f"{prefix}-description": self.description,
|
2023-03-18 03:21:47 +08:00
|
|
|
f"{prefix}-amount": str(self.amount)}
|
2023-03-17 22:32:01 +08:00
|
|
|
if is_update and self.id != -1:
|
2023-03-20 23:06:57 +08:00
|
|
|
form[f"{prefix}-id"] = str(self.id)
|
2023-03-17 22:32:01 +08:00
|
|
|
form[f"{prefix}-no"] = str(index) if self.no == -1 else str(self.no)
|
2023-03-19 21:00:11 +08:00
|
|
|
if self.original_line_item is not None:
|
|
|
|
assert self.original_line_item.id != -1
|
|
|
|
form[f"{prefix}-original_line_item_id"] \
|
|
|
|
= str(self.original_line_item.id)
|
2023-03-17 22:32:01 +08:00
|
|
|
return form
|
|
|
|
|
|
|
|
|
2023-04-09 10:04:12 +08:00
|
|
|
class JournalEntryCurrencyData:
|
2023-03-20 22:08:58 +08:00
|
|
|
"""The journal entry currency data."""
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-03-20 20:52:35 +08:00
|
|
|
def __init__(self, currency: str, debit: list[JournalEntryLineItemData],
|
|
|
|
credit: list[JournalEntryLineItemData]):
|
2023-03-20 22:08:58 +08:00
|
|
|
"""Constructs the journal entry currency data.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param currency: The currency code.
|
2023-03-19 21:00:11 +08:00
|
|
|
:param debit: The debit line items.
|
|
|
|
:param credit: The credit line items.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
|
|
|
self.code: str = currency
|
2023-03-20 20:52:35 +08:00
|
|
|
self.debit: list[JournalEntryLineItemData] = debit
|
|
|
|
self.credit: list[JournalEntryLineItemData] = credit
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
def form(self, index: int, is_update: bool) -> dict[str, str]:
|
|
|
|
"""Returns the currency as form data.
|
|
|
|
|
|
|
|
:param index: The currency index.
|
|
|
|
:param is_update: True for an update operation, or False otherwise
|
|
|
|
:return: The form data.
|
|
|
|
"""
|
|
|
|
prefix: str = f"currency-{index}"
|
|
|
|
form: dict[str, str] = {f"{prefix}-code": self.code}
|
|
|
|
for i in range(len(self.debit)):
|
|
|
|
form.update(self.debit[i].form(prefix, "debit", i + 1, is_update))
|
|
|
|
for i in range(len(self.credit)):
|
|
|
|
form.update(self.credit[i].form(prefix, "credit", i + 1,
|
|
|
|
is_update))
|
|
|
|
return form
|
|
|
|
|
|
|
|
|
2023-03-20 22:08:58 +08:00
|
|
|
class JournalEntryData:
|
|
|
|
"""The journal entry data."""
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-04-09 10:04:12 +08:00
|
|
|
def __init__(self, days: int, currencies: list[JournalEntryCurrencyData]):
|
2023-03-20 22:08:58 +08:00
|
|
|
"""Constructs a journal entry.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param days: The number of days before today.
|
2023-03-20 22:08:58 +08:00
|
|
|
:param currencies: The journal entry currency data.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
|
|
|
self.id: int = -1
|
|
|
|
self.days: int = days
|
2023-04-09 10:04:12 +08:00
|
|
|
self.currencies: list[JournalEntryCurrencyData] = currencies
|
2023-03-17 22:32:01 +08:00
|
|
|
self.note: str | None = None
|
|
|
|
for currency in self.currencies:
|
2023-03-19 21:00:11 +08:00
|
|
|
for line_item in currency.debit:
|
2023-03-20 22:08:58 +08:00
|
|
|
line_item.journal_entry = self
|
2023-03-19 21:00:11 +08:00
|
|
|
for line_item in currency.credit:
|
2023-03-20 22:08:58 +08:00
|
|
|
line_item.journal_entry = self
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
def new_form(self, csrf_token: str) -> dict[str, str]:
|
2023-03-20 22:08:58 +08:00
|
|
|
"""Returns the journal entry as a creation form.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param csrf_token: The CSRF token.
|
2023-03-20 22:08:58 +08:00
|
|
|
:return: The journal entry as a creation form.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
|
|
|
return self.__form(csrf_token, is_update=False)
|
|
|
|
|
|
|
|
def update_form(self, csrf_token: str) -> dict[str, str]:
|
2023-03-20 22:08:58 +08:00
|
|
|
"""Returns the journal entry as an update form.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param csrf_token: The CSRF token.
|
2023-03-20 22:08:58 +08:00
|
|
|
:return: The journal entry as an update form.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
|
|
|
return self.__form(csrf_token, is_update=True)
|
|
|
|
|
|
|
|
def __form(self, csrf_token: str, is_update: bool = False) \
|
|
|
|
-> dict[str, str]:
|
2023-03-20 22:08:58 +08:00
|
|
|
"""Returns the journal entry as a form.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
:param csrf_token: The CSRF token.
|
|
|
|
:param is_update: True for an update operation, or False otherwise
|
2023-03-20 22:08:58 +08:00
|
|
|
:return: The journal entry as a form.
|
2023-03-17 22:32:01 +08:00
|
|
|
"""
|
2023-03-20 22:08:58 +08:00
|
|
|
journal_entry_date: date = date.today() - timedelta(days=self.days)
|
2023-03-17 22:32:01 +08:00
|
|
|
form: dict[str, str] = {"csrf_token": csrf_token,
|
|
|
|
"next": NEXT_URI,
|
2023-03-20 22:08:58 +08:00
|
|
|
"date": journal_entry_date.isoformat()}
|
2023-03-17 22:32:01 +08:00
|
|
|
for i in range(len(self.currencies)):
|
|
|
|
form.update(self.currencies[i].form(i + 1, is_update))
|
|
|
|
if self.note is not None:
|
|
|
|
form["note"] = self.note
|
|
|
|
return form
|
|
|
|
|
|
|
|
|
2023-04-09 09:53:53 +08:00
|
|
|
class BaseTestData(ABC):
|
|
|
|
"""The base test data."""
|
2023-03-17 22:32:01 +08:00
|
|
|
|
|
|
|
def __init__(self, app: Flask, client: httpx.Client, csrf_token: str):
|
|
|
|
"""Constructs the test data.
|
|
|
|
|
|
|
|
:param app: The Flask application.
|
|
|
|
:param client: The client.
|
|
|
|
:param csrf_token: The CSRF token.
|
|
|
|
"""
|
|
|
|
self.app: Flask = app
|
|
|
|
self.client: httpx.Client = client
|
|
|
|
self.csrf_token: str = csrf_token
|
2023-04-09 09:53:53 +08:00
|
|
|
self._init_data()
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def _init_data(self) -> None:
|
|
|
|
"""Initializes the test data.
|
|
|
|
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _couple(description: str, amount: str, debit: str, credit: str) \
|
|
|
|
-> tuple[JournalEntryLineItemData, JournalEntryLineItemData]:
|
|
|
|
"""Returns a couple of debit-credit line items.
|
|
|
|
|
|
|
|
:param description: The description.
|
|
|
|
:param amount: The amount.
|
|
|
|
:param debit: The debit account code.
|
|
|
|
:param credit: The credit account code.
|
|
|
|
:return: The debit line item and credit line item.
|
|
|
|
"""
|
|
|
|
return JournalEntryLineItemData(debit, description, amount),\
|
|
|
|
JournalEntryLineItemData(credit, description, amount)
|
|
|
|
|
|
|
|
def _add_journal_entry(self, journal_entry_data: JournalEntryData) -> None:
|
|
|
|
"""Adds a journal entry.
|
|
|
|
|
|
|
|
:param journal_entry_data: The journal entry data.
|
|
|
|
:return: None.
|
|
|
|
"""
|
|
|
|
from accounting.models import JournalEntry
|
|
|
|
store_uri: str = "/accounting/journal-entries/store/transfer"
|
|
|
|
|
|
|
|
response: httpx.Response = self.client.post(
|
|
|
|
store_uri, data=journal_entry_data.new_form(self.csrf_token))
|
|
|
|
assert response.status_code == 302
|
|
|
|
journal_entry_id: int \
|
|
|
|
= match_journal_entry_detail(response.headers["Location"])
|
|
|
|
journal_entry_data.id = journal_entry_id
|
|
|
|
with self.app.app_context():
|
|
|
|
journal_entry: JournalEntry | None \
|
|
|
|
= db.session.get(JournalEntry, journal_entry_id)
|
|
|
|
assert journal_entry is not None
|
|
|
|
for i in range(len(journal_entry.currencies)):
|
|
|
|
for j in range(len(journal_entry.currencies[i].debit)):
|
|
|
|
journal_entry_data.currencies[i].debit[j].id \
|
|
|
|
= journal_entry.currencies[i].debit[j].id
|
|
|
|
for j in range(len(journal_entry.currencies[i].credit)):
|
|
|
|
journal_entry_data.currencies[i].credit[j].id \
|
|
|
|
= journal_entry.currencies[i].credit[j].id
|
|
|
|
|
2023-04-09 10:50:11 +08:00
|
|
|
def _add_simple_journal_entry(
|
|
|
|
self, days: int, currency: str, description: str, amount: str,
|
|
|
|
debit: str, credit: str) \
|
|
|
|
-> tuple[JournalEntryLineItemData, JournalEntryLineItemData]:
|
|
|
|
"""Adds a simple journal entry.
|
|
|
|
|
|
|
|
:param days: The number of days before today.
|
|
|
|
:param currency: The currency code.
|
|
|
|
:param description: The description.
|
|
|
|
:param amount: The amount.
|
|
|
|
:param debit: The debit account code.
|
|
|
|
:param credit: The credit account code.
|
|
|
|
:return: The debit line item and credit line item.
|
|
|
|
"""
|
|
|
|
debit_item, credit_item = self._couple(
|
|
|
|
description, amount, debit, credit)
|
|
|
|
self._add_journal_entry(JournalEntryData(
|
|
|
|
days, [JournalEntryCurrencyData(
|
|
|
|
currency, [debit_item], [credit_item])]))
|
|
|
|
return debit_item, credit_item
|
|
|
|
|
2023-04-09 10:34:33 +08:00
|
|
|
def _set_need_offset(self, account_codes: set[str],
|
|
|
|
is_need_offset: bool) -> None:
|
2023-04-09 09:53:53 +08:00
|
|
|
"""Sets whether the line items in some accounts need offset.
|
2023-03-17 22:32:01 +08:00
|
|
|
|
2023-04-09 09:53:53 +08:00
|
|
|
:param account_codes: The account codes.
|
|
|
|
:param is_need_offset: True if the line items in the accounts need
|
|
|
|
offset, or False otherwise.
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
from accounting.models import Account
|
|
|
|
with self.app.app_context():
|
|
|
|
for code in account_codes:
|
|
|
|
account: Account | None = Account.find_by_code(code)
|
|
|
|
assert account is not None
|
|
|
|
account.is_need_offset = is_need_offset
|
|
|
|
db.session.commit()
|