作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Falcon framework 开发了一个应用程序在 Python 语言中。我开发了几个 API,现在我想执行单元测试,所以我使用了 unittest 包,但是我无法测试我的 API,因为它没有通过 unittest。
对于测试,我引用这个 doc
我试图模拟 get 方法,但它问我参数。我也无法执行任何放置或后测试。
这是我执行单元测试的代码
主文件
from app.api.v1 import scheduler
self.add_route('/v1/schedulers', scheduler.SchedulerCollection())
def __init__(self):
db = redis_db.RedisStorageEngine()
self.r = db.connection()
"""
Handle for endpoint: /v1/schedulers
"""
#some code here
#@falcon.before(auth_required)
def on_get(self, req, res):
#some code here
import sys, os
import unittest
import json
from falcon import testing
from app.api.v1 import scheduler
class SchedulerTestCase(testing.TestCase):
def setUp(self):
super(SchedulerTestCase, self).setUp()
self.app = scheduler.SchedulerCollection.on_get
class TestMyApp(SchedulerTestCase):
def test_get_schedulers(self):
doc = {u'message': u'Hello world!'}
result = self.simulate_get('/v1/schedulers')
result = self.simulate_get('/v1/schedulers')
self.assertEqual(result.json, doc)
if __name__ == '__main__':
unittest.main()
Traceback (most recent call last):
File "tests/scheduler_test.py", line 17, in setUp
self.app = scheduler.SchedulerCollection().on_get(self.api_class)
TypeError: on_get() takes exactly 3 arguments (2 given)
最佳答案
首先,self.app
应该使用您的猎鹰应用程序进行初始化,而不是您正在测试的方法。其次,simulate_get
是 self.app
的一个属性(不是自己)。
查看更多信息 this answer .
关于python-2.7 - 如何为 Falcon API python 执行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44435946/
我是一名优秀的程序员,十分优秀!