blob: a228549340a6ce6faca3772e19e0d6e4284c3cf2 [file] [log] [blame]
srikanth116e6e82014-08-19 07:22:37 -07001#
2# Copyright (c) 2013 Big Switch Networks, Inc.
3#
4# Licensed under the Eclipse Public License, Version 1.0 (the
5# "License"); you may not use this file except in compliance with the
6# License. You may obtain a copy of the License at
7#
8# http://www.eclipse.org/legal/epl-v10.html
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied. See the License for the specific language governing
14# permissions and limitations under the License.
15#
16
17from django.conf.urls.defaults import patterns
18from django.contrib.auth.urls import urlpatterns
19from django.contrib.auth.views import password_reset
20from django.contrib.auth.decorators import login_required
21from django.http import HttpResponse
22from django.template import Template, RequestContext
23
24def remote_user_auth_view(request):
25 "Dummy view for remote user tests"
26 t = Template("Username is {{ user }}.")
27 c = RequestContext(request, {})
28 return HttpResponse(t.render(c))
29
30# special urls for auth test cases
31urlpatterns = urlpatterns + patterns('',
32 (r'^logout/custom_query/$', 'django.contrib.auth.views.logout', dict(redirect_field_name='follow')),
33 (r'^logout/next_page/$', 'django.contrib.auth.views.logout', dict(next_page='/somewhere/')),
34 (r'^remote_user/$', remote_user_auth_view),
35 (r'^password_reset_from_email/$', 'django.contrib.auth.views.password_reset', dict(from_email='staffmember@example.com')),
36 (r'^login_required/$', login_required(password_reset)),
37 (r'^login_required_login_url/$', login_required(password_reset, login_url='/somewhere/')),
38)
39