私は 1 週間中探し回っていましたが、Behave BDD で使用するために pylons サーバーのインスタンスを開始する方法について頭を悩ませることはできません。誰かが私に例を挙げたり、あなた自身の例を提供したりできますか? これが私が取り組んでいるものです:
Behave doc サイトのチュートリアルページから、単純なサーバーを起動し、セレンを使用して、これは 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です。この例では、"world" を "context" に置き換えると想定していますが、それを除けば、この例でのサーバーの起動方法は、独自の 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)