mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-29 12:04:04 -04:00
* Test * Add pretty formatting * Fix Tests * Fix Tests * Fix Tests * Fix * Add pretty formatting fix * Fix * Test * Fix tests * Clean typeckech * Add prettier check * Fix api tsconfig * Fix api tsconfig * Fix tsconfig * Fix * Fix * Prettier
75 lines
2.5 KiB
TypeScript
75 lines
2.5 KiB
TypeScript
jest.mock('shared/supabase/init')
|
|
jest.mock('common/envs/constants')
|
|
jest.mock('common/util/try-catch')
|
|
|
|
import {AuthedUser} from 'api/helpers/endpoint'
|
|
import {removePinnedPhoto} from 'api/remove-pinned-photo'
|
|
import * as envConstants from 'common/envs/constants'
|
|
import {sqlMatch} from 'common/test-utils'
|
|
import {tryCatch} from 'common/util/try-catch'
|
|
import * as supabaseInit from 'shared/supabase/init'
|
|
|
|
describe('removePinnedPhoto', () => {
|
|
let mockPg = {} as any
|
|
beforeEach(() => {
|
|
jest.resetAllMocks()
|
|
mockPg = {
|
|
none: jest.fn(),
|
|
}
|
|
;(supabaseInit.createSupabaseDirectClient as jest.Mock).mockReturnValue(mockPg)
|
|
})
|
|
afterEach(() => {
|
|
jest.restoreAllMocks()
|
|
})
|
|
|
|
describe('when given valid input', () => {
|
|
it('should return success', async () => {
|
|
const mockBody = {userId: 'mockUserId'}
|
|
const mockAuth = {uid: '321'} as AuthedUser
|
|
const mockReq = {} as any
|
|
|
|
jest.spyOn(envConstants, 'isAdminId').mockReturnValue(true)
|
|
;(mockPg.none as jest.Mock).mockResolvedValue(null)
|
|
;(tryCatch as jest.Mock).mockResolvedValue({error: null})
|
|
|
|
const result: any = await removePinnedPhoto(mockBody, mockAuth, mockReq)
|
|
|
|
expect(result.success).toBeTruthy()
|
|
expect(envConstants.isAdminId).toBeCalledTimes(1)
|
|
expect(envConstants.isAdminId).toBeCalledWith(mockAuth.uid)
|
|
expect(mockPg.none).toBeCalledTimes(1)
|
|
expect(mockPg.none).toBeCalledWith(
|
|
sqlMatch('update profiles set pinned_url = null where user_id = $1'),
|
|
[mockBody.userId],
|
|
)
|
|
})
|
|
})
|
|
describe('when an error occurs', () => {
|
|
it('should throw if user auth is not an admin', async () => {
|
|
const mockBody = {userId: 'mockUserId'}
|
|
const mockAuth = {uid: '321'} as AuthedUser
|
|
const mockReq = {} as any
|
|
|
|
jest.spyOn(envConstants, 'isAdminId').mockReturnValue(false)
|
|
|
|
expect(removePinnedPhoto(mockBody, mockAuth, mockReq)).rejects.toThrow(
|
|
'Only admins can remove pinned photo',
|
|
)
|
|
})
|
|
|
|
it('should throw if failed to remove the pinned photo', async () => {
|
|
const mockBody = {userId: 'mockUserId'}
|
|
const mockAuth = {uid: '321'} as AuthedUser
|
|
const mockReq = {} as any
|
|
|
|
jest.spyOn(envConstants, 'isAdminId').mockReturnValue(true)
|
|
;(mockPg.none as jest.Mock).mockResolvedValue(null)
|
|
;(tryCatch as jest.Mock).mockResolvedValue({error: Error})
|
|
|
|
expect(removePinnedPhoto(mockBody, mockAuth, mockReq)).rejects.toThrow(
|
|
'Failed to remove pinned photo',
|
|
)
|
|
})
|
|
})
|
|
})
|