Files
Compass/backend/api/tests/unit/create-notification.unit.test.ts
Okechi Jones-Williams 28ce878b34 Add API unit tests for create-* endpoints (#23)
* setting up test structure

* .

* added playwright config file, deleted original playwright folder and moved "some.test" file

* continued test structure setup

* Updating test folder structure

* Added database seeding script and backend testing folder structure

* removed the database test

* Replaced db seeding script

* Updated userInformation.ts to use values from choices.tsx

* merge prep

* removing extra unit test, moving api test to correct folder

* Pushing to get help with sql Unit test

* Updating get-profiles unit tests

* Added more unit tests

* .

* Added more unit tests

* Added getSupabaseToken unit test

* .

* excluding supabase token test so ci can pass

* .

* Seperated the seedDatabase func into its own file so it can be accessed seperatly

* Fixed failing test

* .

* .

* Fix tests

* Fix lint

* Clean

* Fixed module paths in compute-score unit test

* Updated root tsconfig to recognise backend/shared

* Added create comment unit test

* Added some unit tests

* Working on createProfile return issue

* .

* Fixes

---------

Co-authored-by: MartinBraquet <martin.braquet@gmail.com>
2025-12-12 10:34:07 +02:00

98 lines
3.6 KiB
TypeScript

jest.mock('common/util/try-catch');
jest.mock('shared/supabase/init');
jest.mock('shared/supabase/notifications');
import * as supabaseInit from "shared/supabase/init";
import * as createNotificationModules from "api/create-notification";
import { tryCatch } from "common/util/try-catch";
import * as supabaseNotifications from "shared/supabase/notifications";
import { Notification } from "common/notifications";
type MockNotificationUser = Pick<Notification, 'userId'>;
describe('createNotifications', () => {
beforeEach(() => {
jest.resetAllMocks();
const mockPg = {
many: jest.fn().mockReturnValue(null)
} as any;
(supabaseInit.createSupabaseDirectClient as jest.Mock)
.mockReturnValue(mockPg);
});
afterEach(() => {
jest.restoreAllMocks();
});
describe('should', () => {
it('sucessfully create a notification', async () => {
const mockUsers = [
{
created_time: "mockCreatedTime",
data: {"mockData": "mockDataJson"},
id: "mockId",
name: "mockName",
name_user_vector: "mockNUV",
username: "mockUsername"
},
];
const mockNotification = {
userId: "mockUserId"
} as MockNotificationUser;
(tryCatch as jest.Mock).mockResolvedValue({data: mockUsers, error:null});
(supabaseNotifications.insertNotificationToSupabase as jest.Mock)
.mockResolvedValue(null);
const results = await createNotificationModules.createNotifications(mockNotification as Notification);
expect(results?.success).toBeTruthy;
});
it('throws an error if its unable to fetch users', async () => {
const mockUsers = [
{
created_time: "mockCreatedTime",
data: {"mockData": "mockDataJson"},
id: "mockId",
name: "mockName",
name_user_vector: "mockNUV",
username: "mockUsername"
},
];
const mockNotification = {
userId: "mockUserId"
} as MockNotificationUser;
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
(tryCatch as jest.Mock).mockResolvedValue({data: mockUsers, error:Error});
await createNotificationModules.createNotifications(mockNotification as Notification)
expect(errorSpy).toHaveBeenCalledWith('Error fetching users', expect.objectContaining({name: 'Error'}))
});
it('throws an error if there are no users', async () => {
const mockUsers = [
{
created_time: "mockCreatedTime",
data: {"mockData": "mockDataJson"},
id: "mockId",
name: "mockName",
name_user_vector: "mockNUV",
username: "mockUsername"
},
];
const mockNotification = {
userId: "mockUserId"
} as MockNotificationUser;
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
(tryCatch as jest.Mock).mockResolvedValue({data: null, error:null});
await createNotificationModules.createNotifications(mockNotification as Notification)
expect(errorSpy).toHaveBeenCalledWith('No users found')
});
});
});