diff options
| author | Tim Graham <timograham@gmail.com> | 2017-03-07 13:43:17 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-03-07 18:56:10 -0500 |
| commit | 72ff9d53e66d6b59ae5d8a1b830f5fc798eb75d0 (patch) | |
| tree | af1c1bcd8781418d11888b37171879fcac84d01f /tests | |
| parent | 2a3a0eb09231f7cade8fd945bf4af1b251df12e3 (diff) | |
Factored out uid/user tokens in auth_tests urlpatterns.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/auth_tests/urls.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auth_tests/urls.py b/tests/auth_tests/urls.py index 392355f9b3..facfe4623f 100644 --- a/tests/auth_tests/urls.py +++ b/tests/auth_tests/urls.py @@ -62,6 +62,8 @@ def userpage(request): pass +uid_token = '(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})' + # special urls for auth test cases urlpatterns = auth_urlpatterns + [ url(r'^logout/custom_query/$', views.LogoutView.as_view(redirect_field_name='follow')), @@ -82,11 +84,11 @@ urlpatterns = auth_urlpatterns + [ views.PasswordResetView.as_view( html_email_template_name='registration/html_password_reset_email.html' )), - url(r'^reset/custom/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', + url(r'^reset/custom/{}/$'.format(uid_token), views.PasswordResetConfirmView.as_view(success_url='/custom/')), - url(r'^reset/custom/named/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', + url(r'^reset/custom/named/{}/$'.format(uid_token), views.PasswordResetConfirmView.as_view(success_url=reverse_lazy('password_reset'))), - url(r'^reset/post_reset_login/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', + url(r'^reset/post_reset_login/{}/$'.format(uid_token), views.PasswordResetConfirmView.as_view(post_reset_login=True)), url(r'^password_change/custom/$', views.PasswordChangeView.as_view(success_url='/custom/')), |
