mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-14 19:54:38 +08:00
32 lines
No EOL
1,002 B
Python
32 lines
No EOL
1,002 B
Python
import os
|
|
import unittest
|
|
import logging
|
|
import time
|
|
import uuid
|
|
|
|
from subprocess import Popen, PIPE
|
|
from signalrcore.hub_connection_builder import HubConnectionBuilder
|
|
from signalrcore.subject import Subject
|
|
from test.base_test_case import BaseTestCase, Urls
|
|
|
|
class TestClientStreamMethod(BaseTestCase):
|
|
|
|
def test_stream(self):
|
|
self.complete = False
|
|
self.items = list(range(0,10))
|
|
subject = Subject()
|
|
self.connection.send("UploadStream", subject)
|
|
while(len(self.items) > 0):
|
|
subject.next(str(self.items.pop()))
|
|
subject.complete()
|
|
self.assertTrue(len(self.items) == 0)
|
|
|
|
class TestClientStreamMethodMsgPack(TestClientStreamMethod):
|
|
def get_connection(self):
|
|
return super().get_connection(msgpack=True)
|
|
|
|
class TestClientNosslStreamMethodMsgPack(TestClientStreamMethodMsgPack):
|
|
server_url = Urls.server_url_no_ssl
|
|
|
|
class TestClientNosslStreamMethod(TestClientStreamMethod):
|
|
server_url = Urls.server_url_no_ssl |