测试Django管理表单

时间:2017-02-09 02:53:23

标签: python django forms admin

我想在管理面板中测试在我的应用程序中添加自定义文档文件表单。不幸的是,django文档对于这个文档来说非常模糊。

这是我的模特:

class Document(models.Model):
    pub_date = models.DateTimeField('date published')
    title = models.CharField(max_length=255)
    description = models.TextField()
    pdf_doc = models.FileField(upload_to=repo_dir, max_length=255)

这是我的测试:

from django.test import TestCase
from django.test import Client
from django.utils import timezone
from datetime import datetime, timedelta

class DocumentAdminFormTest(TestCase):

    def test_add_document_form(self):
        client = Client()
        change_url = 'admin/docrepo/document/add/'
        today = datetime.today()
        filepath = u'/filepath/to/some/pdf/'
        data = {'title': 'TEST TITLE',
                'description': 'TEST DESCRIPTION', 
                'pub_date0': '2000-01-01',
                'pub_date1': '00:00:00',
                'pdf_doc': filepath,
                }
        response = client.post(change_url, data)
        print('REASON PHRASE: ' + response.reason_phrase)
        self.assertIs(response.status_code, 200)

我希望在发布带有显示数据的表单时获得200响应。出于某种原因,response.status_code给出了404,而response.reason_phrase给出了“未找到”#39;是否可能问题出在目录?

1 个答案:

答案 0 :(得分:2)

您必须log the client in

c = Client()
c.login(username='your_username', password='your_password')
response = c.post(change_url, data)

定义change_url的最正确方法是使用reverse()。您可以browse the docs找到正确的方法来执行此操作。例如:

change_url = reverse('admin:docrepo_document_add')