mirror of
				https://github.com/home-assistant/core.git
				synced 2025-10-31 22:49:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Tests for the EnergyZero integration."""
 | |
| 
 | |
| from unittest.mock import MagicMock, patch
 | |
| 
 | |
| from energyzero import EnergyZeroConnectionError
 | |
| import pytest
 | |
| 
 | |
| from homeassistant.config_entries import ConfigEntryState
 | |
| from homeassistant.core import HomeAssistant
 | |
| 
 | |
| from tests.common import MockConfigEntry
 | |
| 
 | |
| 
 | |
| @pytest.mark.usefixtures("mock_energyzero")
 | |
| async def test_load_unload_config_entry(
 | |
|     hass: HomeAssistant, mock_config_entry: MockConfigEntry
 | |
| ) -> None:
 | |
|     """Test the EnergyZero configuration entry loading/unloading."""
 | |
|     mock_config_entry.add_to_hass(hass)
 | |
|     await hass.config_entries.async_setup(mock_config_entry.entry_id)
 | |
|     await hass.async_block_till_done()
 | |
| 
 | |
|     assert mock_config_entry.state is ConfigEntryState.LOADED
 | |
| 
 | |
|     await hass.config_entries.async_unload(mock_config_entry.entry_id)
 | |
|     await hass.async_block_till_done()
 | |
| 
 | |
|     assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
 | |
| 
 | |
| 
 | |
| @patch(
 | |
|     "homeassistant.components.energyzero.coordinator.EnergyZero._request",
 | |
|     side_effect=EnergyZeroConnectionError,
 | |
| )
 | |
| async def test_config_flow_entry_not_ready(
 | |
|     mock_request: MagicMock,
 | |
|     hass: HomeAssistant,
 | |
|     mock_config_entry: MockConfigEntry,
 | |
| ) -> None:
 | |
|     """Test the EnergyZero configuration entry not ready."""
 | |
|     mock_config_entry.add_to_hass(hass)
 | |
|     await hass.config_entries.async_setup(mock_config_entry.entry_id)
 | |
|     await hass.async_block_till_done()
 | |
| 
 | |
|     assert mock_request.call_count == 1
 | |
|     assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
 | 
