sh_cpl/unittests/unittests_cli/uninstall_test_case.py

68 lines
2.7 KiB
Python
Raw Normal View History

2022-06-21 09:24:56 +02:00
import json
import os
import shutil
2022-06-23 23:39:41 +02:00
import subprocess
import sys
2022-05-26 13:49:31 +02:00
import unittest
2022-06-21 09:24:56 +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-06-21 09:24:56 +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 UninstallTestCase(CommandTestCase):
def __init__(self, method_name: str):
CommandTestCase.__init__(self, method_name)
2023-02-20 15:55:20 +01:00
self._source = "uninstall-test-source"
self._project_file = f"src/{String.convert_to_snake_case(self._source)}/{self._source}.json"
self._version = "1.7.3"
self._package_name = "discord.py"
self._package = f"{self._package_name}=={self._version}"
2022-06-21 09:24:56 +02:00
def _get_project_settings(self):
2023-02-20 15:55:20 +01:00
with open(os.path.join(os.getcwd(), self._project_file), "r", encoding="utf-8") as cfg:
2022-06-21 09:24:56 +02:00
# load json
project_json = json.load(cfg)
cfg.close()
return project_json
2022-05-26 13:49:31 +02:00
def setUp(self):
2022-12-01 17:00:17 +01:00
if not os.path.exists(PLAYGROUND_PATH):
os.makedirs(PLAYGROUND_PATH)
2022-12-01 23:23:48 +01:00
2022-12-01 17:00:17 +01:00
os.chdir(PLAYGROUND_PATH)
2022-06-21 09:24:56 +02:00
# create projects
2023-02-20 15:55:20 +01:00
CLICommands.new("console", self._source, "--ab", "--s")
2022-06-21 09:24:56 +02:00
os.chdir(os.path.join(os.getcwd(), self._source))
2022-06-23 23:39:41 +02:00
def _get_installed_packages(self) -> dict:
2023-02-20 15:55:20 +01:00
reqs = subprocess.check_output([sys.executable, "-m", "pip", "freeze"])
return dict([tuple(r.decode().split("==")) for r in reqs.split()])
2022-06-23 23:39:41 +02:00
2022-06-21 09:24:56 +02:00
def test_uninstall(self):
2022-06-27 20:16:37 +02:00
CLICommands.install(self._package)
2022-06-21 09:24:56 +02:00
CLICommands.uninstall(self._package)
settings = self._get_project_settings()
self.assertNotEqual(settings, {})
2023-02-20 15:55:20 +01:00
self.assertIn("ProjectSettings", settings)
self.assertIn("Dependencies", settings["ProjectSettings"])
self.assertNotIn(self._package, settings["ProjectSettings"]["Dependencies"])
self.assertNotIn(self._package, settings["ProjectSettings"]["DevDependencies"])
2022-06-27 20:16:37 +02:00
packages = self._get_installed_packages()
self.assertNotIn(self._package_name, packages)
def test_dev_uninstall(self):
CLICommands.install(self._package, is_dev=True)
CLICommands.uninstall(self._package, is_dev=True)
settings = self._get_project_settings()
self.assertNotEqual(settings, {})
2023-02-20 15:55:20 +01:00
self.assertIn("ProjectSettings", settings)
self.assertIn("Dependencies", settings["ProjectSettings"])
self.assertIn("DevDependencies", settings["ProjectSettings"])
self.assertNotIn(self._package, settings["ProjectSettings"]["Dependencies"])
self.assertNotIn(self._package, settings["ProjectSettings"]["DevDependencies"])
2022-06-23 23:39:41 +02:00
packages = self._get_installed_packages()
2022-06-21 09:24:56 +02:00
self.assertNotIn(self._package_name, packages)