Added Tester to create all tests

This commit is contained in:
Sven Heidemann 2020-11-22 14:16:08 +01:00
parent bcfe6f2de4
commit c8a7954adb
3 changed files with 139 additions and 35 deletions

View File

@ -1,8 +1,15 @@
import os
from sh_edraft.service import ServiceProvider
from sh_edraft.source_code.model import Version from sh_edraft.source_code.model import Version
from sh_edraft.publish import Publisher from sh_edraft.publish import Publisher
from sh_edraft.publish.model import Template from sh_edraft.publish.model import Template
if __name__ == '__main__':
class PublisherTest:
@staticmethod
def start(services: ServiceProvider):
templates = [ templates = [
Template( Template(
'../../publish_templates/*_template.txt', '../../publish_templates/*_template.txt',
@ -32,7 +39,11 @@ if __name__ == '__main__':
) )
] ]
publisher = Publisher('../', '../../dist', templates) source = '../'
dist = '../../dist'
services.add_singleton(Publisher, None, source, dist, templates)
publisher: Publisher = services.get_service(Publisher)
publisher.exclude('../tests/') publisher.exclude('../tests/')
publisher.include('../../LICENSE') publisher.include('../../LICENSE')
@ -40,3 +51,6 @@ if __name__ == '__main__':
publisher.create() publisher.create()
publisher.publish() publisher.publish()
if not os.path.isdir(dist):
raise Exception(f'{__name__}: Dist path was not created')

View File

@ -0,0 +1,23 @@
from sh_edraft.publish import Publisher
from sh_edraft.service import ServiceProvider
class ServiceProviderTest:
@staticmethod
def start() -> ServiceProvider:
provider = ServiceProvider()
provider.create()
provider.add_transient(Publisher, None, '../', '../../dist', [])
publisher: Publisher = provider.get_service(Publisher)
if publisher.source_path != '../' or publisher.dist_path != '../../dist':
raise Exception(f'{__name__}: Invalid value in {Publisher.__name__}')
provider.remove_service(Publisher)
if provider.get_service(Publisher) is not None:
raise Exception(f'{__name__}: Service {Publisher.__name__} was not removed')
return provider

67
src/tests/test.py Normal file
View File

@ -0,0 +1,67 @@
import os
import sys
from typing import Optional
from termcolor import colored
from sh_edraft.service import ServiceProvider
from tests.publisher import PublisherTest
from tests.service_provider import ServiceProviderTest
class Test:
def __init__(self):
self._services: Optional[ServiceProvider] = None
self._tests = [
ServiceProviderTest,
PublisherTest
]
self._error: bool = False
@staticmethod
def block_print():
sys.stdout = open(os.devnull, 'w')
@staticmethod
def enable_print():
sys.stdout = sys.__stdout__
def success(self, message: str):
self.enable_print()
print(colored(message, 'green'))
self.block_print()
def failed(self, message: str):
self.enable_print()
print(colored(message, 'red'))
self.block_print()
def create(self): pass
def start(self):
self.block_print()
if not self._error:
try:
self._services = ServiceProviderTest.start()
self.success(f'{ServiceProviderTest.__name__} test succeeded.')
except Exception as e:
self._error = True
self.failed(f'{ServiceProviderTest.__name__} test failed!\n{e}')
if not self._error:
try:
PublisherTest.start(self._services)
self.success(f'{PublisherTest.__name__} test succeeded.')
except Exception as e:
self._error = True
self.failed(f'{PublisherTest.__name__} test failed!\n{e}')
if __name__ == '__main__':
test = Test()
test.create()
test.start()