summaryrefslogtreecommitdiff
path: root/slixmpp/test
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-04 23:01:54 +0100
committermathieui <mathieui@mathieui.net>2020-12-04 23:01:54 +0100
commite6d1badb81f7bacf78f57b83d0f06271f3e99d9a (patch)
tree74d112f34a5f6044a826f1ef256fddf37a5efd76 /slixmpp/test
parent3d1e539d2bdecc9763a5d5be86f53da0638e8189 (diff)
downloadslixmpp-e6d1badb81f7bacf78f57b83d0f06271f3e99d9a.tar.gz
slixmpp-e6d1badb81f7bacf78f57b83d0f06271f3e99d9a.tar.bz2
slixmpp-e6d1badb81f7bacf78f57b83d0f06271f3e99d9a.tar.xz
slixmpp-e6d1badb81f7bacf78f57b83d0f06271f3e99d9a.zip
CI: Add helper for integration tests
Diffstat (limited to 'slixmpp/test')
-rw-r--r--slixmpp/test/integration.py61
1 files changed, 61 insertions, 0 deletions
diff --git a/slixmpp/test/integration.py b/slixmpp/test/integration.py
new file mode 100644
index 00000000..d15019cc
--- /dev/null
+++ b/slixmpp/test/integration.py
@@ -0,0 +1,61 @@
+"""
+ Slixmpp: The Slick XMPP Library
+ Copyright (C) 2020 Mathieu Pasquet
+ This file is part of Slixmpp.
+
+ See the file LICENSE for copying permission.
+"""
+
+import asyncio
+import os
+try:
+ from unittest import IsolatedAsyncioTestCase
+except ImportError:
+ # Python < 3.8
+ # just to make sure the imports do not break, but
+ # not usable.
+ from unittest import TestCase as IsolatedAsyncioTestCase
+from typing import (
+ List,
+)
+
+from slixmpp import JID
+from slixmpp.clientxmpp import ClientXMPP
+
+
+class SlixIntegration(IsolatedAsyncioTestCase):
+
+ def __init__(self, *args, **kwargs):
+ super().__init__(*args, **kwargs)
+ self.clients = []
+ self.addAsyncCleanup(self._destroy)
+
+ def envjid(self, name):
+ """Get a JID from an env var"""
+ value = os.getenv(name)
+ return JID(value)
+
+ def envstr(self, name):
+ """get a str from an env var"""
+ return os.getenv(name)
+
+ def register_plugins(self, plugins: List[str]):
+ """Register plugins on all known clients"""
+ for plugin in plugins:
+ for client in self.clients:
+ client.register_plugin(plugin)
+
+ def add_client(self, jid: JID, password: str):
+ """Register a new client"""
+ self.clients.append(ClientXMPP(jid, password))
+
+ async def connect_clients(self):
+ """Connect all clients"""
+ for client in self.clients:
+ client.connect()
+ await client.wait_until('session_start')
+
+ async def _destroy(self):
+ """Kill all clients"""
+ for client in self.clients:
+ client.abort()