* feat: introducing admin module, resolvers and service files as a module * feat: adding admin module in the app module * feat: introducing admin guard and decorator for allowing admin operations * feat: invited user model * chore: added user invitation mail description to mailer service * chore: added admin and user related error * feat: added invited users as a new model in prisma * chore: added admin related topics to pubsub * chore: added service method to fetch all users from user table * chore: added user deletion base implementation * Revert "chore: added user deletion base implementation" This reverts commit d1615ad83db2bae946e2d366a903d2f95051dabb. * feat: adding team related operations to admin * chore: adding admin related service methods to teams module service * chore: adding admin related service methods to team coll invitations requests envs * chore: added more module error messages * chore: added admin check service method * chore: added find individual user by UID in admin * HBE-106 feat: introduced code to handle first time admin login setup (#23) * test: wrote test cases for verifyAdmin route service method * chore: added comments to verifyAdmin service method * chore: deleted the prisma migration file * chore: added find admin users * feat: added user deletion into admin module * chore: admin user related errors * chore: fixed registry pattern in the shortcodes and teams to handle user deletion * chore: add subscription topic for user deletion * chore: updated user type in data handler * feat: implement and fix user deletion * feat: added make user admin mutation * chore: added unit tests for admin specific service methods in admin module * chore: added invitation not found error * chore: added admin specific operation test cases in specific modules * chore: added tests related to user deletion and admin related operation in user module * chore: updated to error constant when invitations not found * chore: fix rebase overwritten methods * feat: implement remove user as admin * chore: add new line * feat: introducing basic metrics into the self-hosted admin module (HBE-104) (#43) * feat: introducing admin module, resolvers and service files as a module * feat: adding admin module in the app module * feat: introducing admin guard and decorator for allowing admin operations * feat: invited user model * chore: added user invitation mail description to mailer service * chore: added admin and user related error * feat: added invited users as a new model in prisma * chore: added admin related topics to pubsub * chore: added service method to fetch all users from user table * chore: added user deletion base implementation * Revert "chore: added user deletion base implementation" This reverts commit d1615ad83db2bae946e2d366a903d2f95051dabb. * feat: adding team related operations to admin * chore: adding admin related service methods to teams module service * chore: adding admin related service methods to team coll invitations requests envs * chore: added more module error messages * chore: added admin check service method * chore: added find individual user by UID in admin * HBE-106 feat: introduced code to handle first time admin login setup (#23) * test: wrote test cases for verifyAdmin route service method * chore: added comments to verifyAdmin service method * chore: deleted the prisma migration file * chore: added find admin users * feat: added user deletion into admin module * chore: admin user related errors * chore: fixed registry pattern in the shortcodes and teams to handle user deletion * chore: add subscription topic for user deletion * chore: updated user type in data handler * feat: implement and fix user deletion * feat: added make user admin mutation * chore: added unit tests for admin specific service methods in admin module * chore: added invitation not found error * chore: added admin specific operation test cases in specific modules * chore: added tests related to user deletion and admin related operation in user module * chore: updated to error constant when invitations not found * chore: fix rebase overwritten methods * feat: implement remove user as admin * chore: add new line * chore: created new GQL return type for admin module * chore: created resolver and service method for method to fetch org metrics * chore: removed all entities relevant to seperate query for fetching admin metrics * chore: created all resolvers for metrics * feat: completed adding field resolves to query org metrics * test: wrote tests for all metrics related methods in admin module * test: added test cases for get count functions in multiple modules * chore: removed prisma migration folder * Delete backend-schema.gql * chore: resolved merge conflicts in team test file --------- Co-authored-by: ankitsridhar16 <ankit.sridhar16@gmail.com> * refactor: update mailer service to stop using postmark (#38) * refactor: update mailer service to stop using postmark * chore: remove postmark as a dep and move out postmark code * chore: remove postmark variables from .env.example * chore: add formal errors for mailer initialization errors * chore: add and update jsdoc comments in mailer service methods * chore: added user invitation mail description to mailer service * chore: updated with review changes requested for admin module * feat: adding admin resolver to gql schema * feat: adding input args for admin resolvers * chore: invited user renamed * chore: updated mailer service to be compatible with new mailer * chore: updated team service with review changes * chore: updated team collection service with review changes * chore: updated team environments service with review changes * chore: updated team requests service with review changes * chore: updated user service with review changes * refactor: invited user model * chore: review changes implemented * chore: implemented the review changes for admin, user and teams module * chore: removed error handling and implemented review changes * refactor: naming change for IsAdmin --------- Co-authored-by: Balu Babu <balub997@gmail.com> Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
1465 lines
46 KiB
TypeScript
1465 lines
46 KiB
TypeScript
import { Team, TeamCollection as DBTeamCollection } from '@prisma/client';
|
|
import { mock, mockDeep, mockReset } from 'jest-mock-extended';
|
|
import {
|
|
TEAM_COLL_DEST_SAME,
|
|
TEAM_COLL_INVALID_JSON,
|
|
TEAM_COLL_IS_PARENT_COLL,
|
|
TEAM_COLL_NOT_FOUND,
|
|
TEAM_COLL_NOT_SAME_TEAM,
|
|
TEAM_COLL_SHORT_TITLE,
|
|
TEAM_COL_ALREADY_ROOT,
|
|
TEAM_COL_REORDERING_FAILED,
|
|
TEAM_COL_SAME_NEXT_COLL,
|
|
TEAM_INVALID_COLL_ID,
|
|
TEAM_NOT_OWNER,
|
|
} from 'src/errors';
|
|
import { PrismaService } from 'src/prisma/prisma.service';
|
|
import { PubSubService } from 'src/pubsub/pubsub.service';
|
|
import { AuthUser } from 'src/types/AuthUser';
|
|
import { TeamCollectionService } from './team-collection.service';
|
|
import { TeamCollection } from './team-collection.model';
|
|
import { TeamCollectionModule } from './team-collection.module';
|
|
import * as E from 'fp-ts/Either';
|
|
|
|
const mockPrisma = mockDeep<PrismaService>();
|
|
const mockPubSub = mockDeep<PubSubService>();
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
const teamCollectionService = new TeamCollectionService(
|
|
mockPrisma,
|
|
mockPubSub as any,
|
|
);
|
|
|
|
const currentTime = new Date();
|
|
|
|
const user: AuthUser = {
|
|
uid: '123344',
|
|
email: 'dwight@dundermifflin.com',
|
|
displayName: 'Dwight Schrute',
|
|
photoURL: 'https://en.wikipedia.org/wiki/Dwight_Schrute',
|
|
isAdmin: false,
|
|
refreshToken: 'hbfvdkhjbvkdvdfjvbnkhjb',
|
|
createdOn: currentTime,
|
|
currentGQLSession: {},
|
|
currentRESTSession: {},
|
|
};
|
|
|
|
const team: Team = {
|
|
id: 'team_1',
|
|
name: 'Team 1',
|
|
};
|
|
|
|
const rootTeamCollection: DBTeamCollection = {
|
|
id: '123',
|
|
orderIndex: 1,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
};
|
|
|
|
const rootTeamCollection_2: DBTeamCollection = {
|
|
id: 'erv',
|
|
orderIndex: 2,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
};
|
|
|
|
const childTeamCollection: DBTeamCollection = {
|
|
id: 'rfe',
|
|
orderIndex: 1,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Child Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
};
|
|
|
|
const childTeamCollection_2: DBTeamCollection = {
|
|
id: 'bgdz',
|
|
orderIndex: 1,
|
|
parentID: rootTeamCollection_2.id,
|
|
title: 'Child Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
};
|
|
|
|
const rootTeamCollectionList: DBTeamCollection[] = [
|
|
{
|
|
id: 'fdv',
|
|
orderIndex: 1,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: 'fbbg',
|
|
orderIndex: 2,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: 'fgbfg',
|
|
orderIndex: 3,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: 'bre3',
|
|
orderIndex: 4,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: 'hghgf',
|
|
orderIndex: 5,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '123',
|
|
orderIndex: 6,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '54tyh',
|
|
orderIndex: 7,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '234re',
|
|
orderIndex: 8,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '34rtg',
|
|
orderIndex: 9,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '45tgh',
|
|
orderIndex: 10,
|
|
parentID: null,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
];
|
|
|
|
const childTeamCollectionList: DBTeamCollection[] = [
|
|
{
|
|
id: '123',
|
|
orderIndex: 1,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '345',
|
|
orderIndex: 2,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '456',
|
|
orderIndex: 3,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '567',
|
|
orderIndex: 4,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '123',
|
|
orderIndex: 5,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '678',
|
|
orderIndex: 6,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '789',
|
|
orderIndex: 7,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '890',
|
|
orderIndex: 8,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '012',
|
|
orderIndex: 9,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
{
|
|
id: '0bhu',
|
|
orderIndex: 10,
|
|
parentID: rootTeamCollection.id,
|
|
title: 'Root Collection 1',
|
|
teamID: team.id,
|
|
createdOn: currentTime,
|
|
updatedOn: currentTime,
|
|
},
|
|
];
|
|
|
|
beforeEach(() => {
|
|
mockReset(mockPrisma);
|
|
mockPubSub.publish.mockClear();
|
|
});
|
|
|
|
describe('getTeamOfCollection', () => {
|
|
test('should return the team of a collection successfully with valid collectionID', async () => {
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce({
|
|
...rootTeamCollection,
|
|
team: team,
|
|
} as any);
|
|
|
|
const result = await teamCollectionService.getTeamOfCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(team);
|
|
});
|
|
|
|
test('should throw TEAM_INVALID_COLL_ID when collectionID is invalid', async () => {
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce(null);
|
|
|
|
const result = await teamCollectionService.getTeamOfCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_INVALID_COLL_ID);
|
|
});
|
|
});
|
|
|
|
describe('getParentOfCollection', () => {
|
|
test('should return the parent collection successfully for a child collection with valid collectionID', async () => {
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce({
|
|
...childTeamCollection,
|
|
parent: rootTeamCollection,
|
|
} as any);
|
|
|
|
const result = await teamCollectionService.getParentOfCollection(
|
|
childTeamCollection.id,
|
|
);
|
|
expect(result).toEqual(rootTeamCollection);
|
|
});
|
|
|
|
test('should return null successfully for a root collection with valid collectionID', async () => {
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce({
|
|
...rootTeamCollection,
|
|
parent: null,
|
|
} as any);
|
|
|
|
const result = await teamCollectionService.getParentOfCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqual(null);
|
|
});
|
|
|
|
test('should return null with invalid collectionID', async () => {
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce(null);
|
|
|
|
const result = await teamCollectionService.getParentOfCollection(
|
|
'invalidID',
|
|
);
|
|
expect(result).toEqual(null);
|
|
});
|
|
});
|
|
|
|
describe('getChildrenOfCollection', () => {
|
|
test('should return a list of child collections successfully with valid inputs', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce(
|
|
childTeamCollectionList,
|
|
);
|
|
|
|
const result = await teamCollectionService.getChildrenOfCollection(
|
|
rootTeamCollection.id,
|
|
null,
|
|
10,
|
|
);
|
|
expect(result).toEqual(childTeamCollectionList);
|
|
});
|
|
|
|
test('should return a list of 3 child collections successfully with cursor being equal to the 7th item in the list', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
{ ...childTeamCollectionList[7] },
|
|
{ ...childTeamCollectionList[8] },
|
|
{ ...childTeamCollectionList[9] },
|
|
]);
|
|
|
|
const result = await teamCollectionService.getChildrenOfCollection(
|
|
rootTeamCollection.id,
|
|
childTeamCollectionList[6].id,
|
|
10,
|
|
);
|
|
expect(result).toEqual([
|
|
{ ...childTeamCollectionList[7] },
|
|
{ ...childTeamCollectionList[8] },
|
|
{ ...childTeamCollectionList[9] },
|
|
]);
|
|
});
|
|
|
|
test('should return a empty array with invalid inputs', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
|
|
const result = await teamCollectionService.getChildrenOfCollection(
|
|
'invalidID',
|
|
null,
|
|
10,
|
|
);
|
|
expect(result).toEqual([]);
|
|
});
|
|
});
|
|
|
|
describe('getTeamRootCollections', () => {
|
|
test('should return a list of root collections successfully with valid inputs', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce(
|
|
rootTeamCollectionList,
|
|
);
|
|
|
|
const result = await teamCollectionService.getTeamRootCollections(
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
10,
|
|
);
|
|
expect(result).toEqual(rootTeamCollectionList);
|
|
});
|
|
|
|
test('should return a list of 3 root collections successfully with cursor being equal to the 7th item in the list', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
{ ...rootTeamCollectionList[7] },
|
|
{ ...rootTeamCollectionList[8] },
|
|
{ ...rootTeamCollectionList[9] },
|
|
]);
|
|
|
|
const result = await teamCollectionService.getTeamRootCollections(
|
|
rootTeamCollection.teamID,
|
|
rootTeamCollectionList[6].id,
|
|
10,
|
|
);
|
|
expect(result).toEqual([
|
|
{ ...rootTeamCollectionList[7] },
|
|
{ ...rootTeamCollectionList[8] },
|
|
{ ...rootTeamCollectionList[9] },
|
|
]);
|
|
});
|
|
|
|
test('should return a empty array with invalid inputs', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
|
|
const result = await teamCollectionService.getTeamRootCollections(
|
|
'invalidTeamID',
|
|
null,
|
|
10,
|
|
);
|
|
expect(result).toEqual([]);
|
|
});
|
|
});
|
|
|
|
describe('getCollection', () => {
|
|
test('should return a root TeamCollection with valid collectionID', async () => {
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
const result = await teamCollectionService.getCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(rootTeamCollection);
|
|
});
|
|
|
|
test('should return a child TeamCollection with valid collectionID', async () => {
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
|
|
const result = await teamCollectionService.getCollection(
|
|
childTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(childTeamCollection);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND when collectionID is invalid', async () => {
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockRejectedValue(
|
|
'NotFoundError',
|
|
);
|
|
|
|
const result = await teamCollectionService.getCollection('123');
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
});
|
|
|
|
describe('createCollection', () => {
|
|
test('should throw TEAM_COLL_SHORT_TITLE when title is less than 3 characters', async () => {
|
|
const result = await teamCollectionService.createCollection(
|
|
rootTeamCollection.teamID,
|
|
'ab',
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_SHORT_TITLE);
|
|
});
|
|
|
|
test('should throw TEAM_NOT_OWNER when parent TeamCollection does not belong to the team', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockRejectedValueOnce(
|
|
'NotFoundError',
|
|
);
|
|
|
|
const result = await teamCollectionService.createCollection(
|
|
rootTeamCollection.teamID,
|
|
'abcd',
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_NOT_OWNER);
|
|
});
|
|
|
|
test('should successfully create a new root TeamCollection with valid inputs', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.teamCollection.create.mockResolvedValueOnce(rootTeamCollection);
|
|
|
|
const result = await teamCollectionService.createCollection(
|
|
rootTeamCollection.teamID,
|
|
'abcdefg',
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(rootTeamCollection);
|
|
});
|
|
|
|
test('should successfully create a new child TeamCollection with valid inputs', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
//getChildCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.teamCollection.create.mockResolvedValueOnce(childTeamCollection);
|
|
|
|
const result = await teamCollectionService.createCollection(
|
|
childTeamCollection.teamID,
|
|
childTeamCollection.title,
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(childTeamCollection);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_added" if child TeamCollection is created successfully', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
//getChildCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.teamCollection.create.mockResolvedValueOnce(childTeamCollection);
|
|
|
|
const result = await teamCollectionService.createCollection(
|
|
childTeamCollection.teamID,
|
|
childTeamCollection.title,
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${childTeamCollection.teamID}/coll_added`,
|
|
childTeamCollection,
|
|
);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_added" if root TeamCollection is created successfully', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.teamCollection.create.mockResolvedValueOnce(rootTeamCollection);
|
|
|
|
const result = await teamCollectionService.createCollection(
|
|
rootTeamCollection.teamID,
|
|
'abcdefg',
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${rootTeamCollection.teamID}/coll_added`,
|
|
rootTeamCollection,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('renameCollection', () => {
|
|
test('should throw TEAM_COLL_SHORT_TITLE when title is less than 3 characters', async () => {
|
|
const result = await teamCollectionService.renameCollection(
|
|
rootTeamCollection.id,
|
|
'ab',
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_SHORT_TITLE);
|
|
});
|
|
|
|
test('should successfully update a TeamCollection with valid inputs', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
mockPrisma.teamCollection.update.mockResolvedValueOnce({
|
|
...rootTeamCollection,
|
|
title: 'NewTitle',
|
|
});
|
|
|
|
const result = await teamCollectionService.renameCollection(
|
|
rootTeamCollection.id,
|
|
'NewTitle',
|
|
);
|
|
expect(result).toEqualRight({
|
|
...rootTeamCollection,
|
|
title: 'NewTitle',
|
|
});
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND when collectionID is invalid', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
mockPrisma.teamCollection.update.mockRejectedValueOnce('RecordNotFound');
|
|
|
|
const result = await teamCollectionService.renameCollection(
|
|
'invalidID',
|
|
'NewTitle',
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamId>/coll_updated" if TeamCollection title is updated successfully', async () => {
|
|
// isOwnerCheck
|
|
mockPrisma.teamCollection.findFirstOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
mockPrisma.teamCollection.update.mockResolvedValueOnce({
|
|
...rootTeamCollection,
|
|
title: 'NewTitle',
|
|
});
|
|
|
|
const result = await teamCollectionService.renameCollection(
|
|
rootTeamCollection.id,
|
|
'NewTitle',
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${rootTeamCollection.teamID}/coll_updated`,
|
|
{
|
|
...rootTeamCollection,
|
|
title: 'NewTitle',
|
|
},
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('deleteCollection', () => {
|
|
test('should successfully delete a TeamCollection with valid inputs', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// deleteCollectionData
|
|
// deleteCollectionData --> FindMany query 1st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> FindMany query 2st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> DeleteMany query
|
|
mockPrisma.teamRequest.deleteMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> removeUserCollection
|
|
mockPrisma.teamCollection.delete.mockResolvedValueOnce(rootTeamCollection);
|
|
|
|
const result = await teamCollectionService.deleteCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND when collectionID is invalid ', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockRejectedValueOnce(
|
|
'NotFoundError',
|
|
);
|
|
const result = await teamCollectionService.deleteCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND when collectionID is invalid when deleting TeamCollection from UserCollectionTable ', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// deleteCollectionData
|
|
// deleteCollectionData --> FindMany query 1st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> FindMany query 2st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> DeleteMany query
|
|
mockPrisma.userRequest.deleteMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> removeUserCollection
|
|
mockPrisma.teamCollection.delete.mockRejectedValueOnce('RecordNotFound');
|
|
|
|
const result = await teamCollectionService.deleteCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_removed" if TeamCollection is deleted successfully', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// deleteCollectionData
|
|
// deleteCollectionData --> FindMany query 1st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> FindMany query 2st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> DeleteMany query
|
|
mockPrisma.userRequest.deleteMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> removeUserCollection
|
|
mockPrisma.teamCollection.delete.mockResolvedValueOnce(rootTeamCollection);
|
|
|
|
const result = await teamCollectionService.deleteCollection(
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${rootTeamCollection.teamID}/coll_removed`,
|
|
rootTeamCollection.id,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('moveCollection', () => {
|
|
test('should throw TEAM_COLL_NOT_FOUND if collectionID is invalid', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockRejectedValueOnce(
|
|
'NotFoundError',
|
|
);
|
|
|
|
const result = await teamCollectionService.moveCollection('234', '009');
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_DEST_SAME if collectionID and destCollectionID is the same', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
rootTeamCollection.id,
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_DEST_SAME);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND if destCollectionID is invalid', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockRejectedValueOnce(
|
|
'NotFoundError',
|
|
);
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
'invalidID',
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_SAME_TEAM if collectionID and destCollectionID are not from the same team', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce({
|
|
...childTeamCollection_2,
|
|
teamID: 'differentTeamID',
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
rootTeamCollection.id,
|
|
childTeamCollection_2.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_SAME_TEAM);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_IS_PARENT_COLL if collectionID is parent of destCollectionID ', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
rootTeamCollection.id,
|
|
childTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_IS_PARENT_COLL);
|
|
});
|
|
|
|
test('should throw TEAM_COL_ALREADY_ROOT when moving root TeamCollection to root', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
rootTeamCollection.id,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COL_ALREADY_ROOT);
|
|
});
|
|
|
|
test('should successfully move a child TeamCollection into root', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockResolvedValue({
|
|
...childTeamCollection,
|
|
parentID: null,
|
|
orderIndex: 2,
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
childTeamCollection.id,
|
|
null,
|
|
);
|
|
expect(result).toEqualRight({
|
|
...childTeamCollection,
|
|
parentID: null,
|
|
orderIndex: 2,
|
|
});
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND when trying to change parent of collection with invalid collectionID', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockRejectedValueOnce('RecordNotFound');
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
childTeamCollection.id,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_moved" when a child TeamCollection is moved to root successfully', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockResolvedValue({
|
|
...childTeamCollection,
|
|
parentID: null,
|
|
orderIndex: 2,
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
childTeamCollection.id,
|
|
null,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${childTeamCollection.teamID}/coll_moved`,
|
|
{
|
|
...childTeamCollection,
|
|
parentID: null,
|
|
orderIndex: 2,
|
|
},
|
|
);
|
|
});
|
|
|
|
test('should successfully move a root TeamCollection into a child TeamCollection', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(rootTeamCollection_2)
|
|
.mockResolvedValueOnce(null);
|
|
// isParent --> getCollection
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce(
|
|
childTeamCollection_2,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockResolvedValue({
|
|
...rootTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
rootTeamCollection.id,
|
|
childTeamCollection_2.id,
|
|
);
|
|
expect(result).toEqualRight({
|
|
...rootTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
});
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_moved" when root TeamCollection is moved into another child TeamCollection successfully', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(rootTeamCollection_2)
|
|
.mockResolvedValueOnce(null);
|
|
// isParent --> getCollection
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce(
|
|
childTeamCollection_2,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockResolvedValue({
|
|
...rootTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
rootTeamCollection.id,
|
|
childTeamCollection_2.id,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${childTeamCollection_2.teamID}/coll_moved`,
|
|
{
|
|
...rootTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
},
|
|
);
|
|
});
|
|
|
|
test('should successfully move a child TeamCollection into another child TeamCollection', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(rootTeamCollection_2)
|
|
.mockResolvedValueOnce(null);
|
|
// isParent --> getCollection
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce(
|
|
childTeamCollection_2,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
childTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
childTeamCollection_2,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockResolvedValue({
|
|
...childTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
childTeamCollection.id,
|
|
childTeamCollection_2.id,
|
|
);
|
|
expect(result).toEqualRight({
|
|
...childTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
});
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_moved" when child TeamCollection is moved into another child TeamCollection successfully', async () => {
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
// getCollection for destCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(rootTeamCollection_2)
|
|
.mockResolvedValueOnce(null);
|
|
// isParent --> getCollection
|
|
mockPrisma.teamCollection.findUnique.mockResolvedValueOnce(
|
|
childTeamCollection_2,
|
|
);
|
|
// updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// changeParent
|
|
// changeParent --> getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
childTeamCollection,
|
|
]);
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
childTeamCollection_2,
|
|
]);
|
|
mockPrisma.teamCollection.update.mockResolvedValue({
|
|
...childTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
});
|
|
|
|
const result = await teamCollectionService.moveCollection(
|
|
childTeamCollection.id,
|
|
childTeamCollection_2.id,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${childTeamCollection.teamID}/coll_moved`,
|
|
{
|
|
...childTeamCollection,
|
|
parentID: childTeamCollection_2.id,
|
|
orderIndex: 1,
|
|
},
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('updateCollectionOrder', () => {
|
|
test('should throw TEAM_COL_SAME_NEXT_COLL if collectionID and nextCollectionID are the same', async () => {
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollection.id,
|
|
childTeamCollection.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COL_SAME_NEXT_COLL);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_FOUND if collectionID is invalid', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockRejectedValueOnce(
|
|
'NotFoundError',
|
|
);
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_FOUND);
|
|
});
|
|
|
|
test('should successfully move the child TeamCollection to the end of the list', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollectionList[4],
|
|
);
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 10 });
|
|
mockPrisma.teamCollection.update.mockResolvedValueOnce({
|
|
...childTeamCollectionList[4],
|
|
orderIndex: childTeamCollectionList.length,
|
|
});
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
null,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should successfully move the root TeamCollection to the end of the list', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollectionList[4],
|
|
);
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 10 });
|
|
mockPrisma.teamCollection.update.mockResolvedValueOnce({
|
|
...rootTeamCollectionList[4],
|
|
orderIndex: rootTeamCollectionList.length,
|
|
});
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
rootTeamCollectionList[4].id,
|
|
null,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should throw TEAM_COL_REORDERING_FAILED when re-ordering operation failed for child TeamCollection list', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollectionList[4],
|
|
);
|
|
mockPrisma.$transaction.mockRejectedValueOnce('RecordNotFound');
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COL_REORDERING_FAILED);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_order_updated" when TeamCollection order is updated successfully for a root TeamCollection', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollectionList[4],
|
|
);
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 10 });
|
|
mockPrisma.teamCollection.update.mockResolvedValueOnce({
|
|
...rootTeamCollectionList[4],
|
|
orderIndex: rootTeamCollectionList.length,
|
|
});
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
rootTeamCollectionList[4].id,
|
|
null,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${childTeamCollectionList[4].teamID}/coll_order_updated`,
|
|
{
|
|
collection: rootTeamCollectionList[4],
|
|
nextCollection: null,
|
|
},
|
|
);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_NOT_SAME_TEAM when collectionID and nextCollectionID do not belong to the same team', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(childTeamCollectionList[4])
|
|
.mockResolvedValueOnce({
|
|
...childTeamCollection_2,
|
|
teamID: 'differendTeamID',
|
|
});
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
childTeamCollection_2.id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_NOT_SAME_TEAM);
|
|
});
|
|
|
|
test('should successfully update the order of the child TeamCollection list', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(childTeamCollectionList[4])
|
|
.mockResolvedValueOnce(childTeamCollectionList[2]);
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 3 });
|
|
mockPrisma.teamCollection.update.mockResolvedValueOnce({
|
|
...childTeamCollectionList[4],
|
|
orderIndex: 2,
|
|
});
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
childTeamCollectionList[2].id,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should successfully update the order of the root TeamCollection list', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(rootTeamCollectionList[4])
|
|
.mockResolvedValueOnce(rootTeamCollectionList[2]);
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
rootTeamCollectionList[4].id,
|
|
rootTeamCollectionList[2].id,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should throw TEAM_COL_REORDERING_FAILED when re-ordering operation failed for child TeamCollection list', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(childTeamCollectionList[4])
|
|
.mockResolvedValueOnce(childTeamCollectionList[2]);
|
|
|
|
mockPrisma.$transaction.mockRejectedValueOnce('RecordNotFound');
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
childTeamCollectionList[2].id,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COL_REORDERING_FAILED);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_order_updated" when TeamCollection order is updated successfully', async () => {
|
|
// getCollection;
|
|
mockPrisma.teamCollection.findUniqueOrThrow
|
|
.mockResolvedValueOnce(childTeamCollectionList[4])
|
|
.mockResolvedValueOnce(childTeamCollectionList[2]);
|
|
|
|
const result = await teamCollectionService.updateCollectionOrder(
|
|
childTeamCollectionList[4].id,
|
|
childTeamCollectionList[2].id,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${childTeamCollectionList[2].teamID}/coll_order_updated`,
|
|
{
|
|
collection: childTeamCollectionList[4],
|
|
nextCollection: childTeamCollectionList[2],
|
|
},
|
|
);
|
|
});
|
|
});
|
|
|
|
const jsonString =
|
|
'[{"requests":[],"name":"Root Collection 1","folders":[],"v":1}]';
|
|
|
|
describe('importCollectionsFromJSON', () => {
|
|
test('should throw TEAM_COLL_INVALID_JSON when the jsonString is invalid', async () => {
|
|
const result = await teamCollectionService.importCollectionsFromJSON(
|
|
'invalidString',
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_INVALID_JSON);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_INVALID_JSON when the parsed jsonString is not an array', async () => {
|
|
const result = await teamCollectionService.importCollectionsFromJSON(
|
|
'{}',
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_INVALID_JSON);
|
|
});
|
|
|
|
test('should successfully create new TeamCollections in root and TeamRequests with valid inputs', async () => {
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.$transaction.mockResolvedValueOnce([rootTeamCollection]);
|
|
|
|
const result = await teamCollectionService.importCollectionsFromJSON(
|
|
jsonString,
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should successfully create new TeamCollections in a child collection and TeamRequests with valid inputs', async () => {
|
|
//getChildCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.$transaction.mockResolvedValueOnce([rootTeamCollection]);
|
|
|
|
const result = await teamCollectionService.importCollectionsFromJSON(
|
|
jsonString,
|
|
rootTeamCollection.teamID,
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_added" on successful creation from jsonString', async () => {
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.$transaction.mockResolvedValueOnce([rootTeamCollection]);
|
|
|
|
const result = await teamCollectionService.importCollectionsFromJSON(
|
|
jsonString,
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${rootTeamCollection.teamID}/coll_added`,
|
|
rootTeamCollection,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('replaceCollectionsWithJSON', () => {
|
|
test('should throw TEAM_COLL_INVALID_JSON when the jsonString is invalid', async () => {
|
|
const result = await teamCollectionService.replaceCollectionsWithJSON(
|
|
'invalidString',
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_INVALID_JSON);
|
|
});
|
|
|
|
test('should throw TEAM_COLL_INVALID_JSON when the parsed jsonString is not an array', async () => {
|
|
const result = await teamCollectionService.replaceCollectionsWithJSON(
|
|
'{}',
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(result).toEqualLeft(TEAM_COLL_INVALID_JSON);
|
|
});
|
|
|
|
test('should successfully replace TeamCollections in root with new TeamCollections and TeamRequests with valid inputs', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
// deleteCollection
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// deleteCollectionData
|
|
// deleteCollectionData --> FindMany query 1st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> FindMany query 2st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> DeleteMany query
|
|
mockPrisma.teamRequest.deleteMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> removeUserCollection
|
|
mockPrisma.teamCollection.delete.mockResolvedValueOnce(rootTeamCollection);
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.$transaction.mockResolvedValueOnce([rootTeamCollection]);
|
|
|
|
const result = await teamCollectionService.replaceCollectionsWithJSON(
|
|
jsonString,
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should successfully create new TeamCollections in a child collection and TeamRequests with valid inputs', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
childTeamCollection,
|
|
]);
|
|
// deleteCollection
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
childTeamCollection,
|
|
);
|
|
// deleteCollectionData
|
|
// deleteCollectionData --> FindMany query 1st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> FindMany query 2st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> DeleteMany query
|
|
mockPrisma.teamRequest.deleteMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> removeUserCollection
|
|
mockPrisma.teamCollection.delete.mockResolvedValueOnce(childTeamCollection);
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.$transaction.mockResolvedValueOnce([rootTeamCollection]);
|
|
|
|
const result = await teamCollectionService.replaceCollectionsWithJSON(
|
|
jsonString,
|
|
rootTeamCollection.teamID,
|
|
rootTeamCollection.id,
|
|
);
|
|
expect(result).toEqualRight(true);
|
|
});
|
|
|
|
test('should send pubsub message to "team_coll/<teamID>/coll_added" on successful creation from jsonString', async () => {
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([
|
|
rootTeamCollection,
|
|
]);
|
|
// deleteCollection
|
|
// getCollection
|
|
mockPrisma.teamCollection.findUniqueOrThrow.mockResolvedValueOnce(
|
|
rootTeamCollection,
|
|
);
|
|
// deleteCollectionData
|
|
// deleteCollectionData --> FindMany query 1st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> FindMany query 2st time
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
// deleteCollectionData --> DeleteMany query
|
|
mockPrisma.teamRequest.deleteMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> updateOrderIndex
|
|
mockPrisma.teamCollection.updateMany.mockResolvedValueOnce({ count: 0 });
|
|
// deleteCollectionData --> removeUserCollection
|
|
mockPrisma.teamCollection.delete.mockResolvedValueOnce(rootTeamCollection);
|
|
//getRootCollectionsCount
|
|
mockPrisma.teamCollection.findMany.mockResolvedValueOnce([]);
|
|
mockPrisma.$transaction.mockResolvedValueOnce([rootTeamCollection]);
|
|
|
|
const result = await teamCollectionService.replaceCollectionsWithJSON(
|
|
jsonString,
|
|
rootTeamCollection.teamID,
|
|
null,
|
|
);
|
|
expect(mockPubSub.publish).toHaveBeenCalledWith(
|
|
`team_coll/${rootTeamCollection.teamID}/coll_added`,
|
|
rootTeamCollection,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('totalCollectionsInTeam', () => {
|
|
test('should resolve right and return a total team colls count ', async () => {
|
|
mockPrisma.teamCollection.count.mockResolvedValueOnce(2);
|
|
const result = await teamCollectionService.totalCollectionsInTeam('id1');
|
|
expect(mockPrisma.teamCollection.count).toHaveBeenCalledWith({
|
|
where: {
|
|
teamID: 'id1',
|
|
},
|
|
});
|
|
expect(result).toEqual(2);
|
|
});
|
|
test('should resolve left and return an error when no team colls found', async () => {
|
|
mockPrisma.teamCollection.count.mockResolvedValueOnce(0);
|
|
const result = await teamCollectionService.totalCollectionsInTeam('id1');
|
|
expect(mockPrisma.teamCollection.count).toHaveBeenCalledWith({
|
|
where: {
|
|
teamID: 'id1',
|
|
},
|
|
});
|
|
expect(result).toEqual(0);
|
|
});
|
|
|
|
describe('getTeamCollectionsCount', () => {
|
|
test('should return count of all Team Collections in the organization', async () => {
|
|
mockPrisma.teamCollection.count.mockResolvedValueOnce(10);
|
|
|
|
const result = await teamCollectionService.getTeamCollectionsCount();
|
|
expect(result).toEqual(10);
|
|
});
|
|
});
|
|
});
|
|
|
|
//ToDo: write test cases for exportCollectionsToJSON
|