mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
30 lines
749 B
Python
30 lines
749 B
Python
import asyncio
|
|
from aiohttp.test_utils import AioHTTPTestCase, unittest_run_loop
|
|
from core.craftbeerpi import CraftBeerPi
|
|
|
|
|
|
class KettleTestCase(AioHTTPTestCase):
|
|
|
|
|
|
async def get_application(self):
|
|
self.cbpi = CraftBeerPi()
|
|
self.cbpi.setup()
|
|
return self.cbpi.app
|
|
|
|
|
|
@unittest_run_loop
|
|
async def test_example(self):
|
|
result = await self.cbpi.kettle.toggle_automtic(1)
|
|
print("#### RESULT", result)
|
|
assert result[0] is True
|
|
print("FIRE")
|
|
|
|
|
|
await asyncio.sleep(1)
|
|
|
|
self.cbpi.bus.fire("actor/1/on", id=1)
|
|
|
|
|
|
await asyncio.sleep(5)
|
|
#assert await self.cbpi.kettle.toggle_automtic(1) is True
|
|
#assert await self.cbpi.kettle.toggle_automtic(99) is False
|