Spaces:
Runtime error
Runtime error
File size: 1,453 Bytes
5daa15d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
from django.test import TestCase, Client
from django.contrib.auth.models import User
from bs4 import BeautifulSoup
from blog.models import Post
class TestView(TestCase):
def setUp(self):
self.client = Client()
self.user_trump = User.objects.create_user(username='trump', password='somepassword')
def test_landing(self):
post_001 = Post.objects.create(
title='첫 번째 포스트',
content='첫 번째 포스트입니다.',
author=self.user_trump
)
post_002 = Post.objects.create(
title='두 번째 포스트',
content='두 번째 포스트입니다.',
author=self.user_trump
)
post_003 = Post.objects.create(
title='세 번째 포스트',
content='세 번째 포스트입니다.',
author=self.user_trump
)
post_004 = Post.objects.create(
title='네 번째 포스트',
content='네 번째 포스트입니다.',
author=self.user_trump
)
response = self.client.get('')
self.assertEqual(response.status_code, 200)
soup = BeautifulSoup(response.content, 'html.parser')
body = soup.body
self.assertNotIn(post_001.title, body.text)
self.assertIn(post_002.title, body.text)
self.assertIn(post_003.title, body.text)
self.assertIn(post_004.title, body.text)
|