利用 nose 测试 web.py 程序

 

#index.py   ----    web.py主文件
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import web

urls = ("/.*", "hello")
app = web.application(urls, globals())

class hello:
    def GET(self):
        return 'Hello, world!'

app.wsgifunc()

 

#nose_test.py ---- 测试文件脚本
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import index

app = None

class TestIndex(object):
    def setUp(self):
        print 'init in class'
        global app
        self.app = app
    def test_index(self):
        print 'test in class'
        r = self.app.request('/')
        assert r.status == '200 OK'

def setUp():
    print 'init in func'
    global app
    app = index.app

def test_index():
    print 'test in func'
    global app
    r = app.request('/')
    assert r.status == '200 OK'

 

测试指令

nosetests nose_test.py -v

-v:查看测试详细信息
-s:显示脚本print信息,默认是print的信息是不输出的
nose会查找脚本中 test_*命名的函数和Test_*命名的类
运行测试脚本时,首先会运行脚本func级别的setUp()函数,
这时候初始化web.py的app
之后会执行class级别的setUp(self)函数,
这时候初始self的app变量为之前初始化的app
#这时候类的__init__()函数是不起作用的
更详细的测试用例可以在test函数中编写,
数据库之类的初始化可以再setUp()函数中编写
如果需要在执行完毕清理资源可以使用tearDown()函数

# 来源:茶叶蛋

在微博上关注: 新浪, 腾讯   投稿

最新招聘

  • [北京] Python软件开发工程师 - 飞速网(Rayfile)
  • [北京] 研发工程师 - 友好互动公司
  • [北京] 网易(北京)网站部招聘系统运维开发工程师 - 网易
  • [北京] 网易(北京)网站部招聘系统运维管理工程师 - 网易
  • [北京] 网易(北京)网站部招聘视频编解码开发工程师 - 网易

更多>>

你可能感兴趣的:(测试,利用,nose)