Skip to content

Commit 71d43e3

Browse files
authored
Merge branch 'main' into 670
2 parents 8e675eb + 7664f40 commit 71d43e3

File tree

5 files changed

+196
-7
lines changed

5 files changed

+196
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
3+
import datetime
4+
5+
import pytest
6+
7+
from communities.factories import StatusTypeFactory
8+
from communities.organizations.factories import (
9+
OrganizationApplicationStatusFactory,
10+
OrganizationFactory,
11+
OrganizationImageFactory,
12+
OrganizationTextFactory,
13+
)
14+
from communities.organizations.models import OrganizationApplication
15+
16+
pytestmark = pytest.mark.django_db
17+
18+
19+
def test_organization_application_str() -> None:
20+
"""Test string representation of OrganizationApplication model."""
21+
22+
org = OrganizationFactory.build()
23+
status = StatusTypeFactory()
24+
25+
# OrganizationApplication instead of OrganizationApplicationFactory (many-to-many field assignment issues).
26+
org_application = OrganizationApplication(
27+
org=org,
28+
status=status,
29+
creation_date=datetime.datetime.now(tz=datetime.timezone.utc),
30+
)
31+
32+
assert str(org_application) == f"{org_application.creation_date}"
33+
34+
assert str(org_application) == f"{org_application.creation_date}"
35+
36+
37+
def test_organization_application_status_str() -> None:
38+
"""Test string representation of OrganizationApplicationStatus model."""
39+
status = OrganizationApplicationStatusFactory.build(status_name="Approved")
40+
assert str(status) == "Approved"
41+
42+
43+
def test_organization_image_str() -> None:
44+
"""Test string representation of OrganizationImage model."""
45+
org_image = OrganizationImageFactory.build()
46+
assert str(org_image) == f"{org_image.id}"
47+
48+
49+
def test_organization_text_str() -> None:
50+
"""Test string representation of OrganizationText model."""
51+
org_text = OrganizationTextFactory.build(iso="en")
52+
org = org_text.org
53+
assert str(org_text) == f"{org} - en"

backend/content/tests/tests.py

+101-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,20 @@
55

66
# mypy: ignore-errors
77
import pytest
8+
from uuid import uuid4
9+
from django.utils import timezone
810

911
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
1122
pytestmark = pytest.mark.django_db
1223

1324

@@ -19,3 +30,92 @@ def test_str_methods() -> None:
1930
assert str(resource) == resource.name
2031
assert str(task) == task.name
2132
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}"

backend/events/tests.py

+12
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
FormatFactory,
1414
RoleFactory,
1515
)
16+
from events.models import EventText
1617

1718
pytestmark = pytest.mark.django_db
1819

@@ -29,3 +30,14 @@ def test_str_methods() -> None:
2930
assert str(event_attendee_status) == event_attendee_status.status_name
3031
assert str(_format) == _format.name
3132
assert str(role) == role.name
33+
34+
def test_event_text_str_method() -> None:
35+
event = EventFactory.create()
36+
event_text = EventText.objects.create(
37+
event=event,
38+
iso="en",
39+
primary=True,
40+
description="Test description",
41+
get_involved="Get involved text"
42+
)
43+
assert str(event_text) == f"{event_text.event} - {event_text.iso}"

frontend/components/card/discussion/CardDiscussionInput.vue

+10-6
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,13 @@
128128
</template>
129129

130130
<script setup lang="ts">
131-
import type { DiscussionInput } from "~/types/content/discussion";
132-
import { IconMap } from "~/types/icon-map";
133-
import { useEditor, EditorContent } from "@tiptap/vue-3";
134-
import Placeholder from "@tiptap/extension-placeholder";
135-
import StarterKit from "@tiptap/starter-kit";
136131
import Link from "@tiptap/extension-link";
137132
import Mention from "@tiptap/extension-mention";
133+
import Placeholder from "@tiptap/extension-placeholder";
134+
import StarterKit from "@tiptap/starter-kit";
135+
import { EditorContent, useEditor } from "@tiptap/vue-3";
136+
import type { DiscussionInput } from "~/types/content/discussion";
137+
import { IconMap } from "~/types/icon-map";
138138
import Suggestion from "../../../utils/mentionSuggestion";
139139

140140
const showTooltip = ref(false);
@@ -189,7 +189,7 @@ const italic = () => {
189189
};
190190
const blockquote = () => {
191191
console.log("click on blockquote");
192-
editor.value?.chain().focus().toggleCodeBlock().run();
192+
editor.value?.chain().focus().toggleBlockquote().run();
193193
};
194194
const link = () => {
195195
console.log("click on link");
@@ -236,4 +236,8 @@ const listol = () => {
236236
height: 0;
237237
pointer-events: none;
238238
}
239+
240+
.tiptap blockquote {
241+
@apply my-2 rounded-r-md border-l-4 border-section-div bg-layer-2 py-1 pl-4 italic text-distinct-text;
242+
}
239243
</style>

frontend/nuxt.config.ts

+20
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,33 @@ export default defineNuxtConfig({
1212
app: {
1313
head,
1414
},
15+
1516
modules: modules,
1617
ssr: false,
18+
1719
typescript: {
1820
// strict: true,
1921
// typeCheck: true,
2022
},
23+
2124
devtools: {
2225
enabled: true,
2326
},
27+
2428
alias: {
2529
"@": resolve(__dirname, "./"),
2630
},
31+
2732
plugins: ["~/plugins/i18n-head.ts"],
33+
2834
content: {
2935
watch: { enabled: false },
3036
},
37+
3138
imports: {
3239
dirs: ["./stores"],
3340
},
41+
3442
vite: {
3543
server: {
3644
watch: {
@@ -47,23 +55,28 @@ export default defineNuxtConfig({
4755
},
4856
},
4957
},
58+
5059
colorMode: {
5160
classSuffix: "",
5261
},
62+
5363
css: ["reduced-motion/css"],
64+
5465
tailwindcss: {
5566
cssPath: "~/assets/css/tailwind.css",
5667
configPath: "tailwind.config.ts",
5768
config: {
5869
plugins: [tailwindTypography],
5970
},
6071
},
72+
6173
postcss: {
6274
plugins: {
6375
tailwindcss: {},
6476
autoprefixer: {},
6577
},
6678
},
79+
6780
i18n: {
6881
lazy: true,
6982
strategy: "prefix_and_default",
@@ -79,18 +92,21 @@ export default defineNuxtConfig({
7992
redirectOn: "root",
8093
},
8194
},
95+
8296
components: [
8397
{
8498
path: "~/components",
8599
global: true,
86100
},
87101
],
102+
88103
vue: {
89104
compilerOptions: {
90105
isCustomElement: (tag) =>
91106
["swiper-slide", "swiper-container"].includes(tag),
92107
},
93108
},
109+
94110
hooks: {
95111
"pages:extend": (pages: NuxtPage[]) => {
96112
applyMiddleware(pages);
@@ -99,9 +115,11 @@ export default defineNuxtConfig({
99115
console.log("App instance resolved:", app);
100116
},
101117
},
118+
102119
nitro: {
103120
preset: "netlify-static",
104121
},
122+
105123
security: {
106124
headers: {
107125
contentSecurityPolicy: {
@@ -124,4 +142,6 @@ export default defineNuxtConfig({
124142
maxUploadFileRequestInBytes: 5000000,
125143
},
126144
},
145+
146+
compatibilityDate: "2025-03-12",
127147
});

0 commit comments

Comments
 (0)