Utilities for FrostFS automation
 
 
Go to file
Vladimir Domnich c5ff64b3fd [#5] Implement plugin-based system for reporter
Signed-off-by: Vladimir Domnich <v.domnich@yadro.com>
2022-10-07 15:05:48 +04:00
.github/workflows added DCO check 2022-10-04 12:36:54 +03:00
src/neofs_testlib [#5] Implement plugin-based system for reporter 2022-10-07 15:05:48 +04:00
tests [#7] Add contribution guideline with code style 2022-10-06 10:59:26 +04:00
.gitignore [#3] Add tools required to build PyPI package 2022-09-28 13:10:35 +04:00
.pre-commit-config.yaml Implement basic version of ssh shell 2022-09-09 17:53:36 +03:00
CONTRIBUTING.md [#7] Add contribution guideline with code style 2022-10-06 10:59:26 +04:00
LICENSE Initial commit 2022-08-24 16:36:00 +03:00
README.md [#5] Implement plugin-based system for reporter 2022-10-07 15:05:48 +04:00
pyproject.toml [#5] Implement plugin-based system for reporter 2022-10-07 15:05:48 +04:00
requirements.txt [#5] Implement plugin-based system for reporter 2022-10-07 15:05:48 +04:00

README.md

neofs-testlib

This library provides building blocks and utilities to facilitate development of automated tests for NeoFS system.

Installation

Library can be installed via pip:

$ pip install neofs-testlib

Configuration

Library components can be configured explicitly via code or implicitly via configuration file that supports plugin-based extensions.

By default testlib uses configuration from file .neofs-testlib.yaml that must be located next to the process entry point. Path to the file can be customized via environment variable NEOFS_TESTLIB_CONFIG. Config file should have either YAML or JSON format.

Reporter Configuration

Currently only reporter component can be configured. Function set_reporter assigns current reporter that should be used in the library:

from neofs_testlib.reporter import AllureReporter, set_reporter

reporter = AllureReporter()
set_reporter(reporter)

Assignment of reporter must happen before any testlib modules were imported. Otherwise, testlib code will bind to default dummy reporter. It is not convenient to call utility functions at specific time, so alternative approach is to set reporter in configuration file. To do that, please, specify name of reporter plugin in configuration parameter reporter:

reporter: allure

Testlib provides two built-in reporters: allure and dummy. However, you can use any custom reporter via plugins.

Plugins

Testlib uses entrypoint specification for plugins. Testlib supports the following entrypoint groups for plugins:

  • neofs.testlib.reporter - group for reporter plugins. Plugin should be a class that implements interface neofs_testlib.reporter.interfaces.Reporter.

Example reporter plugin

In this example we will consider two Python projects:

  • Project "my_neofs_plugins" where we will build a plugin that extends testlib functionality.
  • Project "my_neofs_tests" that uses "neofs_testlib" and "my_neofs_plugins" to build some tests.

Let's say we want to implement some custom reporter that can be used as a plugin for testlib. Pseudo-code of implementation can look like that:

# my_neofs_plugins/src/x/y/z/custom_reporter.py
from contextlib import AbstractContextManager
from neofs_testlib.reporter.interfaces import Reporter


class CustomReporter(Reporter):
    def step(self, name: str) -> AbstractContextManager:
        ... some implementation ...

    def attach(self, content: Any, file_name: str) -> None:
        ... some implementation ...

Then in pyproject.toml of "my_neofs_plugins" we should register entrypoint for this plugin. Entrypoint must belong to the group neofs.testlib.reporter:

# my_neofs_plugins/pyproject.toml
[project.entry-points."neofs.testlib.reporter"]
my_custom_reporter = "x.y.z.custom_reporter:CustomReporter"

Finally, to use this reporter in our test project "my_neofs_tests", we should specify its entrypoint name in testlib config:

# my_neofs_tests/pyproject.toml
reporter: my_custom_reporter

Detailed information on registering entrypoints can be found at setuptools docs.

Library structure

The library provides the following primary components:

  • cli - wrappers on top of neoFS command-line tools. These wrappers execute on a shell and provide type-safe interface for interacting with the tools.
  • reporter - abstraction on top of test reporting tool like Allure. Components of the library will report their steps and attach artifacts to the configured reporter instance.
  • shell - shells that can be used to execute commands. Currently library provides local shell (on machine that runs the code) or SSH shell that connects to a remote machine via SSH.

Contributing

Any contributions to the library should conform to the contribution guideline.