Django test client gets 301 redirection when acces

2020-04-02 08:34发布

I am writing unittests for django views. I have observed that one of my views returns redirection code 301, which is not expected.
Here is my views.py mentioned earlier.

def index(request):
    return render(request, 'index.html',
                  {'form': QueryForm()})

def query(request):
    if request.is_ajax():
        form = QueryForm(request.POST)
        return HttpResponse('valid')

Below is urls.py.

urlpatterns = patterns('',
         url(r'^$', 'core.views.index'),
         url(r'^query/$', 'core.views.query')
         )

And unittest that will fail.

def so_test(self):
    response = self.client.post('/')
    self.assertEquals(response.status_code, 200)

    response = self.client.post('/query', {})
    self.assertEquals(response.status_code, 200)

My question is: why there is status 301 returned?

2条回答
一纸荒年 Trace。
2楼-- · 2020-04-02 09:07

For me, the problem was that I mistakenly ran the tests with a setting.py file that had SECURE_SSL_REDIRECT = True. Changing to SECURE_SSL_REDIRECT = False solved the issue.

Another option is to use the client with secure=True, i.e.:

response = self.client.post('/query/', {}, secure=True)

which will make the client emulate an HTTPS request.

查看更多
smile是对你的礼貌
3楼-- · 2020-04-02 09:10

You have defined a url that matches /query/, but you are testing /query. Django is redirecting to the url with the trailing slash because APPEND_SLASH=True in your settings.

You probably want to change your test to:

response = self.client.post('/query/', {})
查看更多
登录 后发表回答