gpt4 book ai didi

python - 如何从 rest_framework.test.Client 指定接受 header ?

转载 作者:行者123 更新时间:2023-11-28 20:26:37 24 4
gpt4 key购买 nike

我正在尝试设置 API 端点以根据传入请求的 Accept header 使用 HTML 或 JSON 进行回复。我让它工作了,通过 curl 测试:

> curl --no-proxy localhost -H "Accept: application/json" -X GET http://localhost:8000/feedback/
{"message":"feedback Hello, world!"}

> curl --no-proxy localhost -H "Accept: text/html" -X GET http://localhost:8000/feedback/
<html><body>
<h1>Root</h1>
<h2>feedback Hello, world!</h2>
</body></html>

不过,我不知道如何使用 APITestCase().self.client 来指定应该接受哪些内容。

我的观点看起来像

class Root(APIView):
renderer_classes = (TemplateHTMLRenderer,JSONRenderer)
template_name="feedback/root.html"
def get(self,request,format=None):
data={"message": "feedback Hello, world!"}
return Response(data)

我的测试代码看起来像

class RootTests(APITestCase):
def test_can_get_json(self):
response = self.client.get('/feedback/',format='json',Accept='application/json')
self.assertEqual(response.status_code, 200)
self.assertEqual(response.accepted_media_type,'application/json')
js=response.json()
self.assertIn('message', js)
self.assertEqual(js['message'],'feedback Hello, world!')

在 response.accepted_media_type 测试中死亡。这样做的正确方法是什么?我能找到的所有内容都表明格式参数应该足够了。

最佳答案

如前所述here , 文档似乎没有太多关于如何使用测试客户端向请求添加 header 的内容。但是,extra 参数可用于此目的,但诀窍在于您必须按照 http header 的外观来编写它。所以你应该这样做:

self.client.get('/feedback/', HTTP_ACCEPT='application/json') 

关于python - 如何从 rest_framework.test.Client 指定接受 header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53783306/

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