2022-08-29 16:45:26 +00:00
## Testcases structure
Tests written with PyTest Framework are located under `pytest_tests/testsuites` directory.
2023-02-27 16:54:27 +00:00
These tests rely on resources and utility modules that have been originally developed for Pytest Framework.
2022-08-29 16:45:26 +00:00
2020-12-16 11:19:24 +00:00
## Testcases execution
2020-07-01 02:28:31 +00:00
2020-12-16 11:19:24 +00:00
### Initial preparation
2020-12-11 11:35:02 +00:00
2023-01-09 12:46:03 +00:00
1. Install frostfs-cli
2023-11-15 09:21:26 +00:00
- `git clone git@git.frostfs.info:TrueCloudLab/frostfs-node.git`
2023-01-09 12:46:03 +00:00
- `cd frostfs-node`
2020-12-11 11:35:02 +00:00
- `make`
2023-01-09 12:46:03 +00:00
- `sudo cp bin/frostfs-cli /usr/local/bin/frostfs-cli`
2020-12-11 11:35:02 +00:00
2023-05-03 13:23:05 +00:00
2. Install frostfs-s3-authmate
2023-11-15 09:21:26 +00:00
- `git clone git@git.frostfs.info:TrueCloudLab/frostfs-s3-gw.git`
2023-01-09 12:46:03 +00:00
- `cd frostfs-s3-gw`
2021-09-03 11:51:57 +00:00
- `make`
2023-05-03 13:23:05 +00:00
- `sudo cp bin/frostfs-s3-authmate /usr/local/bin/frostfs-s3-authmate`
2020-12-11 11:35:02 +00:00
2021-02-01 16:43:35 +00:00
3. Install neo-go
2023-11-15 09:21:26 +00:00
- `git clone git@git.frostfs.info:TrueCloudLab/neo-go.git`
2021-02-01 16:43:35 +00:00
- `cd neo-go`
2023-02-20 14:09:24 +00:00
- `git checkout v0.101.0` (or the current version in the frostfs-dev-env)
2021-02-01 16:43:35 +00:00
- `make`
2021-09-03 11:51:57 +00:00
- `sudo cp bin/neo-go /usr/local/bin/neo-go`
2023-11-15 09:21:26 +00:00
or download binary from releases: https://git.frostfs.info/TrueCloudLab/neo-go/releases
2021-04-05 10:28:00 +00:00
2023-01-09 12:46:03 +00:00
4. Clone frostfs-dev-env
2023-11-15 09:21:26 +00:00
`git clone git@git.frostfs.info:TrueCloudLab/frostfs-dev-env.git`
2021-09-03 11:51:57 +00:00
2023-01-09 12:46:03 +00:00
Note that we expect frostfs-dev-env to be located under
the `<testcases_root_dir>/../frostfs-dev-env` directory. If you put this repo in any other place,
manually set the full path to frostfs-dev-env in the environment variable `DEVENV_PATH` at this step.
2021-09-03 11:51:57 +00:00
2023-02-27 16:54:27 +00:00
5. Make sure you have installed all the following prerequisites on your machine
2022-05-16 18:52:30 +00:00
```
make
2023-02-27 16:54:27 +00:00
python3.10
python3.10-dev
2022-05-16 18:52:30 +00:00
libssl-dev
```
2023-01-09 12:46:03 +00:00
As we use frostfs-dev-env, you'll also need to install
2023-11-15 09:21:26 +00:00
[prerequisites ](https://git.frostfs.info/TrueCloudLab/frostfs-dev-env#prerequisites ) of this repository.
2022-05-16 18:52:30 +00:00
2022-09-20 15:46:45 +00:00
6. Prepare virtualenv
2022-07-19 19:53:47 +00:00
2022-09-20 15:46:45 +00:00
```shell
2023-03-13 14:05:24 +00:00
$ make venv
$ source venv.frostfs-testcases-3.10/bin/activate
2022-07-19 19:53:47 +00:00
```
2023-03-13 14:05:24 +00:00
7. Optionally you might want to integrate code formatters with your code editor to apply formatters to code files as you go:
2022-09-20 15:46:45 +00:00
* isort is supported by [PyCharm ](https://plugins.jetbrains.com/plugin/15434-isortconnect ), [VS Code ](https://cereblanco.medium.com/setup-black-and-isort-in-vscode-514804590bf9 ). Plugins exist for other IDEs/editors as well.
* black can be integrated with multiple editors, please, instructions are available [here ](https://black.readthedocs.io/en/stable/integrations/editors.html ).
8. Install Allure CLI
2022-07-19 19:53:47 +00:00
2022-08-29 16:45:26 +00:00
Allure CLI installation is not an easy task, so a better option might be to run allure from
2022-09-20 15:46:45 +00:00
docker container (please, refer to p.2 of the next section for instructions).
2022-08-29 16:45:26 +00:00
2022-09-20 15:46:45 +00:00
To install Allure CLI you may take one of the following ways:
2022-07-19 19:53:47 +00:00
- Follow the [instruction ](https://docs.qameta.io/allure/#_linux ) from the official website
- Consult [the thread ](https://github.com/allure-framework/allure2/issues/989 )
- Download release from the Github
2022-09-20 15:46:45 +00:00
```shell
2022-07-19 19:53:47 +00:00
$ wget https://github.com/allure-framework/allure2/releases/download/2.18.1/allure_2.18.1-1_all.deb
$ sudo apt install ./allure_2.18.1-1_all.deb
```
You also need the `default-jre` package installed.
2022-08-29 16:45:26 +00:00
If none of the options worked for you, please complete the instruction with your approach.
2022-09-20 15:46:45 +00:00
### Run and get report
1. Run tests
2022-07-19 19:53:47 +00:00
2022-09-20 15:46:45 +00:00
Make sure that the virtualenv is activated, then execute the following command to run a singular test suite or all the suites in the directory
```shell
2022-07-19 19:53:47 +00:00
$ pytest --alluredir my-allure-123 pytest_tests/testsuites/object/test_object_api.py
$ pytest --alluredir my-allure-123 pytest_tests/testsuites/
```
2022-09-20 15:46:45 +00:00
2. Generate report
2022-07-19 19:53:47 +00:00
2022-08-29 16:45:26 +00:00
If you opted to install Allure CLI, you can generate a report using the command `allure generate` . The web representation of the report will be under `allure-report` directory:
2022-09-20 15:46:45 +00:00
```shell
2022-07-19 19:53:47 +00:00
$ allure generate my-allure-123
$ ls allure-report/
app.js data export favicon.ico history index.html plugins styles.css widgets
```
To inspect the report in a browser, run
2022-09-20 15:46:45 +00:00
```shell
2022-07-19 19:53:47 +00:00
$ allure serve my-allure-123
```
2022-08-29 16:45:26 +00:00
If you prefer to run allure from Docker, you can use the following command:
2022-09-20 15:46:45 +00:00
```shell
$ mkdir -p $PWD/allure-reports
$ docker run -p 5050:5050 -e CHECK_RESULTS_EVERY_SECONDS=30 -e KEEP_HISTORY=1 \
-v $PWD/my-allure-123:/app/allure-results \
-v $PWD/allure-reports:/app/default-reports \
frankescobar/allure-docker-service
2022-08-29 16:45:26 +00:00
```
Then, you can check the allure report in your browser [by this link ](http://localhost:5050/allure-docker-service/projects/default/reports/latest/index.html?redirect=false )
2023-01-09 12:46:03 +00:00
NOTE: feel free to select a different location for `allure-reports` directory, there is no requirement to have it inside `frostfs-testcases` . For example, you can place it under `/tmp` path.
2022-08-29 16:45:26 +00:00
2022-11-02 09:28:59 +00:00
# Contributing
2022-08-29 16:45:26 +00:00
2022-11-02 09:28:59 +00:00
Feel free to contribute to this project after reading the [contributing
guidelines](CONTRIBUTING.md).
2022-08-29 16:45:26 +00:00
2022-11-02 09:28:59 +00:00
Before starting to work on a certain topic, create a new issue first, describing
the feature/topic you are going to implement.
2022-08-29 16:45:26 +00:00
2022-11-02 09:28:59 +00:00
# License
- [GNU General Public License v3.0 ](LICENSE )
2022-11-10 05:27:52 +00:00
## Pytest marks
Custom pytest marks used in tests:
* `sanity` - Tests must be runs in sanity testruns.
* `smoke` - Tests must be runs in smoke testruns.