Lettuce:内置Django步骤

Lettuce具有若干Django内置步骤,简化定制器的创建。

创建定制器数据

Lettuce可以自动对你可用的Django模型创建定制器数据,例如

Background:
    Given I have options in the database:
        | name    | value |
        | Lettuce | Rocks |

能发现一个名字叫options的模型。它将使用表中指定的参数创建该模型的对象(name=Lettuce, value=Rocks)。
还可以这样指定关系信息。假设具有外键user和字段avatar的模型Profile:

Background:
    Given user with username "harvey" has profile in the database:
        | avatar  |
        | cat.jpg |

要创建多对多关系,假设User属于多个Group对象:

Background:
    Given user with username "harvey" is linked to groups in the database:
        | name |
        | Cats |

要创建多对多关系,这两个模型必须在链接之前存在。
大部分常见的数据可以被解析,即真/假、数字、字符串和日期的形式2013-10-30。

注册自己的模型构造器

对于更复杂的模型,处理和分析数据,你可以使用creates_models装饰自己写的创建步骤。

from lettuce.django.steps.models import (creates_models,
                                         reset_sequence,
                                         hashes_data)

@creates_models(Note)
def create_note(step):
    data = hashes_data(step)
    for row in data:
        # convert the author into a user object
        row['author'] = get_user(row['author'])
        Note.objects.create(**row)

    reset_sequence(Note)

测试模型

两个步骤来测试模型。

Then features should be present in the database:
    | name    | value |
    | Lettuce | Rocks |
And there should be 1 feature in the database

你也可以通过前缀@的属性名称测试非数据库模型属性。在从数据库中选择记录之后测试非数据库属性。

Then features should be present in the database:
    | name    | value | @language |
    | Lettuce | Rocks | Python    |

注册自己的模型测试

对于更复杂的测试,处理和分析数据,你可以使用checks_existence装饰你自己的步骤。

测试电子邮件

有6个步骤,允许你对发送电子邮件进行比较全面的测试,仅需要你使用Django默认django.core.mail功能。
检查发送的邮件数量:

Then I have sent 1 email

还有一个更易读的步骤,用于检查没有发送邮件:

Then I have not sent any emails

检查电子邮件正文中是否包含以下多行字符串:

Then I have sent an email with the following in the body:
    """
    Lettuce is a BDD tool for python, 100% inspired on cucumber.
    """

检查电子邮件的一部分(主体、主体、from_email,,BCC,CC)是否包含给定文本:

Then I have sent an email with "Lettuce" in the body

你应该一直测试你的功能的失败案例。因此,有步骤确保发送电子邮件按预期失败。这将导致smtpexception总是被提出:

Given sending email does not work

有些测试点,你可能会想清除你以前所有的有变化的发件箱。清除你的电子邮件,并重置之前sending email does not work步骤造成的任何破坏,可以使用:

Given I clear my email outbox

希望在每次测试之后,运行清理。要做到这一点,只要在你terrain.py添加:

::

from lettuce import after, before from lettuce.django.steps.mail import mail_clear

@before.each_background def reset_email(lettuce_object):

    mail_clear(lettuce_object)

settings.py变量

LETTUCE_APPS–测试默认应用程序
LETTUCE_USE_TEST_DATABASE–使用测试数据库代替实时数据库。等值t标志。

其他参考变量

SOUTH_TESTS_MIGRATE – 使用south迁移应用到测试数据库


上一篇:Lettuce: Language Support
下一篇:Lettuce: Use nose for pretty assertions

你可能感兴趣的:(Lettuce:内置Django步骤)