本文整理汇总了Python中djblets.integrations.manager.IntegrationManager.is_expired方法的典型用法代码示例。如果您正苦于以下问题:Python IntegrationManager.is_expired方法的具体用法?Python IntegrationManager.is_expired怎么用?Python IntegrationManager.is_expired使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类djblets.integrations.manager.IntegrationManager
的用法示例。
在下文中一共展示了IntegrationManager.is_expired方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_is_expired_after_config_deleted
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_is_expired_after_config_deleted(self):
"""Testing IntegrationManager.is_expired after config deleted"""
manager = IntegrationManager(IntegrationConfig)
self.assertFalse(manager.is_expired())
post_delete.send(sender=IntegrationConfig)
self.assertTrue(manager.is_expired())
示例2: test_check_expired_when_not_expired
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_check_expired_when_not_expired(self):
"""Testing IntegrationManager.check_expired when not expired"""
manager = IntegrationManager(IntegrationConfig)
# Cache some state.
integration = manager.register_integration_class(DummyIntegration1)
integration.create_config(enabled=True, save=True)
manager.get_integration_configs(DummyIntegration1)
# Make sure the integration isn't enabled. This would be because we
# haven't refreshed yet.
self.assertFalse(integration.enabled)
self.assertNotEqual(manager._integration_configs, {})
# Fake having the latest state.
manager._needs_recalc = False
# Check expired state, without actually expiring it.
self.assertFalse(manager.is_expired())
manager.check_expired()
# Make sure state has not changed.
self.assertFalse(manager.is_expired())
self.assertFalse(integration.enabled)
self.assertNotEqual(manager._integration_configs, {})
示例3: test_check_expired_when_expired
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_check_expired_when_expired(self):
"""Testing IntegrationManager.check_expired when expired"""
manager = IntegrationManager(IntegrationConfig)
# Cache some state.
integration1 = manager.register_integration_class(DummyIntegration1)
integration1.create_config(enabled=True, save=True)
manager.get_integration_configs(DummyIntegration1)
integration2 = manager.register_integration_class(DummyIntegration2)
manager.get_integration_configs(DummyIntegration1)
# Make sure the integration isn't enabled. This would be because we
# haven't refreshed yet.
self.assertFalse(integration1.enabled)
self.assertFalse(integration2.enabled)
self.assertNotEqual(manager._integration_configs, {})
# Check expired state.
self.assertTrue(manager.is_expired())
manager.check_expired()
# Make sure state has been updated and caches cleared.
self.assertFalse(manager.is_expired())
self.assertTrue(integration1.enabled)
self.assertFalse(integration2.enabled)
self.assertEqual(manager._integration_configs, {})
示例4: test_is_expired_after_other_process_updates
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_is_expired_after_other_process_updates(self):
"""Testing IntegrationManager.is_expired after another process updates
the configuration state
"""
manager = IntegrationManager(IntegrationConfig)
self.assertFalse(manager.is_expired())
gen_sync = GenerationSynchronizer(manager._gen_sync.cache_key, normalize_cache_key=False)
gen_sync.mark_updated()
self.assertTrue(manager.is_expired())
示例5: test_shutdown
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_shutdown(self):
"""Testing IntegrationManager.shutdown"""
manager = IntegrationManager(IntegrationConfig)
instance = manager.register_integration_class(DummyIntegration1)
instance.enable_integration()
self.assertTrue(instance.enabled)
self.assertNotEqual(manager._integration_classes, {})
self.assertNotEqual(manager._integration_instances, {})
self.assertTrue(manager.is_expired())
manager.shutdown()
self.assertFalse(instance.enabled)
self.assertEqual(manager._integration_classes, {})
self.assertEqual(manager._integration_instances, {})
self.assertFalse(manager.is_expired())
示例6: test_is_expired_after_registration
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_is_expired_after_registration(self):
"""Testing IntegrationManager.is_expired after new registration"""
manager = IntegrationManager(IntegrationConfig)
manager.register_integration_class(DummyIntegration1)
self.assertTrue(manager.is_expired())
示例7: test_is_expired_new_instance
# 需要导入模块: from djblets.integrations.manager import IntegrationManager [as 别名]
# 或者: from djblets.integrations.manager.IntegrationManager import is_expired [as 别名]
def test_is_expired_new_instance(self):
"""Testing IntegrationManager.is_expired on a new instance"""
manager = IntegrationManager(IntegrationConfig)
self.assertFalse(manager.is_expired())