5
5
6
6
# mypy: ignore-errors
7
7
import pytest
8
+ from uuid import uuid4
9
+ from django .utils import timezone
8
10
9
11
from content .factories import ResourceFactory , TaskFactory , TopicFactory
10
-
12
+ from content .models import (
13
+ Discussion ,
14
+ Faq ,
15
+ Image ,
16
+ Location ,
17
+ SocialLink ,
18
+ Tag ,
19
+ DiscussionEntry
20
+ )
21
+ from authentication .factories import UserFactory
11
22
pytestmark = pytest .mark .django_db
12
23
13
24
@@ -19,3 +30,92 @@ def test_str_methods() -> None:
19
30
assert str (resource ) == resource .name
20
31
assert str (task ) == task .name
21
32
assert str (topics ) == topics .name
33
+
34
+ def test_discussion_str_method ():
35
+ """Test the __str__ method of the Discussion model."""
36
+ user = UserFactory ()
37
+ discussion = Discussion (
38
+ id = uuid4 (),
39
+ created_by = user ,
40
+ title = "Test Discussion" ,
41
+ creation_date = timezone .now ()
42
+ )
43
+ assert str (discussion ) == f"{ discussion .id } "
44
+
45
+ def test_faq_str_method ():
46
+ """Test the __str__ method of the Faq model."""
47
+ faq = Faq (
48
+ id = uuid4 (),
49
+ iso = "en" ,
50
+ primary = True ,
51
+ question = "Test Question?" ,
52
+ answer = "Test Answer" ,
53
+ order = 1 ,
54
+ last_updated = timezone .now ()
55
+ )
56
+ assert str (faq ) == faq .question
57
+
58
+ def test_image_str_method ():
59
+ """Test the __str__ method of the Image model."""
60
+ image_id = uuid4 ()
61
+ image = Image (
62
+ id = image_id ,
63
+ creation_date = timezone .now ()
64
+ )
65
+ assert str (image ) == f"{ image_id } "
66
+
67
+ def test_location_str_method ():
68
+ """Test the __str__ method of the Location model."""
69
+ location_id = uuid4 ()
70
+ location = Location (
71
+ id = location_id ,
72
+ lat = "40.7128" ,
73
+ lon = "-74.0060" ,
74
+ display_name = "New York City"
75
+ )
76
+ assert str (location ) == f"{ location_id } "
77
+
78
+ def test_social_link_str_method ():
79
+ """Test the __str__ method of the SocialLink model."""
80
+ social_link = SocialLink (
81
+ id = uuid4 (),
82
+ link = "https://example.com" ,
83
+ label = "Example" ,
84
+ order = 1 ,
85
+ creation_date = timezone .now (),
86
+ last_updated = timezone .now ()
87
+ )
88
+ assert str (social_link ) == social_link .label
89
+
90
+ def test_tag_str_method ():
91
+ """Test the __str__ method of the Tag model."""
92
+ tag_id = uuid4 ()
93
+ tag = Tag (
94
+ id = tag_id ,
95
+ text = "Test Tag" ,
96
+ description = "Test Description" ,
97
+ creation_date = timezone .now ()
98
+ )
99
+ assert str (tag ) == f"{ tag_id } "
100
+
101
+ def test_discussion_entry_str_method ():
102
+ """Test the __str__ method of the DiscussionEntry model."""
103
+ user = UserFactory ()
104
+ discussion = Discussion (
105
+ id = uuid4 (),
106
+ created_by = user ,
107
+ title = "Test Discussion" ,
108
+ creation_date = timezone .now ()
109
+ )
110
+ discussion .save ()
111
+
112
+ entry_id = uuid4 ()
113
+ entry = DiscussionEntry (
114
+ id = entry_id ,
115
+ discussion = discussion ,
116
+ created_by = user ,
117
+ text = "Test Entry" ,
118
+ creation_date = timezone .now (),
119
+ last_updated = timezone .now ()
120
+ )
121
+ assert str (entry ) == f"{ entry_id } "
0 commit comments