craftbeerpi4-pione/tests/test_app.py

79 lines
1.9 KiB
Python
Raw Normal View History

import aiohttp
2018-11-01 19:50:04 +01:00
from aiohttp.test_utils import AioHTTPTestCase, unittest_run_loop
2018-11-01 21:25:42 +01:00
from core.craftbeerpi import CraftBeerPi
2018-11-01 19:50:04 +01:00
class MyAppTestCase(AioHTTPTestCase):
async def get_application(self):
self.cbpi = CraftBeerPi()
2018-11-16 20:35:59 +01:00
self.cbpi.setup()
await self.cbpi.init_serivces()
2018-11-01 19:50:04 +01:00
return self.cbpi.app
@unittest_run_loop
async def test_example(self):
resp = await self.client.post(path="/login", data={"username": "cbpi", "password": "123"})
print("resp.status",resp.status)
assert resp.status == 200
2018-11-16 20:35:59 +01:00
resp = await self.client.request("GET", "/actor/1/on")
print("resp.status", resp.status)
2018-11-16 20:35:59 +01:00
assert resp.status == 204
i = await self.cbpi.actor.get_one(1)
assert i.instance.state is True
resp = await self.client.request("GET", "/actor/1/off")
assert resp.status == 204
i = await self.cbpi.actor.get_one(1)
assert i.instance.state is False
resp = await self.client.request("GET", "/actor/1/toggle")
assert resp.status == 204
i = await self.cbpi.actor.get_one(1)
assert i.instance.state is True
resp = await self.client.request("GET", "/actor/1/toggle")
assert resp.status == 204
i = await self.cbpi.actor.get_one(1)
assert i.instance.state is False
2018-11-18 15:40:10 +01:00
i = await self.cbpi.actor.get_all()
assert len(i) == 2
2018-11-01 19:50:04 +01:00
#ws = await self.client.ws_connect("/ws");
#await ws.send_str(json.dumps({"key": "test"}))
'''
@unittest_run_loop
async def test_example2(self):
print("TEST2222")
print("CLIENT ###### ", self.client)
ws = await self.client.ws_connect("/ws");
await ws.send_str(json.dumps({"topic": "test"}))
#resp = await ws.receive()
#print("##### REPSONE", resp)
assert "Manuel" in await self.cbpi.actor.get_name(), "OH NOW"
await self.client.close()
'''