3

我正在尝试为表单向导视图编写测试django.contrib.formstools.wizard.views.CookieWizardView,但我不确定如何处理在测试用例中编写顺序帖子:

#test_views.py
def test_wizard_pass(self):
    response = self.c.post('/wizard/url/',first_form_post_dict)
    self.assertContains(...)
    response = self.c.post('/wizard/url/',second_step_post_dict)
    self.assertRedirect(...)

我假设我需要根据第一个响应中的某些内容或与用于会话管理的 cookie 有关的内容更改第二个帖子数据,我只是不确定是什么。

4

1 回答 1

7

的测试用例CookieWizardView可以在django.contrib.formtools.tests.wizard.wizardtests.tests(第 216 行,在此处查看源代码)中找到,包括多个连续的帖子。您可以研究这些是如何实现的,并以类似的方式实现您自己的测试用例。

于 2012-07-09T09:31:45.090 回答