forked from retoor/devplacepy
Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
08b791d67a |
File diff suppressed because one or more lines are too long
@@ -4,6 +4,8 @@ from __future__ import annotations
|
||||
|
||||
from typing import Any, Optional
|
||||
|
||||
from pydantic import Field
|
||||
|
||||
from devplacepy.schemas.base import _Out
|
||||
|
||||
|
||||
@@ -62,7 +64,7 @@ class PollOut(_Out):
|
||||
|
||||
|
||||
class BadgeOut(_Out):
|
||||
name: Optional[str] = None
|
||||
name: Optional[str] = Field(None, alias="badge_name")
|
||||
created_at: Optional[str] = None
|
||||
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ import { PubSubClient } from "../PubSubClient.js";
|
||||
const CHAT_CSS_ID = "chat-css";
|
||||
const TYPING_THROTTLE_MS = 1500;
|
||||
const TYPING_HIDE_MS = 4000;
|
||||
const AUTO_SCROLL_MARGIN_PX = 0;
|
||||
const AUTO_SCROLL_MARGIN_PX = 100;
|
||||
const STABILIZE_MAX_FRAMES = 300;
|
||||
const SEND_TIMEOUT_MS = 8000;
|
||||
const MOBILE_BREAKPOINT_PX = 768;
|
||||
|
||||
@@ -407,3 +407,43 @@ def test_viewing_profile_marks_notification_read(app_server):
|
||||
|
||||
refresh_snapshot()
|
||||
assert bool(get_table("notifications").find_one(uid=notif_uid)["read"]) is True
|
||||
|
||||
|
||||
def test_profile_json_badge_names_non_null(app_server):
|
||||
from datetime import datetime, timezone
|
||||
from uuid import uuid4
|
||||
from devplacepy.database import get_table, refresh_snapshot
|
||||
from devplacepy.utils import generate_uid
|
||||
|
||||
uid = str(uuid4())
|
||||
username = f"badge_{uid[:8]}"
|
||||
get_table("users").insert(
|
||||
{
|
||||
"uid": uid,
|
||||
"username": username,
|
||||
"email": f"{uid[:8]}@badge.test",
|
||||
"password_hash": "x",
|
||||
"role": "Member",
|
||||
"is_active": True,
|
||||
"created_at": datetime.now(timezone.utc).isoformat(),
|
||||
}
|
||||
)
|
||||
badge_uid = generate_uid()
|
||||
get_table("badges").insert(
|
||||
{
|
||||
"uid": badge_uid,
|
||||
"user_uid": uid,
|
||||
"badge_name": "On Fire",
|
||||
"created_at": datetime.now(timezone.utc).isoformat(),
|
||||
}
|
||||
)
|
||||
refresh_snapshot()
|
||||
|
||||
r = requests.get(
|
||||
f"{BASE_URL}/profile/{username}", headers={"Accept": "application/json"}
|
||||
)
|
||||
assert r.status_code == 200
|
||||
body = r.json()
|
||||
for badge in body.get("badges", []):
|
||||
assert badge["name"] is not None, f"Badge name is None: {badge}"
|
||||
assert badge["name"] == "On Fire"
|
||||
|
||||
Reference in New Issue
Block a user