gpt4 book ai didi

bdd - 使用 Behave BDD 测试 Pylons 服务器 - 如何启动和使用服务器?

转载 作者:行者123 更新时间:2023-12-05 08:01:29 31 4
gpt4 key购买 nike

我整个星期都在四处寻找,无法全神贯注于如何让我们的 pylons 服务器实例启动以与 Behave BDD 一起使用。你们中的任何人都可以指出我的例子或提供您自己的例子吗?这是我正在处理的内容:

来自Tutorial Behave 文档站点上的页面,启动一个简单的服务器并使用 selenium,这是他们用于 Behave 的 features/environment.py 的示例代码:

import threading
from wsgiref import simple_server
from selenium import webdriver
from my_application import model
from my_application import web_app

def before_all(context):
context.server = simple_server.WSGIServer(('', 8000))
context.server.set_app(web_app.main(environment='test'))
context.thread = threading.Thread(target=context.server.serve_forever)
context.thread.start()
context.browser = webdriver.Chrome()

def after_all(context):
context.server.shutdown()
context.thread.join()
context.browser.quit()

def before_feature(context, feature):
model.init(environment='test')

这是一个开始,但我不知道如何将其与我们的“pylowiki”风格的 Pylons 的启动方式结合起来。我发现另一个例子可能会提供更好的线索,它是 here .在这个例子中,我假设我会用“context”替换“world”,但除此之外,这个例子中服务器的启动方式与我们自己的 environment.py 启动方式不同。 我认为可能方便的最后一件事是包含我们当前环境设置中的代码:

pylowiki/config/environment.py

# -*- coding: utf-8 -*-
"""Pylons environment configuration"""
import os

from mako.lookup import TemplateLookup
from pylons import config
from pylons.error import handle_mako_error
from sqlalchemy import engine_from_config

import pylowiki.lib.app_globals as app_globals
import pylowiki.lib.helpers
from pylowiki.config.routing import make_map
from pylowiki.model import init_model


def load_environment(global_conf, app_conf):
"""Configure the Pylons environment via the ``pylons.config``
object
"""
# Pylons paths
root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
paths = dict(root=root,
controllers=os.path.join(root, 'controllers'),
static_files=os.path.join(root, 'public'),
templates=[os.path.join(root, 'templates')])

# Initialize config with the basic options
config.init_app(global_conf, app_conf, package='pylowiki', paths=paths)

config['routes.map'] = make_map()
config['pylons.app_globals'] = app_globals.Globals()
config['pylons.h'] = pylowiki.lib.helpers

# Create the Mako TemplateLookup, with the default auto-escaping
config['pylons.app_globals'].mako_lookup = TemplateLookup(
directories=paths['templates'],
error_handler=handle_mako_error,
module_directory=os.path.join(app_conf['cache_dir'], 'templates'),
input_encoding='utf-8', output_encoding='utf-8', default_filters=['escape'],
imports=['from webhelpers.html import escape'])

# Setup the SQLAlchemy database engine
engine = engine_from_config(config, 'sqlalchemy.')
init_model(engine)

# CONFIGURATION OPTIONS HERE (note: all config options will override
# any Pylons config options)

最佳答案

行为文档说您至少需要在功能文件夹中使用 environment.py,并相应地执行文件夹

https://behave.readthedocs.io/en/latest/gherkin.html#controlling-your-test-run-with-tags

关于bdd - 使用 Behave BDD 测试 Pylons 服务器 - 如何启动和使用服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13750642/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com