本文整理汇总了Python中tg.configuration.AppConfig.setup_sqlalchemy方法的典型用法代码示例。如果您正苦于以下问题:Python AppConfig.setup_sqlalchemy方法的具体用法?Python AppConfig.setup_sqlalchemy怎么用?Python AppConfig.setup_sqlalchemy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tg.configuration.AppConfig
的用法示例。
在下文中一共展示了AppConfig.setup_sqlalchemy方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setup_sqlalchemy
# 需要导入模块: from tg.configuration import AppConfig [as 别名]
# 或者: from tg.configuration.AppConfig import setup_sqlalchemy [as 别名]
def setup_sqlalchemy(self):
# On revient au comportement par défaut de TG
AppConfig.setup_sqlalchemy(self)
示例2: setup
# 需要导入模块: from tg.configuration import AppConfig [as 别名]
# 或者: from tg.configuration.AppConfig import setup_sqlalchemy [as 别名]
class TestAppConfig:
def setup(self):
self.config = AppConfig()
config['beaker.session.secret'] = 'some_secret'
def test_create(self):
pass
def test_setup_startup_and_shutdown_startup_callable(self):
def func():
a = 7
self.config.call_on_startup = [func]
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_callable_startup_with_exception(self):
def func():
raise Exception
self.config.call_on_startup = [func]
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_startup_not_callable(self):
self.config.call_on_startup = ['not callable']
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_shutdown_not_callable(self):
self.config.call_on_shutdown = ['not callable']
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_shutdown_callable(self):
def func():
a = 7
self.config.call_on_shutdown = [func]
self.config.setup_startup_and_shutdown()
assert (func, (), {}) in atexit._exithandlers
#this tests fails
def _test_setup_helpers_and_globals(self):
self.config.setup_helpers_and_globals()
def test_setup_sa_auth_backend(self):
self.config.setup_sa_auth_backend()
#def test_setup_chameleon_genshi_renderer(self):
# self.config.paths.templates = 'template_path'
# self.config.setup_chameleon_genshi_renderer()
def test_setup_genshi_renderer(self):
self.config.paths.templates = 'template_path'
self.config.setup_genshi_renderer()
def test_setup_jinja_renderer(self):
self.config.paths.templates = 'template_path'
self.config.setup_jinja_renderer()
def test_setup_mako_renderer(self):
self.config.paths.templates = ['template_path']
self.config.setup_mako_renderer(use_dotted_templatenames=True)
def test_setup_sqlalchemy(self):
config['sqlalchemy.url'] = 'sqlite://'
class Package:
class model:
@classmethod
def init_model(package, engine):
pass
self.config.package = Package()
self.config.setup_sqlalchemy()
def test_add_auth_middleware(self):
class Dummy:pass
self.config.sa_auth.dbsession = Dummy()
self.config.sa_auth.user_class = Dummy
self.config.sa_auth.group_class = Dummy
self.config.sa_auth.permission_class = Dummy
self.config.sa_auth.cookie_secret = 'dummy'
self.config.sa_auth.password_encryption_method = 'sha'
self.config.add_auth_middleware(None, None)
def test_add_static_file_middleware(self):
self.config.add_static_file_middleware(None)
示例3: setup
# 需要导入模块: from tg.configuration import AppConfig [as 别名]
# 或者: from tg.configuration.AppConfig import setup_sqlalchemy [as 别名]
class TestAppConfig:
def setup(self):
self.config = AppConfig()
# set up some required paths and config settings
# FIXME: these seem to be needed so that
# other tests don't suffer - but that's a nasty
# side-effect. setup for those tests actually needs
# fixing.
config['pylons.paths']['static_files'] = "test"
config["pylons.app_globals"] = Bunch()
config["use_sqlalchemy"] = False
config["global_conf"] = Bunch()
config["package"] = "test"
config["call_on_shutdown"] = "foo"
config["render_functions"] = Bunch()
config['beaker.session.secret'] = 'some_secret'
def test_create(self):
pass
def test_setup_startup_and_shutdown_startup_callable(self):
def func():
a = 7
self.config.call_on_startup = [func]
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_callable_startup_with_exception(self):
def func():
raise Exception
self.config.call_on_startup = [func]
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_startup_not_callable(self):
self.config.call_on_startup = ['not callable']
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_shutdown_not_callable(self):
self.config.call_on_shutdown = ['not callable']
self.config.setup_startup_and_shutdown()
def test_setup_startup_and_shutdown_shutdown_callable(self):
def func():
a = 7
self.config.call_on_shutdown = [func]
self.config.setup_startup_and_shutdown()
assert (func, (), {}) in atexit._exithandlers
#this tests fails
def _test_setup_helpers_and_globals(self):
self.config.setup_helpers_and_globals()
def test_setup_sa_auth_backend(self):
self.config.setup_sa_auth_backend()
def test_setup_chameleon_genshi_renderer(self):
self.config.paths.templates = 'template_path'
self.config.setup_chameleon_genshi_renderer()
def test_setup_genshi_renderer(self):
self.config.paths.templates = 'template_path'
self.config.setup_genshi_renderer()
def test_setup_jinja_renderer(self):
self.config.paths.templates = 'template_path'
self.config.setup_jinja_renderer()
def test_setup_mako_renderer(self):
self.config.paths.templates = ['template_path']
self.config.setup_mako_renderer(use_dotted_templatenames=True)
def test_setup_sqlalchemy(self):
config['sqlalchemy.url'] = 'sqlite://'
class Package:
class model:
@classmethod
def init_model(package, engine):
pass
self.config.package = Package()
self.config.setup_sqlalchemy()
def test_add_auth_middleware(self):
class Dummy:pass
self.config.sa_auth.dbsession = Dummy()
self.config.sa_auth.user_class = Dummy
self.config.sa_auth.group_class = Dummy
self.config.sa_auth.permission_class = Dummy
self.config.sa_auth.cookie_secret = 'dummy'
self.config.sa_auth.password_encryption_method = 'sha'
self.config.add_auth_middleware(None, None)
def test_add_static_file_middleware(self):
self.config.add_static_file_middleware(None)