-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathsoa.service.spec.ts
More file actions
287 lines (262 loc) · 9.65 KB
/
soa.service.spec.ts
File metadata and controls
287 lines (262 loc) · 9.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
import {
NotFoundException,
ForbiddenException,
BadRequestException,
InternalServerErrorException,
} from '@nestjs/common';
import { db } from '@db';
import { SOAService } from './soa.service';
jest.mock('@db', () => ({
db: {
frameworkEditorFramework: {
findUnique: jest.fn(),
findFirst: jest.fn(),
},
sOAFrameworkConfiguration: {
findFirst: jest.fn(),
findUnique: jest.fn(),
create: jest.fn(),
},
sOADocument: {
findFirst: jest.fn(),
create: jest.fn(),
update: jest.fn(),
},
member: { findFirst: jest.fn() },
user: { findUnique: jest.fn() },
sOAAnswer: { findFirst: jest.fn(), create: jest.fn(), update: jest.fn() },
},
}));
jest.mock('./utils/transform-iso-config', () => ({
loadISOConfig: jest.fn(),
}));
jest.mock('./utils/soa-answer-generator', () => ({
batchSearchSOAQuestions: jest.fn(),
generateSOAAnswerWithRAG: jest.fn(),
generateSOAControlAnswer: jest.fn(),
}));
jest.mock('./utils/soa-answer-parser', () => ({
parseAndProcessSOAAnswer: jest.fn(),
createDefaultYesResult: jest.fn(),
createFullyRemoteResult: jest.fn(),
isPhysicalSecurityControl: jest.fn(),
}));
jest.mock('./utils/soa-storage', () => ({
saveAnswersToDatabase: jest.fn(),
updateConfigurationWithResults: jest.fn(),
updateDocumentAfterAutoFill: jest.fn(),
getAnsweredCountFromConfiguration: jest.fn(),
updateDocumentAnsweredCount: jest.fn(),
checkIfFullyRemote: jest.fn(),
}));
const mockDb = jest.mocked(db);
describe('SOAService', () => {
let service: SOAService;
beforeEach(() => {
jest.clearAllMocks();
service = new SOAService();
});
describe('ensureSetup', () => {
const dto = { frameworkId: 'fw-1', organizationId: 'org-1' };
it('throws NotFoundException when framework not found', async () => {
mockDb.frameworkEditorFramework.findUnique.mockResolvedValue(null);
await expect(service.ensureSetup(dto)).rejects.toThrow(
NotFoundException,
);
});
it('returns success:false for non-ISO 27001 framework', async () => {
(mockDb.frameworkEditorFramework.findUnique as jest.Mock).mockResolvedValue({
id: 'fw-1',
name: 'SOC 2',
});
const result = await service.ensureSetup(dto);
expect(result.success).toBe(false);
expect(result.error).toContain('ISO 27001');
});
it('throws InternalServerErrorException when config creation fails', async () => {
(mockDb.frameworkEditorFramework.findUnique as jest.Mock).mockResolvedValue({
id: 'fw-1',
name: 'ISO 27001',
});
(mockDb.sOAFrameworkConfiguration.findFirst as jest.Mock).mockResolvedValue(null);
(mockDb.frameworkEditorFramework.findFirst as jest.Mock).mockRejectedValue(
new Error('DB error'),
);
await expect(service.ensureSetup(dto)).rejects.toThrow(
InternalServerErrorException,
);
});
it('throws InternalServerErrorException when document creation fails', async () => {
const config = { id: 'cfg-1', questions: [] };
(mockDb.frameworkEditorFramework.findUnique as jest.Mock).mockResolvedValue({
id: 'fw-1',
name: 'ISO 27001',
});
(mockDb.sOAFrameworkConfiguration.findFirst as jest.Mock).mockResolvedValue(config);
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue(null);
(mockDb.sOAFrameworkConfiguration.findUnique as jest.Mock).mockRejectedValue(
new Error('DB error'),
);
await expect(service.ensureSetup(dto)).rejects.toThrow(
InternalServerErrorException,
);
});
it('returns existing document when setup already complete', async () => {
const config = { id: 'cfg-1', questions: [{ id: 'q1' }] };
const doc = { id: 'doc-1', answers: [] };
(mockDb.frameworkEditorFramework.findUnique as jest.Mock).mockResolvedValue({
id: 'fw-1',
name: 'ISO 27001',
});
(mockDb.sOAFrameworkConfiguration.findFirst as jest.Mock).mockResolvedValue(config);
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue(doc);
const result = await service.ensureSetup(dto);
expect(result.success).toBe(true);
expect(result.configuration).toEqual(config);
expect(result.document).toEqual(doc);
});
});
describe('approveDocument', () => {
const dto = { documentId: 'doc-1', organizationId: 'org-1' };
const userId = 'user-1';
const ownerMember = { id: 'mem-1', role: 'owner' };
it('throws NotFoundException when member not found', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue(null);
await expect(service.approveDocument(dto, userId)).rejects.toThrow(
NotFoundException,
);
});
it('throws ForbiddenException when user is not owner/admin', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue({
id: 'mem-1',
role: 'employee',
});
await expect(service.approveDocument(dto, userId)).rejects.toThrow(
ForbiddenException,
);
});
it('throws NotFoundException when document not found', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue(ownerMember);
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue(null);
await expect(service.approveDocument(dto, userId)).rejects.toThrow(
NotFoundException,
);
});
it('throws ForbiddenException when not pending approval for this user', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue(ownerMember);
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue({
id: 'doc-1',
approverId: 'other-member',
status: 'needs_review',
});
await expect(service.approveDocument(dto, userId)).rejects.toThrow(
ForbiddenException,
);
});
it('throws BadRequestException when not in needs_review status', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue(ownerMember);
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue({
id: 'doc-1',
approverId: 'mem-1',
status: 'draft',
});
await expect(service.approveDocument(dto, userId)).rejects.toThrow(
BadRequestException,
);
});
it('approves document successfully', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue(ownerMember);
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue({
id: 'doc-1',
approverId: 'mem-1',
status: 'needs_review',
});
(mockDb.sOADocument.update as jest.Mock).mockResolvedValue({
id: 'doc-1',
status: 'completed',
});
const result = await service.approveDocument(dto, userId);
expect(result.success).toBe(true);
});
});
describe('submitForApproval', () => {
const dto = {
documentId: 'doc-1',
organizationId: 'org-1',
approverId: 'mem-1',
};
it('throws NotFoundException when approver not found', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue(null);
await expect(service.submitForApproval(dto)).rejects.toThrow(
NotFoundException,
);
});
it('throws ForbiddenException when approver is not owner/admin', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue({
id: 'mem-1',
userId: 'user-1',
role: 'employee',
});
(mockDb.user.findUnique as jest.Mock).mockResolvedValue({ isPlatformAdmin: false });
await expect(service.submitForApproval(dto)).rejects.toThrow(
ForbiddenException,
);
});
it('throws BadRequestException when approver is platform admin', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue({
id: 'mem-1',
userId: 'user-1',
role: 'admin',
});
(mockDb.user.findUnique as jest.Mock).mockResolvedValue({ isPlatformAdmin: true });
await expect(service.submitForApproval(dto)).rejects.toThrow(
BadRequestException,
);
});
it('throws NotFoundException when document not found', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue({
id: 'mem-1',
userId: 'user-1',
role: 'admin',
});
(mockDb.user.findUnique as jest.Mock).mockResolvedValue({ isPlatformAdmin: false });
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue(null);
await expect(service.submitForApproval(dto)).rejects.toThrow(
NotFoundException,
);
});
it('throws BadRequestException when already pending approval', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue({
id: 'mem-1',
userId: 'user-1',
role: 'admin',
});
(mockDb.user.findUnique as jest.Mock).mockResolvedValue({ isPlatformAdmin: false });
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue({
id: 'doc-1',
status: 'needs_review',
});
await expect(service.submitForApproval(dto)).rejects.toThrow(
BadRequestException,
);
});
it('submits for approval successfully', async () => {
(mockDb.member.findFirst as jest.Mock).mockResolvedValue({
id: 'mem-1',
userId: 'user-1',
role: 'owner',
});
(mockDb.user.findUnique as jest.Mock).mockResolvedValue({ isPlatformAdmin: false });
(mockDb.sOADocument.findFirst as jest.Mock).mockResolvedValue({
id: 'doc-1',
status: 'draft',
});
(mockDb.sOADocument.update as jest.Mock).mockResolvedValue({
id: 'doc-1',
status: 'needs_review',
});
const result = await service.submitForApproval(dto);
expect(result.success).toBe(true);
});
});
});