srikanth | 116e6e8 | 2014-08-19 07:22:37 -0700 | [diff] [blame] | 1 | # |
| 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 | |
| 17 | #from django.contrib.auth.tests.auth_backends import BackendTest, RowlevelBackendTest, AnonymousUserBackendTest, NoAnonymousUserBackendTest |
| 18 | |
| 19 | from django.contrib.auth.tests.basic import BasicTestCase |
| 20 | from django.contrib.auth.tests.decorators import LoginRequiredTestCase |
| 21 | #from django.contrib.auth.tests.forms import UserCreationFormTest, AuthenticationFormTest, SetPasswordFormTest, PasswordChangeFormTest, UserChangeFormTest, PasswordResetFormTest |
| 22 | from django.contrib.auth.tests.remote_user \ |
| 23 | import RemoteUserTest, RemoteUserNoCreateTest, RemoteUserCustomTest |
| 24 | from django.contrib.auth.tests.models import ProfileTestCase |
| 25 | from django.contrib.auth.tests.tokens import TokenGeneratorTest |
| 26 | #from django.contrib.auth.tests.views \ |
| 27 | # import PasswordResetTest, ChangePasswordTest, LoginTest, LogoutTest |
| 28 | |
| 29 | |
| 30 | from sdncon.clusterAdmin.tests.auth_backends import BackendTest, RowlevelBackendTest, AnonymousUserBackendTest, NoAnonymousUserBackendTest |
| 31 | from sdncon.clusterAdmin.tests.forms import UserCreationFormTest, AuthenticationFormTest, SetPasswordFormTest, PasswordChangeFormTest, UserChangeFormTest, PasswordResetFormTest |
| 32 | from sdncon.clusterAdmin.tests.views \ |
| 33 | import PasswordResetTest, ChangePasswordTest, LoginTest, LogoutTest |
| 34 | |
| 35 | # The password for the fixture data users is 'password' |