Skip to content

Commit 54d4a77

Browse files
committed
Add tests for creating and reading blog posts and categories.
1 parent 3be1a75 commit 54d4a77

File tree

3 files changed

+137
-0
lines changed

3 files changed

+137
-0
lines changed

blog/test_helpers.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
from typing import Optional
2+
3+
from accounts.test_helpers import create_random_user
4+
from core.test_utils import random_lower_string
5+
from sqlalchemy.ext.asyncio import AsyncSession
6+
7+
from blog.crud import category, post
8+
from blog.models import Category, Post
9+
from blog.schemas import CreateCategory, CreatePost
10+
11+
12+
def create_random_post(
13+
db: AsyncSession, *,
14+
author_id: Optional[int] = None) -> Post:
15+
if author_id is None:
16+
user = create_random_user(db)
17+
author_id = user.id
18+
title = random_lower_string()
19+
description = random_lower_string()
20+
obj_in = CreatePost(title=title, description=description, author_id=author_id)
21+
return post.create(db=db, obj_in=obj_in)
22+
23+
24+
def create_random_category(db: AsyncSession) -> Category:
25+
title = random_lower_string()
26+
description = random_lower_string()
27+
obj_in = CreateCategory(title=title, description=description, id=id)
28+
return post.create(db=db, obj_in=obj_in)

blog/tests.py

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
from core.settings import settings
2+
from core.utils import unique_slug_generator
3+
from fastapi.testclient import TestClient
4+
from sqlalchemy.ext.asyncio import AsyncSession
5+
6+
from blog.test_helpers import create_random_category, create_random_post
7+
8+
test_data = {
9+
"title": "Archangel",
10+
"description": "macsika"
11+
}
12+
13+
def test_create_post(
14+
client: TestClient,
15+
superuser_token_headers: dict,
16+
db: AsyncSession
17+
) -> None:
18+
response = client.post(
19+
f"{settings.API_V1_STR}/blog/posts/",
20+
headers=superuser_token_headers,
21+
json=test_data
22+
)
23+
assert response.status_code == 201 or response.status_code == 200
24+
content = response.json()
25+
assert content["title"] == test_data["title"]
26+
assert content["description"] == test_data["description"]
27+
assert content["slug"] == unique_slug_generator(test_data["title"])
28+
assert "id" in content
29+
assert "owner_id" in content
30+
31+
32+
def test_create_category(
33+
client: TestClient,
34+
superuser_token_headers: dict,
35+
db: AsyncSession
36+
) -> None:
37+
response = client.post(
38+
f"{settings.API_V1_STR}/blog/tags/",
39+
headers=superuser_token_headers,
40+
json=test_data
41+
)
42+
assert response.status_code == 201 or response.status_code == 200
43+
content = response.json()
44+
assert content["title"] == test_data["title"]
45+
assert content["description"] == test_data["description"]
46+
assert content["slug"] == unique_slug_generator(test_data["title"])
47+
assert "id" in content
48+
49+
50+
def test_read_post(
51+
client: TestClient,
52+
superuser_token_headers: dict,
53+
db: AsyncSession) -> None:
54+
item = create_random_post(db)
55+
response = client.get(
56+
f"{settings.API_V1_STR}/blog/posts/{item.slug}",
57+
headers=superuser_token_headers,
58+
)
59+
assert response.status_code == 200
60+
content = response.json()
61+
assert content["title"] == item.title
62+
assert content["description"] == item.description
63+
assert content["slug"] == unique_slug_generator(test_data["title"])
64+
assert content["id"] == item.id
65+
assert content["owner_id"] == item.owner_id
66+
67+
68+
def test_read_category(
69+
client: TestClient,
70+
superuser_token_headers: dict,
71+
db: AsyncSession) -> None:
72+
item = create_random_post(db)
73+
response = client.get(
74+
f"{settings.API_V1_STR}/blog/tags/{item.slug}",
75+
headers=superuser_token_headers,
76+
)
77+
assert response.status_code == 200
78+
content = response.json()
79+
assert content["title"] == item.title
80+
assert content["description"] == item.description
81+
assert content["slug"] == unique_slug_generator(test_data["title"])
82+
assert content["id"] == item.id

core/test_utils.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import random
2+
import string
3+
from typing import Dict
4+
5+
from fastapi.testclient import TestClient
6+
7+
from core.settings import settings
8+
9+
10+
def random_lower_string() -> str:
11+
return "".join(random.choices(string.ascii_lowercase, k=32))
12+
13+
14+
def random_email() -> str:
15+
return f"{random_lower_string()}@{random_lower_string()}.com"
16+
17+
18+
def get_superuser_token_headers(client: TestClient) -> Dict[str, str]:
19+
login_data = {
20+
"username": settings.FIRST_SUPERUSER,
21+
"password": settings.FIRST_SUPERUSER_PASSWORD,
22+
}
23+
r = client.post(f"{settings.API_V1_STR}/login/access-token", data=login_data)
24+
tokens = r.json()
25+
a_token = tokens["access_token"]
26+
headers = {"Authorization": f"Bearer {a_token}"}
27+
return headers

0 commit comments

Comments
 (0)