38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
from django.test import TestCase
|
|
# import unittest
|
|
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 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)
|