136 lines
4.7 KiB
Python
136 lines
4.7 KiB
Python
# The Mia! Accounting Flask Project.
|
|
# Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/26
|
|
|
|
# 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 test for the base account management.
|
|
|
|
"""
|
|
import unittest
|
|
|
|
import httpx
|
|
from click.testing import Result
|
|
from flask import Flask
|
|
from flask.testing import FlaskCliRunner
|
|
|
|
from testlib import UserClient, get_user_client
|
|
from test_site import create_app
|
|
|
|
|
|
class BaseAccountCommandTestCase(unittest.TestCase):
|
|
"""The base account console command test case."""
|
|
|
|
def setUp(self) -> None:
|
|
"""Sets up the test.
|
|
This is run once per test.
|
|
|
|
:return: None.
|
|
"""
|
|
from accounting.models import BaseAccount, BaseAccountL10n
|
|
self.app: Flask = create_app(is_testing=True)
|
|
|
|
runner: FlaskCliRunner = self.app.test_cli_runner()
|
|
with self.app.app_context():
|
|
result: Result = runner.invoke(args="init-db")
|
|
self.assertEqual(result.exit_code, 0)
|
|
BaseAccountL10n.query.delete()
|
|
BaseAccount.query.delete()
|
|
|
|
def test_init(self) -> None:
|
|
"""Tests the "accounting-init-base" console command.
|
|
|
|
:return: None.
|
|
"""
|
|
from accounting.models import BaseAccount, BaseAccountL10n
|
|
runner: FlaskCliRunner = self.app.test_cli_runner()
|
|
result: Result = runner.invoke(args="accounting-init-base")
|
|
self.assertEqual(result.exit_code, 0)
|
|
with self.app.app_context():
|
|
accounts: list[BaseAccount] = BaseAccount.query.all()
|
|
l10n: list[BaseAccountL10n] = BaseAccountL10n.query.all()
|
|
self.assertEqual(len(accounts), 527)
|
|
self.assertEqual(len(l10n), 527 * 2)
|
|
l10n_keys: set[str] = {f"{x.account_code}-{x.locale}" for x in l10n}
|
|
for account in accounts:
|
|
self.assertIn(f"{account.code}-zh_Hant", l10n_keys)
|
|
self.assertIn(f"{account.code}-zh_Hant", l10n_keys)
|
|
|
|
|
|
class BaseAccountTestCase(unittest.TestCase):
|
|
"""The base account test case."""
|
|
|
|
def setUp(self) -> None:
|
|
"""Sets up the test.
|
|
This is run once per test.
|
|
|
|
:return: None.
|
|
"""
|
|
from accounting.models import BaseAccount
|
|
self.app: Flask = create_app(is_testing=True)
|
|
|
|
runner: FlaskCliRunner = self.app.test_cli_runner()
|
|
with self.app.app_context():
|
|
result: Result = runner.invoke(args="init-db")
|
|
self.assertEqual(result.exit_code, 0)
|
|
if BaseAccount.query.first() is None:
|
|
result = runner.invoke(args="accounting-init-base")
|
|
self.assertEqual(result.exit_code, 0)
|
|
|
|
self.viewer: UserClient = get_user_client(self, self.app, "viewer")
|
|
self.editor: UserClient = get_user_client(self, self.app, "editor")
|
|
self.nobody: UserClient = get_user_client(self, self.app, "nobody")
|
|
|
|
def test_nobody(self) -> None:
|
|
"""Test the permission as nobody.
|
|
|
|
:return: None.
|
|
"""
|
|
response: httpx.Response
|
|
nobody: UserClient = get_user_client(self, self.app, "nobody")
|
|
|
|
response = nobody.client.get("/accounting/base-accounts")
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
response = nobody.client.get("/accounting/base-accounts/1111")
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
def test_viewer(self) -> None:
|
|
"""Test the permission as viewer.
|
|
|
|
:return: None.
|
|
"""
|
|
response: httpx.Response
|
|
viewer: UserClient = get_user_client(self, self.app, "viewer")
|
|
|
|
response = viewer.client.get("/accounting/base-accounts")
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
response = viewer.client.get("/accounting/base-accounts/1111")
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
def test_editor(self) -> None:
|
|
"""Test the permission as editor.
|
|
|
|
:return: None.
|
|
"""
|
|
response: httpx.Response
|
|
editor: UserClient = get_user_client(self, self.app, "editor")
|
|
|
|
response = editor.client.get("/accounting/base-accounts")
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
response = editor.client.get("/accounting/base-accounts/1111")
|
|
self.assertEqual(response.status_code, 200)
|