Skip to main content
Pre-release

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

Ask DeepWiki

Hivescope

Pytest E2E testing library for HiveMind protocol implementations.

Hivescope provides an in-process simulator for HiveMind network topologies. It needs no real sockets, no running servers, and no network processes. Tests wire MasterNode, SatelliteNode, and RelayNode objects together directly. The library records every HiveMessage for inspection.

Used by hivemind-core e2e tests and by hivemind-test-harness for multi-repo topology and stress scenarios.


Install

pip install hivescope

With OVOS skill-level testing (live MiniCroft backend):

pip install "hivescope[ovos]"

To track dev instead of the last release:

pip install "hivescope @ git+https://github.com/JarbasHiveMind/hivescope@dev"

Quick Start

Minimal handshake test

from hivescope.scenarios import single_satellite
from hivescope.assertions import assert_handshake_complete, assert_encryption_match

def test_handshake():
    builder = single_satellite()
    builder.start_all()
    try:
        master = builder.get_master("M0")
        satellite = builder.get_satellite("S0")
        assert_handshake_complete(master, satellite)
        assert_encryption_match(master, satellite)
    finally:
        builder.stop_all()

Using pytest fixtures

Add to your repo's tests/conftest.py:

pytest_plugins = ['hivescope.pytest_fixtures']

Then use the provided fixtures in tests:

def test_message_forwarded(master_node, satellite_node):
    from ovos_bus_client.message import Message
    satellite_node.send(Message("test:ping", {}))
    master_node.recorder.assert_received("bus", count=1)

ACL enforcement test

def test_acl_denied(master_node, restricted_satellite):
    from ovos_bus_client.message import Message
    from hivescope.assertions import assert_policy_denied

    restricted_satellite.send(Message("admin:command", {}))
    # master_node.recorder logs every inbound message BEFORE policy runs, so
    # it always has a record — checking it cannot prove the message was
    # denied. Assert the actual denial signal instead: the satellite must
    # receive a hive.policy.denied response for this message type.
    assert_policy_denied(master_node, restricted_satellite, "admin:command")

Key Concepts

TopologyBuilder

Assembles and lifecycle-manages a test topology. All add_* methods return the created node. start_all() and stop_all() start and stop all nodes in dependency order.

builder = TopologyBuilder()
master = builder.add_master("M0")
sat0 = builder.add_satellite("S0", upstream=master)
relay = builder.add_relay("R0", upstream=master)
sat1 = builder.add_satellite("S1", upstream=relay)
builder.start_all()
# ... run tests ...
builder.stop_all()

Preset Scenarios

hivescope.scenarios provides pre-wired topologies for common patterns:

Function Topology
single_satellite(allowed_types=None) 1 master M0, 1 satellite S0
three_satellites() 1 master M0, satellites S0 to S2
with_relay() master → relay → satellites
chain_topology() linear relay chain
star_topology(num_satellites=5) central master, N satellites
with_acl_enforcement() master with ACL-restricted and admin satellites
hierarchical_hubs(num_levels=3, sats_per_relay=2) deeply nested relay tree
admin_satellite() 1 master M0, 1 admin satellite S0
with_multiple_agent_protocols() master with a caller-supplied agent protocol

All functions return a not-yet-started TopologyBuilder. Call .start_all() before testing and .stop_all() in a finally block (or use the pytest fixtures for automatic teardown).

MessageRecorder

Every node has a .recorder that captures all inbound and outbound HiveMessages.

# Assert a BUS message was received exactly once
master_node.recorder.assert_received("bus", count=1)

# Assert it was NOT received
master_node.recorder.assert_not_received("propagate")

# Block until a message arrives; returns the RecordedMessage, or None on timeout
master_node.wait_for("shake", timeout=5)

# For a test that should fail on timeout, use assert_received instead:
master_node.recorder.assert_received("shake", count=1)

# Inspect recorded messages
for msg in master_node.recorder.messages:
    print(msg.direction, msg.msg_type, msg.peer)

Pytest Fixtures

Enable in conftest.py: pytest_plugins = ['hivescope.pytest_fixtures']

Fixture Scope Yields
topology function Started TopologyBuilder (auto-stopped)
master_node function MasterNode in a started single-master topology (no satellite attached)
satellite_node function SatelliteNode connected to master_node
admin_satellite function Satellite with full permissions
restricted_satellite function Satellite with ACL restrictions

Copy-Paste Templates

templates/ contains ready-to-copy test files. Drop them into tests/e2e/ in your repo:

Template Tests
test_template_handshake.py Cipher/encoding agreement, handshake completion
test_template_routing.py Message routing through master
test_template_acl.py ACL enforcement: allowed_types denial and skill-blacklist injection
test_template_binary.py Binary protocol message handling
test_template_bridge1.py OVOS-BRIDGE-1 / SESSION-1 conformance: source stamping, destination routing, session fidelity, FIFO order
test_template_cascade.py CASCADE fan-out to master and sibling satellites
test_template_ping.py PING network-map round-trip: send PROPAGATE(PING), assert the responsive PING
test_template_query.py QUERY routing, pending core support, marked xfail
test_template_rendezvous.py RENDEZVOUS handling, pending, marked xfail
test_template_passthrough.py Generic unhandled/user-land message passthrough routing

See docs/index.md for the pending items.


Configuration

Option Default Purpose
use_loopback=True False Pass to add_master() to use a loopback network transport instead of the default in-process transport
[ovos] extra not installed Enables OvoscopeAgentProtocol backed by a live MiniCroft instance

API Reference

Full public API documentation: docs/index.md


License

Apache-2.0

Download files

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

Source Distribution

hivescope-0.7.0a1.tar.gz (83.6 kB view details)

Uploaded Source

Built Distribution

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

hivescope-0.7.0a1-py3-none-any.whl (66.3 kB view details)

Uploaded Python 3

File details

Details for the file hivescope-0.7.0a1.tar.gz.

File metadata

  • Download URL: hivescope-0.7.0a1.tar.gz
  • Upload date:
  • Size: 83.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hivescope-0.7.0a1.tar.gz
Algorithm Hash digest
SHA256 64072fbb04648c2dd2ce293d203624448b2bac64040590d759c88c8fc431b8d6
MD5 153dfcc82cd748165c82ab6103cbc58a
BLAKE2b-256 31db56bddb9b107a3a9c29cc50a7bb7b0309117afc0db3dd60fafa3d28978666

See more details on using hashes here.

File details

Details for the file hivescope-0.7.0a1-py3-none-any.whl.

File metadata

  • Download URL: hivescope-0.7.0a1-py3-none-any.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hivescope-0.7.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 0b0983e1a2054f5a331a895f8c720826a10472c45aac5cb5e8718c45131dc1b9
MD5 b768e6279d9ba3997b28b0fb91245bd0
BLAKE2b-256 f5676dcbef213dec29a617d689e00c5d4bf776a3631e5d24fd70e9fe52033291

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page