我正在尝试测试管理员更改列表视图是否正常工作。这是我使用的代码:
from django.test import Client
from django.test import TestCase
class TestAdminViews(TestCase):
def test_admin(self, user = None, name = None):
client=Client()
if user is None:
password = "test"
user = User.objects.create_superuser('testadmin', 'test@test.com', password)
success=client.login(username = user.username, password = password)
self.assertTrue(success, "Login Failed!")
app="messwertdb"
mymodels=["messrun","messung"]
for model in mymodels:
response = client.get(reverse('admin:%s_%s_changelist'% (app, model)))
print reverse('admin:%s_%s_changelist'% (app, model)), response.status_code, response.content.count("exception")#test line self.assertEqual(response.status_code,200,"Response not ok!")
我试图显示一个不存在的属性,从而破坏了其中一个视图。因此,如果我尝试在浏览器中获取它,我会得到一个AttributeError(如果DEBUG = False,则会产生500响应)。但是,在我的测试中,我总是得到200响应 - 意味着没有测试失败。如果我在shell中输入完全相同的代码,我会得到正确的错误。在测试用例中,它似乎返回一个空的但正确的更改列表。
破损的admin.py:
class MessRunAdmin(admin.ModelAdmin):
list_display=('type','date','path','failure')
def failure(self, obj):
return obj.nonexisting #this does not exist
答案 0 :(得分:0)
这是一个简单的错误:我忘了加载夹具,因此测试数据库是空的,因为它没有尝试显示任何实例,它没有调用失败的属性。在shell中,它使用的是非空的部署数据库。
所以我将其更改为以下代码,现在失败了:
class TestAdminViews(TestCase):
fixtures= ["messwertdb.yaml"]
def test_admin(self, user = None, name = None):
.......