vban-cmd-python/tests/__init__.py

30 lines
751 B
Python
Raw Normal View History

2022-02-25 15:17:05 +00:00
import vban_cmd
from vban_cmd import kinds
from vban_cmd.channel import Modes
2022-02-25 15:17:05 +00:00
import socket
from threading import Thread
from time import sleep
2022-02-25 15:17:05 +00:00
_kind = 'potato'
opts = {
'ip': 'ws.local',
'streamname': 'testing',
'port': 6990,
'bps': 0,
'channel': 3
}
2022-02-25 15:17:05 +00:00
vbanrs = {kind.id: vban_cmd.connect(_kind, **opts) for kind in kinds.all}
2022-02-25 15:17:05 +00:00
tests = vbanrs[_kind]
def setup_package():
tests._modes = Modes()
2022-02-25 15:17:05 +00:00
tests._rt_packet_socket.bind((socket.gethostbyname(socket.gethostname()), tests._port))
tests.worker = Thread(target=tests._send_register_rt, daemon=True)
tests.worker.start()
2022-02-25 15:17:05 +00:00
def teardown_package():
tests._rt_packet_socket.close()
tests._rt_register_socket.close()
tests._sendrequest_string_socket.close()