1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
# coding: utf-8
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# -------------------------------------------------------------------------
from typing import List, Any
import time
import pytest
from devtools_testutils import recorded_by_proxy
from testcase import (
WebpubsubClientTest,
WebpubsubClientPowerShellPreparer,
on_group_message,
TEST_RESULT,
)
from azure.messaging.webpubsubclient.models import (
OnGroupDataMessageArgs,
OpenClientError,
SendMessageError,
)
@pytest.mark.live_test_only
class TestWebpubsubClientSmoke(WebpubsubClientTest):
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_call_back_deadlock(self, webpubsubclient_connection_string):
client = self.create_client(connection_string=webpubsubclient_connection_string)
group_name = "test_call_back_deadlock"
def on_group_message(msg: OnGroupDataMessageArgs):
client.send_to_group(group_name, msg.data, "text", no_echo=True)
with client:
client.join_group(group_name)
client.subscribe("group-message", on_group_message)
client.send_to_group(group_name, "hello test_call_back_deadlock1", "text")
client.send_to_group(group_name, "hello test_call_back_deadlock2", "text")
client.send_to_group(group_name, "hello test_call_back_deadlock3", "text")
# sleep to make sure the callback has enough time to execute before close
time.sleep(1)
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_context_manager(self, webpubsubclient_connection_string):
client = self.create_client(connection_string=webpubsubclient_connection_string)
with client:
group_name = "test_context_manager"
client.join_group(group_name)
client.send_to_group(group_name, "test_context_manager", "text")
time.sleep(2.0)
assert client._sequence_id.sequence_id > 0
# test on_stop
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_on_stop(self, webpubsubclient_connection_string):
client = self.create_client(connection_string=webpubsubclient_connection_string)
def on_stop():
client.open()
with client:
# open client again after close
client.subscribe("stopped", on_stop)
time.sleep(0.1)
assert client.is_connected()
client.close()
time.sleep(1.0)
assert client.is_connected()
# remove stopped event and close again
client.unsubscribe("stopped", on_stop)
client.close()
time.sleep(1.0)
assert not client.is_connected()
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_duplicated_start(self, webpubsubclient_connection_string):
client = self.create_client(connection_string=webpubsubclient_connection_string)
with pytest.raises(OpenClientError):
with client:
client.open()
assert not client.is_connected()
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_duplicated_stop(self, webpubsubclient_connection_string):
client = self.create_client(connection_string=webpubsubclient_connection_string)
with client:
client.close()
assert not client.is_connected()
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_send_event(self, webpubsubclient_connection_string):
client = self.create_client(connection_string=webpubsubclient_connection_string, message_retry_total=0)
with client:
# please register event handler in azure portal before run this test
try:
client.send_event("event", "test_send_event", "text")
except SendMessageError as err:
assert err.error_detail.name == "InternalServerError"
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_rejoin_group(self, webpubsubclient_connection_string):
def _test(enable_auto_rejoin, test_group_name, assert_func):
client = self.create_client(
connection_string=webpubsubclient_connection_string,
auto_rejoin_groups=enable_auto_rejoin,
)
group_name = test_group_name
client.subscribe("group-message", on_group_message)
with client:
client.join_group(group_name)
with client:
time.sleep(1) # make sure rejoin group is called
client.send_to_group(group_name, group_name, "text")
time.sleep(1) # wait for on_group_message to be called
assert assert_func(test_group_name)
_test(
enable_auto_rejoin=True,
test_group_name="test_rejoin_group",
assert_func=lambda x: x in TEST_RESULT,
)
_test(
enable_auto_rejoin=False,
test_group_name="test_disable_rejoin_group",
assert_func=lambda x: x not in TEST_RESULT,
)
@WebpubsubClientPowerShellPreparer()
@recorded_by_proxy
def test_open_client_error(self):
client = self.create_client(
connection_string="Endpoint=https://myservice.webpubsub.azure.com;AccessKey=aaaaaaaaaaaaa;Version=1.0;",
)
start_time = time.time()
with pytest.raises(OpenClientError) as err:
with client:
pass
assert time.time() - start_time < client._start_timeout
assert "During the process, an error occurred" in str(err)
|