Python3 学习笔记(十一)测试代码

Python3 学习笔记(十一)测试代码

参考书籍《Python编程:从入门到实践》【美】Eric Matthes

编写一个函数,它接受两个形参:一个城市名和一个国家名。这个函数返回一个格式为City, Country 的字符串,如Santiago, Chile 。将这个函数存储在一个名为city_functions.py的模块中。创建一个名为test_cities.py的程序,对刚编写的函数进行测试(别忘了,你需要导入模块unittest 以及要测试的函数)。编写一个名为test_city_country() 的方法,核实使用类似于’santiago’ 和’chile’ 这样的值来调用前述函数时,得到的字符串是正确的。运行test_cities.py ,确认测试test_city_country() 通过了。

#city_functions.py
def city_country(city, country):
    message = city.title() + ', ' + country.title()
    return message 
#main.py
import unittest
from city_functions import city_country

class CityTestCase(unittest.TestCase):

    def test_city_country(self):
        message = city_country('santiago', 'chile')
        self.assertEqual(message, 'Santiago, Chile')

unittest.main()

修改前面的函数,使其包含第三个必不可少的形参population ,并返回一个格式为City, Country - population xxx 的字符串,如Santiago, Chile - population 5000000 。运行test_cities.py,确认测试test_city_country() 未通过。

#city_functions.py
def city_country(city, country, population):
    message = city.title() + ', ' + country.title() + ' - population' + str(population)
    return message 

修改上述函数,将形参population 设置为可选的。再次运行test_cities.py,确认测试test_city_country() 又通过了。

#city_functions.py
def city_country(city, country, population=''):
    message = city.title() + ', ' + country.title() + ' - population ' + str(population)
    return message 
#main.py
import unittest
from city_functions import city_country

class CityTestCase(unittest.TestCase):

    def test_city_country(self):
        message = city_country('santiago', 'chile')
        self.assertEqual(message, 'Santiago, Chile - population ')

unittest.main()

再编写一个名为test_city_country_population() 的测试,核实可以使用类似于’santiago’ 、’chile’ 和’population=5000000’ 这样的值来调用这个函数。再次运行test_cities.py,确认测试test_city_country_population() 通过了。

#city_functions.py
def city_country(city, country, population=''):
    message = city.title() + ', ' + country.title() + ' - population ' + str(population)
    return message 
#main.py
import unittest
from city_functions import city_country

class CityTestCase(unittest.TestCase):

    def test_city_country(self):
        message = city_country('santiago', 'chile')
        self.assertEqual(message, 'Santiago, Chile - population ')
    def test_city_country_population(self):
        message = city_country('santiago', 'chile', 5000000)
        self.assertEqual(message, 'Santiago, Chile - population 5000000')

unittest.main()

编写一个名为Employee 的类,其方法_init_() 接受名、姓和年薪,并将它们都存储在属性中。编写一个名为give_raise() 的方法,它默认将年薪增加5000美元,但也能够接受其他的年薪增加量。为Employee 编写一个测试用例,其中包含两个测试方法:test_give_default_raise() 和test_give_custom_raise() 。使用方法setUp() ,以免在每个测试方法中都创建新的雇员实例。运行这个测试用例,确认两个测试都通过了。

#employee.py

class Employee():
    def __init__(self, first_name, last_name, year_salary):
        self.first_name = first_name
        self.last_name = last_name
        self.year_salary = year_salary

    def give_raise(self, salary=5000):
        self.year_salary += salary
#main.py
import unittest
from employee import Employee

class EmployeeTestCase(unittest.TestCase):
    def setUp(self):
        self.employee = Employee('God', 'Seven', 100000)
        self.salary = 20000

    def test_give_default_raise(self):
        self.employee.give_raise()
        self.assertEqual(self.employee.year_salary, 105000)

    def test_give_custom_raise(self):
        self.employee.give_raise(self.salary)
        self.assertEqual(self.employee.year_salary, 120000)

unittest.main()

你可能感兴趣的:(Python)