generated from westfarn/web_django_template
## Summary - Slim the public contact form to email, interest, and message. Name, phone, and address live on the customer profile instead. - Customers can register, sign in, save shipping details, and view order history. Logged-in checkout creates a Stripe Customer and saves cards on Stripe (`setup_future_usage`); we only store `stripe_customer_id`. - Shipment tracking: EasyPost tracker lookup + webhook, plus paste-in numbers from Pirate Ship/Shippo. Customers see carrier status on their orders; `dispatch_due` refreshes open shipments. - Product reviews (1–5) only after a paid/fulfilled purchase of that product. Fixes #7 ## Test plan - [ ] Contact form submits with only email + message; extra name/phone/address fields are ignored - [ ] Register, sign in, save profile (name/phone/shipping) - [ ] Guest checkout still works; after signup, prior orders with that email show in history - [ ] Logged-in checkout prefills shipping and does not collect card data locally - [ ] Portal: buy label or paste a Pirate Ship tracking number, confirm status/events; customer order page shows tracking - [ ] Product page: non-buyers cannot review; buyers can leave one 1–5 star review - [ ] Non-staff users hitting `/portal/` redirect to `/account/` Reviewed-on: #8
44 lines
1.5 KiB
Python
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", is_staff=True)
|
|
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")
|