Recipesのbottleフレームワークをフォローしています。ボトルサーバーを稼働していないテストボトルアプリ
私はエラーの下になったnosetests test_mywebapp.py
を実行すると、私はコード
#filename: mywebapp.py
from bottle import Bottle, run, request
app = Bottle()
@app.get('/hello')
def hello():
return "Hello " + request.get_header('name')
if __name__ == '__main__':
run(app, host='localhost', port=80)
#filename: test_mywebapp.py
from webtest import TestApp
import mywebapp
def test_functional_hello_world():
app = TestApp(mywebapp.app)
assert app.get('/hello').status_code == 200
assert app.get('/hello', headers=dict(name='World!')).text == 'Hello World!'
と機能テストケースの下にしてみてください。 TestApp
言及上
nosetests test_mywebapp.py
E
======================================================================
ERROR: test_mywebapp.test_functional_hello_world
----------------------------------------------------------------------
Traceback (most recent call last):
File "/private/tmp/venv/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/private/tmp/test_mywebapp.py", line 6, in test_functional_hello_world
assert app.get('/hello').status_code == 200
File "/private/tmp/venv/lib/python2.7/site-packages/webtest/app.py", line 327, in get
expect_errors=expect_errors)
File "/private/tmp/venv/lib/python2.7/site-packages/webtest/app.py", line 636, in do_request
self._check_status(status, res)
File "/private/tmp/venv/lib/python2.7/site-packages/webtest/app.py", line 668, in _check_status
res)
AppError: Bad response: 500 Internal Server Error (not 200 OK or 3xx redirect for http://localhost/hello)
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
<title>Error: 500 Internal Server Error</title>
<style type="text/css">
html {background-color: #eee; font-family: sans;}
body {background-color: #fff; border: 1px solid #ddd;
padding: 15px; margin: 15px;}
pre {background-color: #eee; border: 1px solid #ddd; padding: 5px;}
</style>
</head>
<body>
<h1>Error: 500 Internal Server Error</h1>
<p>Sorry, the requested URL <tt>'http://localhost:80/hello'</tt>
caused an error:</p>
<pre>Internal Server Error</pre>
</body>
</html>
----------------------------------------------------------------------
Ran 1 test in 0.008s
FAILED (errors=1)
WSGIアプリケーションに設定が必要な場合は、テストで手動で を設定する必要があります。
どうすれば設定できますか?
これは、ボトルサーバーを実行する必要があります、サーバーを実行せずにボトルのアプリをテストする方法はありますか?
「ボトルサーバーを実行する必要がありますか?それはしないでください。 –
@ ron.rothman、このUTを実行すると、エラーが発生し、 'http:// localhost/login'に接続できません:( – Nilesh
何が起きているかを見るためにトレースバックを追加してください。 –