Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

ATEX

ATEX is a framework for configurable test execution.

It is a set of Python-based abstract APIs and several implementations utilizing them, providing building blocks for you to make simple Python-based scripts that control the execution and result processing of your tests.

Its main building blocks are:

  • Provisioners that give you systems to run tests on
  • Executors that prepare and run the tests on them
  • Aggregators that collect results from multiple tests
  • Orchestrators that string everything up together, using Provisioners to get systems for Executors to run tests on, calling an Aggregator to ingest all test results

ATEX is not a linear pipeline like Provision -> Execute -> Report, the building blocks can be used independently and at any time.

Even during orchestration, Provisioners run in parallel to Executors, so that re-runs of failed tests can get fresh systems, and tests can start running as soon as one system is provisioned. Aggregators can upload to 3rd party services as soon as any one test finishes.

You are in control

The key part is that this is a framework to be used by YOU. Your script controls what gets used and how.

You can download / fetch tests from multiple repositories, modify their metadata on-the-fly, do anything you want via normal Python code, and also call ATEX building blocks to help you.

There is no "vendor lock-in" to one tool or ecosystem. You don't need ATEX to implement feature XYZ when you can write a trivial piece of Python code to do it (ie. pre-processing test metadata, post-processing results).

There are no boundaries for you to stay within - you don't need to implement a Provisioner using the Provisioner API. Just obtain the system somehow, wrap its SSH details in an SSHConnection*, and give that to an FMFExecutor.

You don't need to write a "plugin for ATEX", you just write Python code.

How it works

Each building block defines one or more abstract base classes, forming a sort-of stable reference API for everyone to use:

class Brewer:
    def intake(self, ingredients):
        """Input `ingredients` for brewing."""

    def brew(self):
        """Brew the beverage and return it."""
class CoffeeBrewer(Brewer):
    def __init__(self, kind, strength=None):
        self.kind = kind
        self.strength = strength if strength is not None else 5

    def _the_actual_brewing(self):
        ...

    def intake(self, ingredients, *, grind=True):
        ...

    def brew(self, *, speed=100):
        return self._the_actual_brewing()

Any piece of code can then state that it takes an initialized Brewer instance as an argument, and have a guarantee that it will have .intake(ingredients) and .brew() available, no matter the implementation.

b = CoffeeBrewer("espresso", 1000)
serve_to_employees(brewer=b)

See API Rules for more details.


Testing this project

There are some limited sanity tests provided via pytest, although:

  • Some require additional variables (ie. Testing Farm) and will ERROR without them.
  • Some take a long time (ie. Testing Farm) due to system provisioning taking a long time, so install pytest-xdist and run with a large -n.

Currently, the recommended approach is to split the execution:

# synchronously, because podman CLI has concurrency issues
pytest tests/provisioner/test_podman*.py

# in parallel, because provisioning takes a long time
export TESTING_FARM_API_TOKEN=...
export TESTING_FARM_COMPOSE=...
pytest -n 20 tests/provisioner/test_testingfarm.py

# needs a HVM-capable host to run, unprivileged qemu:///session is fine
#export LIBVIRT_DEFAULT_URI=...  # override default autodetection
export TEMPVIRT_LOCATION=...
pytest tests/provisioner/test_tempvirt.py

# these are hundreds of tests with all Fedora + CentOS Streams and podman/ssh
# versions, you might want to run only a sensible subset
pytest -k fedora tests/executor/{fmf,beakerlib}  # or -k "fedora and podman"

# fast enough for synchronous execution
pytest \
    tests/connection \
    tests/executor --ignore=tests/executor/{fmf,beakerlib} \
    tests/aggregator \
    tests/orchestrator \
    tests/provisioner/test_local.py

You can also export BASE_IMAGE as a podman image name or ID to be used across the tests as a baseline for container creation - for example, the executor tests above don't need -k as the matrix collapses to just the one image.

What it stands for

ATEX = Ad-hoc Test EXecution, named after the most prominent Orchestrator, originally the only one available.

The name comes from a (fairly unique to FMF/TMT ecosystem) approach that allows provisioning a pool of systems and scheduling tests on them as one would on an ad-hoc pool of thread/process workers - once a worker becomes free, it receives a test to run.

This is in contrast to a more common approach of splitting a large list of N tests onto M workers like N/M, which yields significant time penalties due to tests having very varied runtimes.

Download files

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

Source Distribution

atex-2.0.dev1.tar.gz (183.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atex-2.0.dev1-py3-none-any.whl (140.5 kB view details)

Uploaded Python 3

File details

Details for the file atex-2.0.dev1.tar.gz.

File metadata

  • Download URL: atex-2.0.dev1.tar.gz
  • Upload date:
  • Size: 183.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for atex-2.0.dev1.tar.gz
Algorithm Hash digest
SHA256 80d709ad4a22e6c570a93cd9591816577e2cf884a13d983edde7539155bac6d4
MD5 75aa9385ddd266612a375ebe0158d11d
BLAKE2b-256 763bc6893f0f8ede461cbb5d8741426c45893a334b70810a28a239632d6b339d

See more details on using hashes here.

File details

Details for the file atex-2.0.dev1-py3-none-any.whl.

File metadata

  • Download URL: atex-2.0.dev1-py3-none-any.whl
  • Upload date:
  • Size: 140.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for atex-2.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 5ef651531324411239324f61d71a235673fd1110f448e7c49f0389fca4cc9d19
MD5 66f9c994d4cc0e6caf0da6288d8bbb38
BLAKE2b-256 099723ea3a1cd6dc2d72e357b11a8fbc2d28792677ee41ffb1a7df7fe363893f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.dev1 This release

2 files

1.2

2 files

1.1

2 files

1.0

2 files

0.22

2 files

0.21

2 files

0.20

2 files

0.19

2 files

0.18

2 files

0.17

2 files

0.16

2 files

0.15

2 files

0.13

2 files

0.12

2 files

0.11

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page