mirror of
				https://github.com/home-assistant/core.git
				synced 2025-10-31 14:39:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Tests for the LetPot integration."""
 | |
| 
 | |
| import datetime
 | |
| 
 | |
| from letpot.models import (
 | |
|     AuthenticationInfo,
 | |
|     LetPotDeviceErrors,
 | |
|     LetPotDeviceStatus,
 | |
|     TemperatureUnit,
 | |
| )
 | |
| 
 | |
| from homeassistant.core import HomeAssistant
 | |
| 
 | |
| from tests.common import MockConfigEntry
 | |
| 
 | |
| 
 | |
| async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
 | |
|     """Fixture for setting up the component."""
 | |
|     config_entry.add_to_hass(hass)
 | |
|     await hass.config_entries.async_setup(config_entry.entry_id)
 | |
|     await hass.async_block_till_done()
 | |
| 
 | |
| 
 | |
| AUTHENTICATION = AuthenticationInfo(
 | |
|     access_token="access_token",
 | |
|     access_token_expires=1738368000,  # 2025-02-01 00:00:00 GMT
 | |
|     refresh_token="refresh_token",
 | |
|     refresh_token_expires=1740441600,  # 2025-02-25 00:00:00 GMT
 | |
|     user_id="a1b2c3d4e5f6a1b2c3d4e5f6",
 | |
|     email="email@example.com",
 | |
| )
 | |
| 
 | |
| MAX_STATUS = LetPotDeviceStatus(
 | |
|     errors=LetPotDeviceErrors(low_water=True, low_nutrients=False, refill_error=False),
 | |
|     light_brightness=500,
 | |
|     light_mode=1,
 | |
|     light_schedule_end=datetime.time(18, 0),
 | |
|     light_schedule_start=datetime.time(8, 0),
 | |
|     online=True,
 | |
|     plant_days=1,
 | |
|     pump_mode=1,
 | |
|     pump_nutrient=None,
 | |
|     pump_status=0,
 | |
|     raw=[],  # Not used by integration, and it requires a real device to get
 | |
|     system_on=True,
 | |
|     system_sound=False,
 | |
|     temperature_unit=TemperatureUnit.CELSIUS,
 | |
|     temperature_value=18,
 | |
|     water_mode=1,
 | |
|     water_level=100,
 | |
| )
 | |
| 
 | |
| SE_STATUS = LetPotDeviceStatus(
 | |
|     errors=LetPotDeviceErrors(low_water=True, pump_malfunction=True),
 | |
|     light_brightness=500,
 | |
|     light_mode=1,
 | |
|     light_schedule_end=datetime.time(18, 0),
 | |
|     light_schedule_start=datetime.time(8, 0),
 | |
|     online=True,
 | |
|     plant_days=1,
 | |
|     pump_mode=1,
 | |
|     pump_nutrient=None,
 | |
|     pump_status=0,
 | |
|     raw=[],  # Not used by integration, and it requires a real device to get
 | |
|     system_on=True,
 | |
|     system_sound=False,
 | |
| )
 | 
