本文整理汇总了Python中anyblok.registry.RegistryManager.init_blok方法的典型用法代码示例。如果您正苦于以下问题:Python RegistryManager.init_blok方法的具体用法?Python RegistryManager.init_blok怎么用?Python RegistryManager.init_blok使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类anyblok.registry.RegistryManager
的用法示例。
在下文中一共展示了RegistryManager.init_blok方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: imports
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def imports(self):
""" Imports modules and / or packages listed in the blok path"""
from anyblok.blok import BlokManager
from anyblok.registry import RegistryManager
RegistryManager.init_blok(self.blok)
b = BlokManager.get(self.blok)
b.import_declaration_module()
示例2: test_init_blok
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def test_init_blok(self):
RegistryManager.init_blok('newblok')
is_exist = 'newblok' in RegistryManager.loaded_bloks
self.assertEqual(is_exist, True)
for core in ('Base', 'SqlBase', 'SqlViewBase', 'Session', 'Query',
'InstrumentedList'):
self.assertIn(
core, RegistryManager.loaded_bloks['newblok']['Core'].keys())
self.assertEqual(
RegistryManager.loaded_bloks['newblok']['Core'][core], [])
self.assertEqual(RegistryManager.loaded_bloks['newblok']['Model'],
{'registry_names': []})
self.assertEqual(RegistryManager.loaded_bloks['newblok']['Mixin'],
{'registry_names': []})
示例3: test_add_entry
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def test_add_entry(self):
RegistryManager.declare_entry('Other')
RegistryManager.init_blok('newblok')
is_exist = 'newblok' in RegistryManager.loaded_bloks
self.assertEqual(is_exist, True)
for entry in ('Base', 'SqlBase', 'SqlViewBase', 'Session', 'Query',
'InstrumentedList'):
self.assertEqual(
RegistryManager.loaded_bloks['newblok']['Core'][entry], [])
self.assertEqual(RegistryManager.loaded_bloks['newblok']['Model'],
{'registry_names': []})
self.assertEqual(RegistryManager.loaded_bloks['newblok']['Mixin'],
{'registry_names': []})
self.assertEqual(RegistryManager.loaded_bloks['newblok']['Other'],
{'registry_names': []})
示例4: reload
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def reload(self):
""" Reload all the imports for this module
:exception: ImportManagerException
"""
from anyblok.blok import BlokManager
from anyblok.registry import RegistryManager
from anyblok.environment import EnvironmentManager
b = BlokManager.get(self.blok)
if not hasattr(b, 'reload_declaration_module'):
return
try:
EnvironmentManager.set('reload', True)
RegistryManager.init_blok(self.blok)
b.reload_declaration_module(reload_module)
finally:
EnvironmentManager.set('reload', False)
示例5: test_add_callback
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def test_add_callback(self):
def callback():
pass
RegistryManager.declare_entry('Other', assemble_callback=callback,
initialize_callback=callback)
hasModel = 'Model' in RegistryManager.declared_entries
hasMixin = 'Mixin' in RegistryManager.declared_entries
hasOther = 'Other' in RegistryManager.declared_entries
self.assertEqual(hasModel, True)
self.assertEqual(hasMixin, True)
self.assertEqual(hasOther, True)
cb = Model.assemble_callback
hasModelCb = cb == RegistryManager.callback_assemble_entries['Model']
cb = callback
hasOtherCb = cb == RegistryManager.callback_assemble_entries['Other']
self.assertEqual(hasModelCb, True)
self.assertEqual(hasOtherCb, True)
cb = Model.initialize_callback
hasModelCb = cb == RegistryManager.callback_initialize_entries['Model']
cb = callback
hasOtherCb = cb == RegistryManager.callback_initialize_entries['Other']
self.assertEqual(hasModelCb, True)
self.assertEqual(hasOtherCb, True)
RegistryManager.init_blok('newblok')
is_exist = 'newblok' in RegistryManager.loaded_bloks
self.assertEqual(is_exist, True)
hasCore = 'Core' in RegistryManager.loaded_bloks['newblok']
hasModel = 'Model' in RegistryManager.loaded_bloks['newblok']
hasMixin = 'Mixin' in RegistryManager.loaded_bloks['newblok']
hasOther = 'Other' in RegistryManager.loaded_bloks['newblok']
self.assertEqual(hasCore, True)
self.assertEqual(hasModel, True)
self.assertEqual(hasMixin, True)
self.assertEqual(hasOther, True)
示例6: test_global_property
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def test_global_property(self):
RegistryManager.declare_entry('Other')
blok = 'newblok'
RegistryManager.init_blok(blok)
try:
oldblok = EnvironmentManager.get('current_blok')
EnvironmentManager.set('current_blok', blok)
self.assertEqual(RegistryManager.has_blok_property('myproperty'),
False)
RegistryManager.add_or_replace_blok_property('myproperty', 2)
self.assertEqual(
RegistryManager.has_blok_property('myproperty'), True)
self.assertEqual(
RegistryManager.get_blok_property('myproperty'), 2)
RegistryManager.add_or_replace_blok_property('myproperty', 3)
self.assertEqual(
RegistryManager.get_blok_property('myproperty'), 3)
RegistryManager.remove_blok_property('myproperty')
self.assertEqual(RegistryManager.has_blok_property('myproperty'),
False)
finally:
EnvironmentManager.set('current_blok', oldblok)
示例7: setUpClass
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def setUpClass(cls):
super(TestRegistryEntry, cls).setUpClass()
RegistryManager.declare_entry('Other')
RegistryManager.init_blok('testEntry')
EnvironmentManager.set('current_blok', 'testEntry')
示例8: setUpClass
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def setUpClass(cls):
super(TestCoreInterfaceMixin, cls).setUpClass()
RegistryManager.init_blok('testMixin')
EnvironmentManager.set('current_blok', 'testMixin')
示例9: setUpClass
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def setUpClass(cls):
super(TestRegistryCore, cls).setUpClass()
RegistryManager.declare_core('test')
RegistryManager.init_blok('testCore')
EnvironmentManager.set('current_blok', 'testCore')
示例10: setUpClass
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def setUpClass(cls):
super(TestCoreInterfaceCoreBase, cls).setUpClass()
RegistryManager.init_blok('testCore' + cls._corename)
EnvironmentManager.set('current_blok', 'testCore' + cls._corename)
示例11: setUpClass
# 需要导入模块: from anyblok.registry import RegistryManager [as 别名]
# 或者: from anyblok.registry.RegistryManager import init_blok [as 别名]
def setUpClass(cls):
super(TestModel, cls).setUpClass()
RegistryManager.init_blok('testModel')
EnvironmentManager.set('current_blok', 'testModel')