Skip to content

Multi-protocol Message-oriented Middleware (MQTT, STOMP, STOMP via WebSockets, and OpenWire)

License

Notifications You must be signed in to change notification settings

ruedigergad/testcontainers-bowerick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

PyPI version CircleCI Coverage Status

This testcontainer provides multiple Message-oriented Middleware (MoM) protocols:

  • OpenWire (ActiveMQ)
  • MQTT
  • STOMP
  • STOMP via WebSockets

It support encrypted and unencrypted connections.

Background

This testcontainer uses a container image of bowerick, which is a wrapper around ActiveMQ and other libraries. bowerick is also available as Open Source Software: https://github.com/ruedigergad/bowerick

Documentation

Example

The example below shows how testcontainers-bowerick can be used with STOMP. Note, this uses "stomp.py==8.*".

import stomp
from testcontainers_bowerick.bowerick import BowerickContainer, Protocols
import time

class Listener(stomp.ConnectionListener):
    def on_message(self, frame):
        print('Received message body:', frame.body)

with BowerickContainer() as container:
    conn = stomp.Connection([('127.0.0.1', container.get_port_for_protocol(Protocols.STOMP))])
    conn.connect(wait=True)
    conn.subscribe('/topic/foo', 1)
    conn.set_listener('listener', Listener())
    time.sleep(1)
    conn.send(body='bar', destination='/topic/foo')
    time.sleep(1)
    conn.disconnect()

About

Multi-protocol Message-oriented Middleware (MQTT, STOMP, STOMP via WebSockets, and OpenWire)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages