Python Pyramid 单元测试用例 Dummyrequest:需要将文件路径转换为“webob.compat.cgi_FieldStorage”

发布于 2025-01-09 07:44:25 字数 1113 浏览 0 评论 0原文

我在金字塔中创建了以下 API。

@view_config(route_name="/demo", renderer="json", request_method="POST")
    def file_attachment(self):
        file = self.request.POST['file']
        file_content = file.file
        file_content.seek(0)

API 将 usernameform-data: file 作为输入。

我正在使用pyramid.testing.Dummyrequest为此API创建单元测试用例,如下所示:

def test_img_attach_success(self):
    input_data = {
        "username": "[email protected]",
        "file": "/tmp/test_inputs/demo_img.png"
        }
    self.collab.request =  testing.DummyRequest(POST=input_data, dbsession=self.session)
    response = self.collab.file_attachment()

在测试用例中,我将file的值作为字符串传递。但 file_attachment 函数中的 file 变量类型采用 webob.compat.cgi_FieldStorage

所以我收到 AttributeError: 'str' object has no attribute 'file'。

如何将 str 转换为 webob.compat.cgi_FieldStorage

I have created following API in pyramid.

@view_config(route_name="/demo", renderer="json", request_method="POST")
    def file_attachment(self):
        file = self.request.POST['file']
        file_content = file.file
        file_content.seek(0)

API takes username and form-data: file as an input.

I am creating unit testcase for this API using pyramid.testing.Dummyrequest as follows:

def test_img_attach_success(self):
    input_data = {
        "username": "[email protected]",
        "file": "/tmp/test_inputs/demo_img.png"
        }
    self.collab.request =  testing.DummyRequest(POST=input_data, dbsession=self.session)
    response = self.collab.file_attachment()

in testcase I am passing value of file as a string. but type of file variable in file_attachment function taking webob.compat.cgi_FieldStorage.

So I am getting AttributeError: 'str' object has no attribute 'file'.

How can I convert str to webob.compat.cgi_FieldStorage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文