mirror of
https://github.com/onyx-and-iris/obsws-python.git
synced 2024-11-22 04:40:53 +00:00
check req_name and code
for OBSSDKRequestError class
This commit is contained in:
parent
f88e8ee3a6
commit
013cf15024
@ -7,7 +7,7 @@ from tests import req_cl
|
||||
class TestErrors:
|
||||
__test__ = True
|
||||
|
||||
def test_it_raises_an_obssdk_error_on_bad_connection_info(self):
|
||||
def test_it_raises_an_obssdk_error_on_incorrect_password(self):
|
||||
bad_conn = {"host": "localhost", "port": 4455, "password": "incorrectpassword"}
|
||||
with pytest.raises(
|
||||
obsws.error.OBSSDKError,
|
||||
@ -27,5 +27,9 @@ class TestErrors:
|
||||
with pytest.raises(
|
||||
obsws.error.OBSSDKRequestError,
|
||||
match="Request SetCurrentProgramScene returned code 600. With message: No source was found by the name of `invalid`.",
|
||||
):
|
||||
) as exc_info:
|
||||
req_cl.set_current_program_scene("invalid")
|
||||
|
||||
e = exc_info.value
|
||||
assert e.req_name == "SetCurrentProgramScene"
|
||||
assert e.code == 600
|
||||
|
Loading…
Reference in New Issue
Block a user