|
| 1 | +import prismaMock from "../../../../../../../../../tests/libs/__mocks__/prismaMock"; |
| 2 | + |
| 3 | +import type { Request, Response } from "express"; |
| 4 | +import type { NextApiRequest, NextApiResponse } from "next"; |
| 5 | +import { createMocks } from "node-mocks-http"; |
| 6 | +import { describe, expect, test, vi, afterEach } from "vitest"; |
| 7 | + |
| 8 | +import { |
| 9 | + getTranscriptsAccessLinkFromRecordingId, |
| 10 | + checkIfRoomNameMatchesInRecording, |
| 11 | +} from "@calcom/core/videoClient"; |
| 12 | +import { buildBooking } from "@calcom/lib/test/builder"; |
| 13 | + |
| 14 | +import { getAccessibleUsers } from "~/lib/utils/retrieveScopedAccessibleUsers"; |
| 15 | + |
| 16 | +import authMiddleware from "../../../../../../pages/api/bookings/[id]/_auth-middleware"; |
| 17 | +import handler from "../../../../../../pages/api/bookings/[id]/transcripts/[recordingId]/_get"; |
| 18 | + |
| 19 | +type CustomNextApiRequest = NextApiRequest & Request; |
| 20 | +type CustomNextApiResponse = NextApiResponse & Response; |
| 21 | + |
| 22 | +vi.mock("@calcom/core/videoClient", () => { |
| 23 | + return { |
| 24 | + getTranscriptsAccessLinkFromRecordingId: vi.fn(), |
| 25 | + checkIfRoomNameMatchesInRecording: vi.fn(), |
| 26 | + }; |
| 27 | +}); |
| 28 | + |
| 29 | +vi.mock("~/lib/utils/retrieveScopedAccessibleUsers", () => { |
| 30 | + return { |
| 31 | + getAccessibleUsers: vi.fn(), |
| 32 | + }; |
| 33 | +}); |
| 34 | + |
| 35 | +afterEach(() => { |
| 36 | + vi.resetAllMocks(); |
| 37 | +}); |
| 38 | + |
| 39 | +const mockGetTranscripts = () => { |
| 40 | + const downloadLinks = [{ format: "json", link: "https://URL1" }]; |
| 41 | + |
| 42 | + vi.mocked(getTranscriptsAccessLinkFromRecordingId).mockResolvedValue(downloadLinks); |
| 43 | + vi.mocked(checkIfRoomNameMatchesInRecording).mockResolvedValue(true); |
| 44 | + |
| 45 | + return downloadLinks; |
| 46 | +}; |
| 47 | + |
| 48 | +const recordingId = "abc-xyz"; |
| 49 | + |
| 50 | +describe("GET /api/bookings/[id]/transcripts/[recordingId]", () => { |
| 51 | + test("Returns transcripts if user is system-wide admin", async () => { |
| 52 | + const adminUserId = 1; |
| 53 | + const userId = 2; |
| 54 | + |
| 55 | + const bookingId = 1111; |
| 56 | + |
| 57 | + prismaMock.booking.findUnique.mockResolvedValue( |
| 58 | + buildBooking({ |
| 59 | + id: bookingId, |
| 60 | + userId, |
| 61 | + references: [ |
| 62 | + { |
| 63 | + id: 1, |
| 64 | + type: "daily_video", |
| 65 | + uid: "17OHkCH53pBa03FhxMbw", |
| 66 | + meetingId: "17OHkCH53pBa03FhxMbw", |
| 67 | + meetingPassword: "password", |
| 68 | + meetingUrl: "https://URL", |
| 69 | + }, |
| 70 | + ], |
| 71 | + }) |
| 72 | + ); |
| 73 | + |
| 74 | + const mockedTranscripts = mockGetTranscripts(); |
| 75 | + const { req, res } = createMocks<CustomNextApiRequest, CustomNextApiResponse>({ |
| 76 | + method: "GET", |
| 77 | + body: {}, |
| 78 | + query: { |
| 79 | + id: bookingId, |
| 80 | + recordingId, |
| 81 | + }, |
| 82 | + }); |
| 83 | + |
| 84 | + req.isSystemWideAdmin = true; |
| 85 | + req.userId = adminUserId; |
| 86 | + |
| 87 | + await authMiddleware(req); |
| 88 | + await handler(req, res); |
| 89 | + |
| 90 | + expect(res.statusCode).toBe(200); |
| 91 | + expect(JSON.parse(res._getData())).toEqual(mockedTranscripts); |
| 92 | + }); |
| 93 | + |
| 94 | + test("Allows GET transcripts when user is org-wide admin", async () => { |
| 95 | + const adminUserId = 1; |
| 96 | + const memberUserId = 10; |
| 97 | + const bookingId = 3333; |
| 98 | + |
| 99 | + prismaMock.booking.findUnique.mockResolvedValue( |
| 100 | + buildBooking({ |
| 101 | + id: bookingId, |
| 102 | + userId: memberUserId, |
| 103 | + references: [ |
| 104 | + { id: 1, type: "daily_video", uid: "17OHkCH53pBa03FhxMbw", meetingId: "17OHkCH53pBa03FhxMbw" }, |
| 105 | + ], |
| 106 | + }) |
| 107 | + ); |
| 108 | + |
| 109 | + const { req, res } = createMocks<CustomNextApiRequest, CustomNextApiResponse>({ |
| 110 | + method: "GET", |
| 111 | + body: {}, |
| 112 | + query: { |
| 113 | + id: bookingId, |
| 114 | + recordingId, |
| 115 | + }, |
| 116 | + }); |
| 117 | + |
| 118 | + req.userId = adminUserId; |
| 119 | + req.isOrganizationOwnerOrAdmin = true; |
| 120 | + mockGetTranscripts(); |
| 121 | + |
| 122 | + vi.mocked(getAccessibleUsers).mockResolvedValue([memberUserId]); |
| 123 | + |
| 124 | + await authMiddleware(req); |
| 125 | + await handler(req, res); |
| 126 | + |
| 127 | + expect(res.statusCode).toBe(200); |
| 128 | + }); |
| 129 | +}); |
0 commit comments