gpt4 book ai didi

Django AssertionError - 302 不是 302

转载 作者:行者123 更新时间:2023-12-04 08:06:46 25 4
gpt4 key购买 nike

我为接受带有文件的 POST 请求的端点设置了一个 super 简单的单元测试,并在成功上传后将用户重定向到新页面。此单元测试的目标是确保文件上传正常工作。
测试.py

c = Client()
with open('replays/static/test.txt', 'r', ) as f:
response = c.post(
'/upload/',
{
'summoner': 'test user',
'title': 'Testing title',
'replay': f
},
follow=False
)

print(response.status_code)
print(response.status_code == 302)
self.assertIs(response.status_code, 302)
输出
$ python manage.py test replays
Creating test database for alias 'default'...
System check identified no issues (0 silenced).
302
True
======================================================================
FAIL: test_create_replay (replays.tests.ReplayCreationTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/path/to/project/tests.py", line 52, in test_create_replay
self.assertIs(response.status_code, 302)
AssertionError: 302 is not 302

----------------------------------------------------------------------
Ran 1 test in 0.173s

FAILED (failures=1)
Destroying test database for alias 'default'...
如果我在调用测试客户端的 post 方法时更改了以下重定向的参数,则响应状态为 200 时一切正常
tests.py - 跟随重定向
c = Client()
with open('replays/static/test.txt', 'r', ) as f:
response = c.post(
'/upload/',
{
'summoner': 'test user',
'title': 'Testing title',
'replay': f
},
follow=True
)

print(response.status_code)
print(response.status_code == 200)
self.assertIs(response.status_code, 200)
输出
$ python manage.py test replays
Creating test database for alias 'default'...
System check identified no issues (0 silenced).
200
True
.
----------------------------------------------------------------------
Ran 1 test in 0.196s

OK
Destroying test database for alias 'default'...
我错过了什么?这似乎不应该是断言语句的预期行为。我正在使用 Django 3.1。

最佳答案

AssertIs检查是否 x is y ,换句话说,就是 xy指同一个对象。但是你可以有两个 int都是 302 的对象,但不是同一个对象。
您应该使用 .AssertEqual(…) [Python-doc] :

self.assertEqual(302, response.status_code)
对于小整数,CPython 解释器将为 -5 到 256 构造 int 对象,从而使用享元模式:

The current implementation keeps an array of integer objects for all integers between -5 and 256, when you create an int in that range you actually just get back a reference to the existing object.


这意味着对于 int在 -5 到 256 之间,它将引用同一个对象,对于该范围之外的值,它通常会构造一个新对象。

关于Django AssertionError - 302 不是 302,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66190141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com