当前位置: 首页>>代码示例>>Python>>正文


Python MockConfigEntry.version方法代码示例

本文整理汇总了Python中tests.common.MockConfigEntry.version方法的典型用法代码示例。如果您正苦于以下问题:Python MockConfigEntry.version方法的具体用法?Python MockConfigEntry.version怎么用?Python MockConfigEntry.version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tests.common.MockConfigEntry的用法示例。


在下文中一共展示了MockConfigEntry.version方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_call_async_migrate_entry_failure_not_supported

# 需要导入模块: from tests.common import MockConfigEntry [as 别名]
# 或者: from tests.common.MockConfigEntry import version [as 别名]
async def test_call_async_migrate_entry_failure_not_supported(hass):
    """Test migration fails if async_migrate_entry not implemented."""
    entry = MockConfigEntry(domain='comp')
    entry.version = 2
    entry.add_to_hass(hass)

    mock_setup_entry = MagicMock(return_value=mock_coro(True))

    loader.set_component(
        hass, 'comp',
        MockModule('comp', async_setup_entry=mock_setup_entry))

    result = await async_setup_component(hass, 'comp', {})
    assert result
    assert len(mock_setup_entry.mock_calls) == 0
    assert entry.state == config_entries.ENTRY_STATE_MIGRATION_ERROR
开发者ID:boced66,项目名称:home-assistant,代码行数:18,代码来源:test_config_entries.py

示例2: test_call_async_migrate_entry

# 需要导入模块: from tests.common import MockConfigEntry [as 别名]
# 或者: from tests.common.MockConfigEntry import version [as 别名]
async def test_call_async_migrate_entry(hass):
    """Test we call <component>.async_migrate_entry when version mismatch."""
    entry = MockConfigEntry(domain='comp')
    entry.version = 2
    entry.add_to_hass(hass)

    mock_migrate_entry = MagicMock(return_value=mock_coro(True))
    mock_setup_entry = MagicMock(return_value=mock_coro(True))

    loader.set_component(
        hass, 'comp',
        MockModule('comp', async_setup_entry=mock_setup_entry,
                   async_migrate_entry=mock_migrate_entry))

    result = await async_setup_component(hass, 'comp', {})
    assert result
    assert len(mock_migrate_entry.mock_calls) == 1
    assert len(mock_setup_entry.mock_calls) == 1
    assert entry.state == config_entries.ENTRY_STATE_LOADED
开发者ID:boced66,项目名称:home-assistant,代码行数:21,代码来源:test_config_entries.py


注:本文中的tests.common.MockConfigEntry.version方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。