带有用户代理的django-pytest无法找到request.user-agent

问题描述

感谢您的时间。

我有一个正在使用pytest-django测试的应用程序。尽管我在views.py的请求函数中遇到了一些问题。

在我看来,我有一些基于request.user_agent(已安装django-user-agents的应用程序)的语句,用于选择是否显示移动或桌面模板。这些让我犯了错误 pytest-django。

views.py:

def curriculo_view(request):
    context = {}
    if request.user_agent.is_mobile:
        return render(request,'amp/Curriculo-mobile.html',context)
    elif request.user_agent.is_pc:
        return render (request,'admin/Curriculo.html',context)
    else:
        return render (request,context)

test_views.py:

    def test_curriculo_view(self):
        path = reverse('curriculo')
        request =  RequestFactory().get(path)
        response = views.curriculo_view(request)
        assert response.status_code == 200

错误:

    def curriculo_view(request):
        context = {}
>       if request.user_agent.is_mobile:
E       AttributeError: 'WSGIRequest' object has no attribute 'user_agent'

accounts\views.py:98: AttributeError

我试图像要设置用户(例如:request.user = User.objects.get())一样进行设置,试图将其设置为request.META ['USER_AGENT']的键,但没有一个让我如此。

解决方法

django-user-agents使用中间件将用户代理信息附加到请求实例,但是您正在通过直接调用视图来测试您的视图,从而绕过了常规Django的请求处理流程。改用django-pytest的client固定装置通过其路径调用视图,例如:

def test_linux_chromium(client):
    path = reverse('curriculo')
    response = client.get(path,HTTP_USER_AGENT='Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/85.0.4183.102 Safari/537.36')
    assert response.status_code == 200

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...