* 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>
66 lines
No EOL
1.2 KiB
Markdown
66 lines
No EOL
1.2 KiB
Markdown
# AbraTest
|
|
...description...
|
|
|
|
# Usage
|
|
|
|
To use AbraTest, follow these steps:
|
|
|
|
## 1. GIT Clone
|
|
|
|
To clone with submodules, use these git commands:
|
|
|
|
```bash
|
|
git clone --recurse-submodules <repository>
|
|
git submodule update --init // add submodule after normal cloning
|
|
git submodule update --remote // update submodules
|
|
```
|
|
|
|
## Run
|
|
|
|
You can run AbraTest with and without Docker. Choose now and follow the steps accordingly:
|
|
|
|
## 2.1 Run without Docker
|
|
|
|
### Installation
|
|
|
|
Create a python environment and install all dependencies via
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
playwright install
|
|
```
|
|
|
|
Run the script with
|
|
|
|
```bash
|
|
python main.py # run abratest
|
|
pytest # test abratest
|
|
```
|
|
|
|
# 2.2 Run with Docker
|
|
|
|
```bash
|
|
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
|
|
|
|
```bash
|
|
docker-compose up --build
|
|
```
|
|
|
|
Force rebuild wtihtout cache
|
|
|
|
```bash
|
|
docker-compose build --no-cache
|
|
```
|
|
|
|
## Codegen
|
|
|
|
Use playwright codegen to create code for new testes easily https://playwright.dev/python/docs/codegen
|
|
|
|
```bash
|
|
playwright codegen demo.playwright.dev/todomvc
|
|
``` |