* 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>
28 lines
780 B
Python
28 lines
780 B
Python
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"
|