remove hardcoded passwords
This commit is contained in:
parent
250b6691d4
commit
b19b5b644d
|
@ -1,4 +1,6 @@
|
|||
"""passbook Core Account Test"""
|
||||
import string
|
||||
from random import SystemRandom
|
||||
|
||||
from django.test import TestCase
|
||||
from django.urls import reverse
|
||||
|
@ -26,7 +28,9 @@ class TestAuthenticationViews(TestCase):
|
|||
self.user = User.objects.create_superuser(
|
||||
username='unittest user',
|
||||
email='unittest@example.com',
|
||||
password='test123')
|
||||
password=''.join(SystemRandom().choice(
|
||||
string.ascii_uppercase + string.digits) for _ in range(8)))
|
||||
|
||||
|
||||
def test_sign_up_view(self):
|
||||
"""Test account.sign_up view (Anonymous)"""
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
"""passbook user view tests"""
|
||||
import string
|
||||
from random import SystemRandom
|
||||
|
||||
from django.shortcuts import reverse
|
||||
from django.test import TestCase
|
||||
|
||||
|
@ -13,7 +16,8 @@ class TestOverviewViews(TestCase):
|
|||
self.user = User.objects.create_superuser(
|
||||
username='unittest user',
|
||||
email='unittest@example.com',
|
||||
password='test123')
|
||||
password=''.join(SystemRandom().choice(
|
||||
string.ascii_uppercase + string.digits) for _ in range(8)))
|
||||
self.client.force_login(self.user)
|
||||
|
||||
def test_overview(self):
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
"""passbook user view tests"""
|
||||
import string
|
||||
from random import SystemRandom
|
||||
|
||||
from django.shortcuts import reverse
|
||||
from django.test import TestCase
|
||||
|
||||
|
@ -14,7 +17,8 @@ class TestUserViews(TestCase):
|
|||
self.user = User.objects.create_superuser(
|
||||
username='unittest user',
|
||||
email='unittest@example.com',
|
||||
password='test123')
|
||||
password=''.join(SystemRandom().choice(
|
||||
string.ascii_uppercase + string.digits) for _ in range(8)))
|
||||
self.client.force_login(self.user)
|
||||
|
||||
def test_user_settings(self):
|
||||
|
|
Reference in New Issue