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

View file

@ -1,4 +1,11 @@
# GIT Clone
# AbraTest
...description...
# Usage
To use AbraTest, follow these steps:
## 1. GIT Clone
To clone with submodules, use these git commands:
@ -8,7 +15,11 @@ git submodule update --init // add submodule after normal cloning
git submodule update --remote // update submodules
```
# Run without Docker
## Run
You can run AbraTest with and without Docker. Choose now and follow the steps accordingly:
## 2.1 Run without Docker
### Installation
@ -22,16 +33,16 @@ playwright install
Run the script with
```bash
python main.py
python main.py # run abratest
pytest # test abratest
```
# Run with Docker
# 2.2 Run with Docker
```bash
docker compose build
docker compose run --rm app python ./main.py
docker compose run --rm app pytest
# docker-compose up
docker compose build # build the image
docker compose run --rm app python ./main.py # run AbraTest
docker compose run --rm app pytest # test AbraTest
```
Force rebuild with cache
@ -46,7 +57,7 @@ Force rebuild wtihtout cache
docker-compose build --no-cache
```
# Codegen
## Codegen
Use playwright codegen to create code for new testes easily https://playwright.dev/python/docs/codegen