refactor for independent test dirs (#7)

* make it so that the actual tests can be moved anywhere, for example in abra recipe repos
-> major refactoring with pytest test discovery magic

* create RUNNER_DICT dynamically with importlib
-> none of the tests are hardcoded, more tests can be added by placing a folder

* autoload fixtures with pytest plugins

* add URL fixture to navigate on web pages. Includes url parser based on python urllib to generate correct links

* fix nextcloud setups and tests

*  add email groundwork with imbox

Reviewed-on: local-it-infrastructure/e2e_tests#7
Co-authored-by: Daniel <d.brummerloh@gmail.com>
Co-committed-by: Daniel <d.brummerloh@gmail.com>
This commit is contained in:
Daniel 2023-12-05 21:41:43 +01:00 committed by dan
parent 3fa10aaa69
commit f9c21c6e6b
45 changed files with 373 additions and 228 deletions

28
tests/test_url.py Normal file
View file

@ -0,0 +1,28 @@
from abratest.utils import BaseUrl
url_input = {
"netloc": "blog.dev.local-it.cloud",
"scheme": "https",
}
url_obj = BaseUrl(**url_input)
def test_urllib_domain_only():
assert url_obj.get() == "https://blog.dev.local-it.cloud"
def test_urllib_path_single():
assert url_obj.get(path="something") == "https://blog.dev.local-it.cloud/something"
def test_urllib_path_double():
assert url_obj.get(path="something/else") == "https://blog.dev.local-it.cloud/something/else"
def test_urllib_path_signle_suc_slash():
assert url_obj.get(path="something/else/") == "https://blog.dev.local-it.cloud/something/else/"
def test_urllib_path_signle_pre_slash():
assert url_obj.get(path="/something/else") == "https://blog.dev.local-it.cloud/something/else"