added login test

This commit is contained in:
Benni Bärmann 2021-09-14 07:17:36 +02:00
parent b1ba9e2cd0
commit 6becd8278b
1 changed files with 9 additions and 20 deletions

View File

@ -5,33 +5,22 @@ from django.test import Client
from django.contrib.auth.models import User
#from django.urls import reverse
# class LoginTestCase(unittest.TestCase):
# def setUp(self):
# self.client = Client()
# self.user = User.objects.create_user('vladimir', 'vladimir@reiherzehe.com', 'reiherzehe')
#
# def testLogin(self):
# self.client.login(username='vladimir', password='reiherzehe')
# response = self.client.get('accounts/')
# self.assertEqual(response.status_code, 200)
class LoginTestCase(TestCase):
def setUp(self):
self.client = Client()
self.user = User.objects.create_user('vladimir', 'vladimir@reiherzehe.com', 'reiherzehe')
def testLogin(self):
self.client.login(username='vladimir', password='reiherzehe')
response = self.client.get('/')
self.assertContains(response, 'Du bist eingeloggt als vladimir@reiherzehe.com', status_code=200)
class SimpleTest(TestCase):
def setUp(self):
#User.objects.create_superuser('testuser', 'nomail@nomail.com', 'testpasswd')
# Every test needs a client.
self.client = Client()
def test_details(self):
# Issue a GET request.
response = self.client.get('/')
# Check that the response is 200 OK.
self.assertEqual(response.status_code, 302)
# print(response.url)
#
response2 = self.client.get(response.url)
# # print(response2.content)
#
self.assertContains( response2, 'Bitte via Wolke einloggen:', status_code=200)