sh_cpl/unittests/unittests_cli/new_test_case.py

192 lines
8.9 KiB
Python
Raw Normal View History

2022-05-27 18:07:12 +02:00
import json
2022-05-26 21:42:43 +02:00
import os
2022-12-06 17:42:55 +01:00
import unittest
2022-05-26 13:49:31 +02:00
2022-05-26 21:42:43 +02:00
from cpl_core.utils import String
2022-12-01 23:23:48 +01:00
from unittests_cli.abc.command_test_case import CommandTestCase
2022-05-26 21:42:43 +02:00
from unittests_cli.constants import PLAYGROUND_PATH
from unittests_shared.cli_commands import CLICommands
2022-05-26 13:49:31 +02:00
2022-12-01 23:23:48 +01:00
class NewTestCase(CommandTestCase):
def __init__(self, method_name: str):
CommandTestCase.__init__(self, method_name)
2022-05-26 13:49:31 +02:00
def _test_project(self, project_type: str, name: str, *args, test_venv=False, without_ws=False):
CLICommands.new(project_type, name, *args, output=False)
workspace_path = os.path.abspath(os.path.join(PLAYGROUND_PATH, name))
self.assertTrue(os.path.exists(workspace_path))
if test_venv:
2023-02-20 15:55:20 +01:00
with self.subTest(msg="Venv exists"):
self.assertTrue(os.path.exists(os.path.join(workspace_path, "venv")))
self.assertTrue(os.path.exists(os.path.join(workspace_path, "venv/bin")))
self.assertTrue(os.path.exists(os.path.join(workspace_path, "venv/bin/python")))
self.assertTrue(os.path.islink(os.path.join(workspace_path, "venv/bin/python")))
2023-02-20 15:55:20 +01:00
base = "src"
if "--base" in args and "/" in name:
base = name.split("/")[0]
name = name.replace(f'{name.split("/")[0]}/', "")
project_path = os.path.abspath(os.path.join(PLAYGROUND_PATH, name, base, String.convert_to_snake_case(name)))
if without_ws:
2023-02-20 15:55:20 +01:00
project_path = os.path.abspath(
os.path.join(PLAYGROUND_PATH, base, name, "src/", String.convert_to_snake_case(name))
)
2023-02-20 15:55:20 +01:00
with self.subTest(msg="Project json exists"):
self.assertTrue(os.path.exists(project_path))
2023-02-20 15:55:20 +01:00
self.assertTrue(os.path.exists(os.path.join(project_path, f"{name}.json")))
2022-05-26 23:01:50 +02:00
2023-02-20 15:55:20 +01:00
if project_type == "library":
with self.subTest(msg="Library class1 exists"):
self.assertTrue(os.path.exists(os.path.join(project_path, f"class1.py")))
return
2023-02-20 15:55:20 +01:00
with self.subTest(msg="Project main.py exists"):
self.assertTrue(os.path.exists(os.path.join(project_path, f"main.py")))
2023-02-20 15:55:20 +01:00
with self.subTest(msg="Application base"):
if "--ab" in args:
self.assertTrue(os.path.isfile(os.path.join(project_path, f"application.py")))
else:
2023-02-20 15:55:20 +01:00
self.assertFalse(os.path.isfile(os.path.join(project_path, f"application.py")))
2022-05-26 23:01:50 +02:00
# s depends on ab
2023-02-20 15:55:20 +01:00
with self.subTest(msg="Startup"):
if "--ab" in args and "--s" in args:
self.assertTrue(os.path.isfile(os.path.join(project_path, f"startup.py")))
else:
2023-02-20 15:55:20 +01:00
self.assertFalse(os.path.isfile(os.path.join(project_path, f"startup.py")))
2023-02-20 15:55:20 +01:00
with self.subTest(msg="Unittest"):
if project_type == "unittest":
self.assertTrue(os.path.isfile(os.path.join(project_path, f"test_case.py")))
else:
2023-02-20 15:55:20 +01:00
self.assertFalse(os.path.isfile(os.path.join(project_path, f"test_case.py")))
with self.subTest(msg="Discord"):
if project_type == "discord-bot":
self.assertTrue(os.path.isfile(os.path.join(project_path, f"events/__init__.py")))
self.assertTrue(os.path.isfile(os.path.join(project_path, f"events/on_ready_event.py")))
self.assertTrue(os.path.isfile(os.path.join(project_path, f"commands/__init__.py")))
self.assertTrue(os.path.isfile(os.path.join(project_path, f"commands/ping_command.py")))
else:
2023-02-20 15:55:20 +01:00
self.assertFalse(os.path.isfile(os.path.join(project_path, f"events/on_ready_event.py")))
self.assertFalse(os.path.isfile(os.path.join(project_path, f"commands/ping_command.py")))
2022-12-08 14:23:46 +01:00
def _test_sub_project(self, project_type: str, name: str, workspace_name: str, *args, test_venv=False):
os.chdir(os.path.abspath(os.path.join(os.getcwd(), workspace_name)))
CLICommands.new(project_type, name, *args)
workspace_path = os.path.abspath(os.path.join(PLAYGROUND_PATH, workspace_name))
self.assertTrue(os.path.exists(workspace_path))
if test_venv:
2023-02-20 15:55:20 +01:00
self.assertTrue(os.path.exists(os.path.join(workspace_path, "venv")))
self.assertTrue(os.path.exists(os.path.join(workspace_path, "venv/bin")))
self.assertTrue(os.path.exists(os.path.join(workspace_path, "venv/bin/python")))
self.assertTrue(os.path.islink(os.path.join(workspace_path, "venv/bin/python")))
base = "src"
if "--base" in args and "/" in name:
base = name.split("/")[0]
name = name.replace(f'{name.split("/")[0]}/', "")
project_path = os.path.abspath(
os.path.join(PLAYGROUND_PATH, workspace_name, base, String.convert_to_snake_case(name))
)
2022-05-26 21:42:43 +02:00
self.assertTrue(os.path.exists(project_path))
2023-02-20 15:55:20 +01:00
self.assertTrue(os.path.join(project_path, f"{name}.json"))
2022-05-26 21:42:43 +02:00
2023-02-20 15:55:20 +01:00
if project_type == "discord-bot":
self.assertTrue(os.path.isfile(os.path.join(project_path, f"events/__init__.py")))
self.assertTrue(os.path.isfile(os.path.join(project_path, f"events/on_ready_event.py")))
self.assertTrue(os.path.isfile(os.path.join(project_path, f"commands/__init__.py")))
self.assertTrue(os.path.isfile(os.path.join(project_path, f"commands/ping_command.py")))
2022-12-08 14:23:46 +01:00
else:
2023-02-20 15:55:20 +01:00
self.assertFalse(os.path.isfile(os.path.join(project_path, f"events/on_ready_event.py")))
self.assertFalse(os.path.isfile(os.path.join(project_path, f"commands/ping_command.py")))
2022-12-08 14:23:46 +01:00
2022-05-27 18:07:12 +02:00
def _test_sub_directory_project(self, project_type: str, directory: str, name: str, workspace_name: str, *args):
os.chdir(os.path.abspath(os.path.join(os.getcwd(), workspace_name)))
2023-02-20 15:55:20 +01:00
CLICommands.new(project_type, f"{directory}/{name}", *args)
2022-05-27 18:07:12 +02:00
workspace_path = os.path.abspath(os.path.join(PLAYGROUND_PATH, workspace_name))
self.assertTrue(os.path.exists(workspace_path))
2023-02-20 15:55:20 +01:00
project_path = os.path.abspath(
os.path.join(PLAYGROUND_PATH, workspace_name, f"src/{directory}", String.convert_to_snake_case(name))
)
2022-05-27 18:07:12 +02:00
self.assertTrue(os.path.exists(project_path))
2023-02-20 15:55:20 +01:00
project_file = os.path.join(project_path, f"{name}.json")
self.assertTrue(os.path.exists(project_file))
2023-02-20 15:55:20 +01:00
with open(project_file, "r", encoding="utf-8") as cfg:
2022-05-27 18:07:12 +02:00
# load json
project_json = json.load(cfg)
cfg.close()
2023-02-20 15:55:20 +01:00
project_settings = project_json["ProjectSettings"]
build_settings = project_json["BuildSettings"]
2022-05-27 18:07:12 +02:00
2023-02-20 15:55:20 +01:00
self.assertEqual(project_settings["Name"], name)
self.assertEqual(build_settings["ProjectType"], "library")
self.assertEqual(build_settings["OutputPath"], "../../dist")
self.assertEqual(build_settings["Main"], f"{String.convert_to_snake_case(name)}.main")
self.assertEqual(build_settings["EntryPoint"], name)
2022-05-27 18:07:12 +02:00
2022-05-26 21:42:43 +02:00
def test_console(self):
2023-02-20 15:55:20 +01:00
self._test_project("console", "test-console", "--ab", "--s", "--venv", test_venv=True)
2022-05-26 23:01:50 +02:00
def test_console_with_other_base(self):
2023-02-20 15:55:20 +01:00
self._test_project(
"console", "tools/test-console", "--ab", "--s", "--venv", "--base", test_venv=True, without_ws=True
)
2022-05-26 23:01:50 +02:00
def test_console_without_s(self):
2023-02-20 15:55:20 +01:00
self._test_project("console", "test-console-without-s", "--ab")
2022-05-26 23:01:50 +02:00
def test_console_without_ab(self):
2023-02-20 15:55:20 +01:00
self._test_project("console", "test-console-without-ab", "--sp")
2022-05-26 23:01:50 +02:00
def test_console_without_anything(self):
2023-02-20 15:55:20 +01:00
self._test_project("console", "test-console-without-anything", "--n")
2022-12-06 17:42:55 +01:00
def test_console_sub(self):
2023-02-20 15:55:20 +01:00
self._test_sub_project(
"console", "test-sub-console", "test-console", "--ab", "--s", "--sp", "--venv", test_venv=True
)
2022-12-06 17:42:55 +01:00
def test_console_sub_with_other_base(self):
2023-02-20 15:55:20 +01:00
self._test_sub_project(
"console",
"tools/test-sub-console",
"test-console",
"--ab",
"--s",
"--sp",
"--venv",
"--base",
test_venv=True,
)
2022-12-08 14:23:46 +01:00
def test_discord_bot(self):
2023-02-20 15:55:20 +01:00
self._test_project("discord-bot", "test-bot", "--ab", "--s", "--venv", test_venv=True)
2022-12-08 14:23:46 +01:00
def test_discord_bot_sub(self):
2023-02-20 15:55:20 +01:00
self._test_sub_project("discord-bot", "test-bot-sub", "test-console", "--ab", "--s", "--venv", test_venv=True)
2022-12-08 14:23:46 +01:00
2022-05-26 21:42:43 +02:00
def test_library(self):
2023-02-20 15:55:20 +01:00
self._test_project("library", "test-library", "--ab", "--s", "--sp")
2022-05-26 21:42:43 +02:00
2022-12-06 17:42:55 +01:00
def test_library_sub(self):
2023-02-20 15:55:20 +01:00
self._test_sub_project("library", "test-sub-library", "test-console", "--ab", "--s", "--sp")
2022-12-06 17:42:55 +01:00
def test_library_sub_directory(self):
2023-02-20 15:55:20 +01:00
self._test_sub_directory_project(
"library", "directory", "test-sub-library", "test-console", "--ab", "--s", "--sp"
)
2022-05-27 18:07:12 +02:00
2022-05-26 21:42:43 +02:00
def test_unittest(self):
2023-02-20 15:55:20 +01:00
self._test_project("unittest", "test-unittest", "--ab")
2022-12-06 17:42:55 +01:00
def test_unittest_sub(self):
2023-02-20 15:55:20 +01:00
self._test_sub_project("unittest", "test-unittest", "test-console", "--ab", "--s", "--sp")