Skip to main content

Building blocks and utilities to facilitate development of automated tests for FrostFS system

Project description

frostfs-testlib

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

Installation

Library can be installed via pip:

$ pip install frostfs-testlib

Configuration

Some library components support configuration that allows dynamic loading of extensions via plugins. Configuration of such components is described in this section.

Reporter Configuration

Reporter is a singleton component that is used by the library to store test artifacts.

Reporter sends artifacts to handlers that are responsible for actual storing in particular system. By default reporter is initialized without any handlers and won't take any actions to store the artifacts. To add handlers directly via code you can use method register_handler:

from frostfs_testlib.reporter import AllureHandler, get_reporter

get_reporter().register_handler(AllureHandler())

This registration should happen early at the test session, because any artifacts produced before handler is registered won't be stored anywhere.

Alternative approach for registering handlers is to use method configure. It is similar to method dictConfig in a sense that it receives a config structure that describes handlers that should be registered in the reporter. Each handler is defined by it's plugin name; for example, to register the built-in Allure handler, we can use the following config:

get_reporter().configure({ "handlers": [{"plugin_name": "allure"}] })

Hosting Configuration

Hosting component is a class that represents infrastructure (machines/containers/services) where frostFS is hosted. Interaction with specific infrastructure instance (host) is encapsulated in classes that implement interface frostfs_testlib.hosting.Host. To pass information about hosts to the Hosting class in runtime we use method configure:

from frostfs_testlib.hosting import Hosting

hosting = Hosting()
hosting.configure({ "hosts": [{ "address": "localhost", "plugin_name": "docker" ... }]})

Plugins

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

  • frostfs.testlib.reporter - group for reporter handler plugins. Plugin should be a class that implements interface frostfs_testlib.reporter.interfaces.ReporterHandler.

Example reporter plugin

In this example we will consider two Python projects:

  • Project "my_frostfs_plugins" where we will build a plugin that extends testlib functionality.
  • Project "my_frostfs_tests" that uses "frostfs_testlib" and "my_frostfs_plugins" to build some tests.

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

# File my_frostfs_plugins/src/foo/bar/custom_handler.py
from contextlib import AbstractContextManager
from frostfs_testlib.reporter import ReporterHandler


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

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

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

# File my_frostfs_plugins/pyproject.toml
[project.entry-points."frostfs.testlib.reporter"]
my_custom_handler = "foo.bar.custom_handler:CustomHandler"

Finally, to use this handler in our test project "my_frostfs_tests", we should configure reporter with name of the handler plugin:

# File my_frostfs_tests/src/conftest.py
from frostfs_testlib.reporter import get_reporter

get_reporter().configure({ "handlers": [{"plugin_name": "my_custom_handler"}] })

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

Library structure

The library provides the following primary components:

  • blockchain - Contains helpers that allow to interact with neo blockchain, smart contracts, gas transfers, etc.
  • cli - wrappers on top of frostFS command-line tools. These wrappers execute on a shell and provide type-safe interface for interacting with the tools.
  • hosting - management of infrastructure (docker, virtual machines, services where frostFS is hosted). The library provides host implementation for docker environment (when frostFS services are running as docker containers). Support for other hosts is provided via plugins.
  • 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.
  • utils - Support functions.

Contributing

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

frostfs-testlib-1.3.0.tar.gz (59.0 kB view details)

Uploaded Source

Built Distribution

frostfs_testlib-1.3.0-py3-none-any.whl (75.9 kB view details)

Uploaded Python 3

File details

Details for the file frostfs-testlib-1.3.0.tar.gz.

File metadata

  • Download URL: frostfs-testlib-1.3.0.tar.gz
  • Upload date:
  • Size: 59.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.9

File hashes

Hashes for frostfs-testlib-1.3.0.tar.gz
Algorithm Hash digest
SHA256 13f852fbf72d0aaa69db947eecbb0e16f24390e07f6cb6efd2a0c7952f357a8f
MD5 2309c64044d109483cdf1f2d76d5b497
BLAKE2b-256 b1535f308b95834716230322d27f294d43d72cc3c92b286098149eac65754750

See more details on using hashes here.

File details

Details for the file frostfs_testlib-1.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for frostfs_testlib-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7610461b8231ca8a83064c9639222edc58194dac936f11fa34bfaf61107b4946
MD5 5911805a17637e51ca31d47a514077b2
BLAKE2b-256 dfe0324d9c8c1fcdb3bb04828bbde4ba33e64667a6d6e2e6cedf4b1d564cd4ca

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page