我正在尝试使用nose
和noseGAE
插件测试一些GAE模型。
教程展示了如何使用本教程中的webapp
框架设置来运行测试
http://farmdev.com/projects/nosegae/。但由于我使用的是django,我的main.py
是:
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
import django.core.handlers.wsgi
app = django.core.handlers.wsgi.WSGIHandler()
当我试图跑鼻子时:
$ nosetests --with-gae
我明白了:
Traceback (most recent call last):
File "c:\Python27\Scripts\nosetests-script.py", line 8, in <module>
load_entry_point('nose==1.2.1', 'console_scripts', 'nosetests')()
File "C:\Python27\lib\site-packages\nose-1.2.1-py2.7.egg\nose\core.py", line 118, in __init__
**extra_args)
File "C:\Python27\lib\unittest\main.py", line 94, in __init__
self.parseArgs(argv)
File "C:\Python27\lib\site-packages\nose-1.2.1-py2.7.egg\nose\core.py", line 135, in parseArgs
self.config.configure(argv, doc=self.usage())
File "C:\Python27\lib\site-packages\nose-1.2.1-py2.7.egg\nose\config.py", line 338, in configure
self.plugins.configure(options, self)
File "C:\Python27\lib\site-packages\nose-1.2.1-py2.7.egg\nose\plugins\manager.py", line 284, in configure
cfg(options, config)
File "C:\Python27\lib\site-packages\nose-1.2.1-py2.7.egg\nose\plugins\manager.py", line 99, in __call__
return self.call(*arg, **kw)
File "C:\Python27\lib\site-packages\nose-1.2.1-py2.7.egg\nose\plugins\manager.py", line 167, in simple
result = meth(*arg, **kw)
File "build\bdist.win32\egg\nosegae.py", line 80, in configure
ImportError: No module named dev_appserver
我认为这是因为django依赖,然后我尝试运行单个文件:
import unittest
from google.appengine.ext import testbed
class TestServicios(unittest.TestCase):
def setUP(self):
self.testbed = testbed.Testbed()
self.testbed.activate()
self.testbed.init_datastore_v3_stub()
def tearDown(self):
self.testbed.deactivate()
if __name__ == '__main__':
unittest.main()
然后:
$ python test_models.py
和
Traceback (most recent call last):
File "test_models.py", line 2, in <module>
from google.appengine.ext import testbed
ImportError: No module named google.appengine.ext
GAE信息 发布:1.7.3 runtime:python27
有人知道这里发生了什么吗?感谢。
答案 0 :(得分:2)
我推荐这个documentation。它显示了如何编写testrunner.py来加载测试类的示例,因此您可以拥有一个迷你测试框架。具体来说,您正在寻找以下代码:
sys.path.insert(0, sdk_path)
import dev_appserver
dev_appserver.fix_sys_path()
sdk_path是您的google_appengine sdk所在的位置。例如,它可能是linux上的/ usr / local / google_appengine。
答案 1 :(得分:1)
如果你正在使用django,我建议使用django测试基础设施而不是使用它。