test them consumers, boy
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-04-01 02:23:38 +02:00
parent 1e8e3bd86c
commit 64f7d9b83e

14
test.py
View File

@ -58,7 +58,7 @@ def test_send_message(mocker):
def test_discoveravailableconsumers(httpserver):
httpserver.expect_oneshot_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
@ -74,7 +74,7 @@ def test_discoveravailableconsumers(httpserver):
def test_isconsumeravailable(httpserver):
httpserver.expect_oneshot_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
@ -102,7 +102,7 @@ def test_isconsumeravailable(httpserver):
def test_checkconsumer(httpserver):
httpserver.expect_oneshot_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
@ -138,7 +138,7 @@ def test_setcurrentconsumer():
def test_learnconsumerlist(httpserver):
httpserver.expect_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
@ -166,7 +166,7 @@ def test_getcurrentconsumer(mocker):
def test_checkcurrentconsumer(httpserver):
httpserver.expect_oneshot_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
@ -184,7 +184,7 @@ def test_checkcurrentconsumer(httpserver):
def test_updateconsumer(httpserver):
httpserver.expect_oneshot_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
@ -203,7 +203,7 @@ def test_updateconsumer(httpserver):
def test_updateconsumerlist(httpserver):
httpserver.expect_oneshot_request(
uri="/consumer",
uri="/consumers",
method='GET',
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])