Skip to content

Pytest fixtures for testing Camunda 8 processes using a Zeebe test engine.

License

Notifications You must be signed in to change notification settings

holunda-io/pytest-zeebe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pytest-zeebe

Pytest fixtures for testing Camunda 8 processes in Python using a Zeebe test engine.

Compatible with: Camunda Platform 8 sponsored

🚀 What does it do?

This package provides a set of fixtures to set up Zeebe process tests for Python in no time:

  • automatically spins up a stripped-down Zeebe engine per file/module (same as used by zeebe-process-test)
  • resets engine state before every test
  • injects a ZeebeTestClient to drive the process
  • (optionally) injects a ZeebeTestEngine to await idle state or access raw zeebe records
  • provides rich assertions for the process instance (goal: equal to zeebe-process-test BpmnAssertions)

Install

pip install pytest-zeebe

Example Usage

The engine is reset before every test, so you can create a fixture to deploy your process automatically:

@pytest.fixture(autouse=True)
def deploy(zeebe_test_client: ZeebeTestClient):
    zeebe_test_client.deploy_process("test.bpmn")

With the process deployed, you can start it, complete tasks and make assertions as usual:

def test(zeebe_test_client: ZeebeTestClient):
    # given
    variables = {
        "var": "A"
    }

    # when
    # -> start
    process_instance = zeebe_test_client.create_process_instance("TestProcess", variables=variables)

    # -> complete Task A
    zeebe_test_client.complete_task("taskA")
    
    assert_that(process_instance).is_waiting_at_elements("TaskC")

    # -> complete Task C
    zeebe_test_client.complete_task("taskC", variables={"resultC": True})

    # then
    assert_that(process_instance) \
        .is_completed() \
        .has_passed_elements_in_order("StartEvent_1", "TaskA", "TaskC", "EndEvent_1") \
        .has_variable_with_value("var", "A") \
        .has_variable_with_value("resultC", True) \
        .has_no_incidents()

Known Issues

This package ships with its own grpc zeebe client. Due to the inner workings of protobuf, this will lead to an unresolvable conflict if you also import code from another library that also registers protobuf descriptors for the zeebe gateway protocol (like pyzeebe). This is no issue if you test the process by itself or - for integration tests - start your app in a dedicated process.

License

This library is developed under

Apache 2.0 License

Sponsors and Customers

sponsored

About

Pytest fixtures for testing Camunda 8 processes using a Zeebe test engine.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages