import { beforeEach, describe, it, expect } from "vitest"; import { enUS } from "date-fns/locale"; import { routes } from "@/router"; import { createRouter, createWebHistory, Router } from "vue-router"; import { config, mount } from "@vue/test-utils"; import { Oruga } from "@oruga-ui/oruga-next"; import flushPromises from "flush-promises"; import { getMockClient } from "../../mocks/client"; import { htmlRemoveId } from "../../common"; import EventComment from "@/components/Comment/EventComment.vue"; import { IPerson } from "@/types/actor"; import { IComment } from "@/types/comment.model"; import { ActorType, CommentModeration, EventJoinOptions, EventStatus, EventVisibility, } from "@/types/enums"; import { IEvent } from "@/types/event.model"; import { reactive } from "vue"; config.global.plugins.push(Oruga); let router: Router; beforeEach(async () => { router = createRouter({ history: createWebHistory(), routes: routes, }); // await router.isReady(); }); const baseActorAvatar = { id: "", name: "", alt: "", metadata: {}, url: "https://social.tcit.fr/system/accounts/avatars/000/000/001/original/a28c50ce5f2b13fd.jpg", }; const baseActor: IPerson = { name: "Thomas Citharel", preferredUsername: "tcit", avatar: baseActorAvatar, domain: null, url: "", summary: "", suspended: false, type: ActorType.PERSON, id: "598", }; const baseEvent: IEvent = { uuid: "an-uuid", title: "A very interesting event", description: "Things happen", beginsOn: new Date().toISOString(), endsOn: new Date().toISOString(), physicalAddress: { description: "Somewhere", street: "", locality: "", region: "", country: "", type: "", postalCode: "", }, picture: { id: "", name: "", alt: "", metadata: {}, url: "https://mobilizon.fr/media/81d9c76aaf740f84eefb28cf2b9988bdd2495ab1f3246159fd688e242155cb23.png?name=Screenshot_20220315_171848.png", }, url: "", local: true, slug: "", publishAt: new Date().toISOString(), status: EventStatus.CONFIRMED, visibility: EventVisibility.PUBLIC, joinOptions: EventJoinOptions.FREE, draft: false, participantStats: { notApproved: 0, notConfirmed: 0, rejected: 0, participant: 0, creator: 0, moderator: 0, administrator: 0, going: 0, }, participants: { total: 0, elements: [] }, relatedEvents: [], tags: [{ slug: "something", title: "Something" }], attributedTo: undefined, organizerActor: { ...baseActor, name: "Hello", avatar: { ...baseActorAvatar, url: "https://mobilizon.fr/media/653c2dcbb830636e0db975798163b85e038dfb7713e866e96d36bd411e105e3c.png?name=festivalsanantes%27s%20avatar.png", }, }, comments: [], options: { maximumAttendeeCapacity: 0, remainingAttendeeCapacity: 0, showRemainingAttendeeCapacity: false, anonymousParticipation: false, hideOrganizerWhenGroupEvent: false, offers: [], participationConditions: [], attendees: [], program: "", commentModeration: CommentModeration.ALLOW_ALL, showParticipationPrice: false, showStartTime: false, showEndTime: false, timezone: null, isOnline: false, }, metadata: [], contacts: [], language: "en", category: "hello", }; const event = reactive(baseEvent); const comment = reactive({ text: "hello", local: true, actor: baseActor, totalReplies: 5, replies: [ { text: "a reply!", id: "90", actor: baseActor, updatedAt: new Date().toISOString(), url: "http://somewhere.tld", replies: [], totalReplies: 0, isAnnouncement: false, local: false, }, { text: "a reply to another reply!", id: "92", actor: baseActor, updatedAt: new Date().toISOString(), url: "http://somewhere.tld", replies: [], totalReplies: 0, isAnnouncement: false, local: false, }, ], isAnnouncement: false, updatedAt: new Date().toISOString(), url: "http://somewhere.tld", }); const generateWrapper = (props: any) => { const global_data = getMockClient([]); global_data.provide.dateFnsLocale = enUS; global_data.plugins = [router]; return mount(EventComment, { props: props, global: { ...global_data, stubs: { RouterLink: false, }, }, }); }; describe("EventComment", () => { it("Show Basic", async () => { const wrapper = generateWrapper({ comment: comment, event: event, currentActor: baseActor, }); await wrapper.vm.$nextTick(); await flushPromises(); expect(htmlRemoveId(wrapper.html())).toMatchSnapshot(); }); it("Show Announcement", async () => { const wrapper = generateWrapper({ comment: { ...comment, isAnnouncement: true }, event: event, currentActor: baseActor, }); await wrapper.vm.$nextTick(); await flushPromises(); expect(htmlRemoveId(wrapper.html())).toMatchSnapshot(); }); });