DefaultClonerConfig added, removed obsolette bash file

Signed-off-by: Václav Valíček <valicek1994@gmail.com>
This commit is contained in:
2022-06-26 02:16:51 +02:00
parent 525c27795c
commit 9feca35311
4 changed files with 65 additions and 12 deletions

View File

@@ -0,0 +1,36 @@
from repo_cloner.lib.default_cloner_config import DefaultClonerConfig
def test_init():
x = DefaultClonerConfig()
assert isinstance(x, DefaultClonerConfig)
def test_types():
x = DefaultClonerConfig()
assert isinstance(x.cloner_project_name, str)
assert isinstance(x.cloner_repo_url, str)
assert isinstance(x.cloner_interval, int)
assert isinstance(x.cloner_submodules, bool)
assert isinstance(x.cloner_submodule_depth, int)
assert isinstance(x.has_property("wut"), bool)
def test_values():
x = DefaultClonerConfig()
assert x.cloner_project_name == ""
assert x.cloner_repo_url == ""
assert x.cloner_interval == 5
assert x.cloner_submodules
assert x.cloner_submodule_depth == 50000
def test_has_property():
x = DefaultClonerConfig()
assert not x.has_property("nonexistent")
assert x.has_property("cloner_project_name")
assert x.has_property("cloner_repo_url")
assert x.has_property("cloner_interval")
assert x.has_property("cloner_submodules")
assert x.has_property("cloner_submodule_depth")