Django/python testing django form



我正在测试我的项目,我需要测试django形式,但我不知道该怎么做,这是代码

if request.method == 'POST': # If the form has been submitted...
    name_add = request.POST.get("name")
    form = AddForm(request.POST) # A form bound to the POST datas
    not_add = 0
    if form.is_valid(): # All validation rules pass
        for n in Product.objects.filter(dashboard = curr_dashboard):
            if n.name == name_add:
                not_add = 1
        if not_add != 1:
            obj = form.save(commit=False)
            obj.dashboard = curr_dashboard
            obj.save()
            curr_buylist.add_product(obj.id)
            return HttpResponseRedirect(request.get_full_path()) # Redirect after POST
        else:
            forms.ValidationError("You already have this")
            return HttpResponseRedirect(request.get_full_path())

我在这里验证它并添加到数据库中。但是我该如何测试呢?这是我在测试中写的

def test_index_form(self):
    request = self.factory.post('main/index')
    request.user = User.objects.get(username= 'admin')
    response = index(request)
    self.assertEqual(response.status_code, 200)

我认为你的测试是一个好的开始。 不幸的是,它只是测试表单无效的情况。 除了测试状态代码之外,我还会测试是否加载了正确的模板,也许还会测试未绑定表单是否在上下文中(基本上测试视图中是否按预期执行了正确的条件):

self.assertTemplateUsed(response, 'your_template.html')
self.assertIsInstance(response.context['form'], AddForm)

测试中提供有效的表单数据并确保按预期创建新对象也是一个想法。

无效数据发布到视图中并检查是否按预期发出重定向也可能是一个好主意

最新更新