Files
web_django_template/site/blog/tests.py
westfarnandCursor 787f0e48fb Populate the client website template with catalog feature flags.
Extract always-on public/portal/UTM plus optional email_sms, directmail, blog, payments, social, and social_ai so new client sites can be bootstrapped from this seed.

Refs #1
Refs #2

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-26 07:55:26 -05:00

44 lines
1.5 KiB
Python

from django.contrib.auth import get_user_model
from django.test import Client, TestCase
from django.urls import reverse
from django.utils import timezone
from blog.models import Post
class BlogPublicTests(TestCase):
def test_list_hides_drafts(self):
Post.objects.create(title="Draft", body="x", is_published=False)
Post.objects.create(
title="Live",
body="hello",
is_published=True,
published_at=timezone.now(),
)
response = Client().get(reverse("blog:list"))
self.assertEqual(response.status_code, 200)
self.assertContains(response, "Live")
self.assertNotContains(response, "Draft")
def test_portal_requires_login(self):
response = Client().get(reverse("blog_portal:portal_list"))
self.assertEqual(response.status_code, 302)
class BlogPortalTests(TestCase):
def setUp(self):
User = get_user_model()
self.user = User.objects.create_user("editor", password="test-pass-123")
self.client = Client()
self.client.login(username="editor", password="test-pass-123")
def test_create_published_post(self):
response = self.client.post(
reverse("blog_portal:portal_new"),
{"title": "Hello", "body": "World", "is_published": "on"},
)
self.assertEqual(response.status_code, 302)
post = Post.objects.get()
self.assertTrue(post.is_published)
self.assertEqual(post.slug, "hello")