ずっと愛読しておりましたが、投稿は初めてです。
わかりました。Flask でデモ アプリケーションを単体テストしようとしていますが、何が間違っているのかわかりません。
これらはmanager.pyというファイル内の私の「ルート」です:
@app.route('/')
@app.route('/index')
def hello():
return render_template('base.html')
@app.route('/hello/<username>')
def hello_username(username):
return "Hello %s" % username
最初のルートでは、base.html テンプレートをロードして「hi」メッセージをレンダリングします。これは単体テストで機能しますが、2 番目のルートではアサーション エラーが発生します。
これは私のテストファイルmanage_test.pyです:
class ManagerTestCase(unittest.TestCase):
def setUp(self):
self.app = app.test_client()
def t_username(self, username):
return self.app.post('/hello/<username>', follow_redirects=True)
def test_username(self):
rv = self.t_username('alberto')
assert "Hello alberto" in rv.data
def test_empty_db(self):
rv = self.app.get('/')
assert 'hi' in rv.data
これは、単体テストの実行からの出力です。
.F
======================================================================
FAIL: test_username (tests.manage_tests.ManagerTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/albertogg/Dropbox/code/Python/flask-bootstrap/tests/manage_tests.py", line 15, in test_username
assert "Hello alberto" in rv.data
AssertionError
----------------------------------------------------------------------
Ran 2 tests in 0.015s
FAILED (failures=1)
あなたたちが私を助けることができるかどうか知りたいです!私は何が間違っているか、欠けていますか?
編集
私はこれをしました、そしてそれは働いています
class ManagerTestCase(unittest.TestCase):
def setUp(self):
self.app = app.test_client()
def t_username(self, username):
return self.app.get('/hello/%s' % (username), follow_redirects=True')
# either that or the Advanced string formatting from the answer are working.
def test_username(self):
rv = self.t_username('alberto')
assert "Hello alberto" in rv.data
def test_empty_db(self):
rv = self.app.get('/')
assert 'hi' in rv.data