Chapter 11
在本章中, 学习了: 如何使用模块unittest 中的工具来为函数和类编写测试; 如何编写继承unittest.TestCase 的类, 以及如何编写测试方法, 以核实函数和类的行为符合预期; 如何使用方法 setUp() 来根据类高效地创建实例并设置其属性, 以便在类的所有测试方法中都可使用它们。
习题
Q 11-2 人口数量 :修改前面的函数, 使其包含第三个必不可少的形参population , 并返回一个格式为City, Country - population xxx 的字符串,如Santiago, Chile - population 5000000 。 运行test_cities.py, 确认测试test_city_country() 未通过。修改上述函数, 将形参population 设置为可选的。 再次运行test_cities.py, 确认测试test_city_country() 又通过了。
再编写一个名为test_city_country_population() 的测试, 核实可以使用类似于'santiago' 、 'chile' 和'population=5000000' 这样的值来调用这个函数。 再次运行test_cities.py, 确认测试test_city_country_population() 通过了。
知识点:测试函数
代码:
测试函数1:
#11-1
import unittest
from city_functions import get_formatted_location
class CityTestCase(unittest.TestCase):
'''测试city_function.py'''
def test_city_country(self):
formatted_location = get_formatted_location('beijing','China')
self.assertEqual(formatted_location,'Beijing,China')
unittest.main()
函数1:
def get_formatted_location(city,country,population):
info = city.title() +',' +country.title() + ' - population = ' + str(population)
return info:
运行结果1:
E
======================================================================
ERROR: test_city_country (__main__.CityTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:/Users/80703/PycharmProjects/hello/test_cities.py", line 11, in test_city_country
formatted_location = get_formatted_location('beijing','China')
TypeError: get_formatted_location() missing 1 required positional argument: 'population'
----------------------------------------------------------------------
Ran 1 test in 0.003s
FAILED (errors=1)
函数2:
def get_formatted_location(city,country,population=0):
if population == 0:
info = city.title() + ',' + country.title()
else:
info = city.title() +',' +country.title() + ' - population ' + str(population)
return info
运行结果2:
.
----------------------------------------------------------------------
Ran 1 test in 0.001s
OK
修改测试函数中
def test_city_country(self):
formatted_location = get_formatted_location('beijing','China',5000000)
self.assertEqual(formatted_location,'Beijing,China - population 5000000')
运行结果3:
.
----------------------------------------------------------------------
Ran 1 test in 0.001s
OK
Q11-3 雇员 : 编写一个名为Employee 的类, 其方法__init__() 接受名、 姓和年薪, 并将它们都存储在属性中。 编写一个名为give_raise() 的方法, 它默认将年薪增加5000美元, 但也能够接受其他的年薪增加量。
为Employee 编写一个测试用例, 其中包含两个测试方法: test_give_default_raise() 和test_give_custom_raise() 。 使用方法setUp() , 以免在每个测试方法中都创建新的雇员实例。 运行这个测试用例, 确认两个测试都通过了。
知识点:测试类
代码:
Employee类
class Employee():
def __init__(self,fn,ln,salary):
self.first_name = fn
self.last_name = ln
self.annual_salary = salary
def give_raise(self,add=5000):
self.annual_salary = self.annual_salary + add
测试类:
#11-3
import unittest
from employee import Employee
class TestEmployee(unittest.TestCase):
def setUp(self):
self.employ = Employee('Stiven','Hawking',1000000)
self.adds = [10000]
self.annual_salary = [1005000,1010000]
def test_give_default_raise(self):
self.employ.give_raise()
self.assertEqual(self.annual_salary[0],self.employ.annual_salary)
def test_custom_raise(self):
self.employ.give_raise(self.adds[0])
self.assertEqual(self.annual_salary[1],self.employ.annual_salary)
unittest.main()
运行结果:
..
----------------------------------------------------------------------
Ran 2 tests in 0.000s
OK