-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsco-organization-management-controller_test.js
144 lines (125 loc) · 5.15 KB
/
sco-organization-management-controller_test.js
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
import fs from 'node:fs/promises';
import { scoOrganizationManagementController } from '../../../../../src/prescription/learner-management/application/sco-organization-management-controller.js';
import { usecases } from '../../../../../src/prescription/learner-management/domain/usecases/index.js';
import { OrganizationLearnerParser } from '../../../../../src/prescription/learner-management/infrastructure/serializers/csv/organization-learner-parser.js';
import { FileValidationError } from '../../../../../src/shared/domain/errors.js';
import { catchErr, expect, hFake, sinon } from '../../../../test-helper.js';
describe('Unit | Application | Organizations | organization-controller', function () {
describe('#importorganizationLearnersFromSIECLE', function () {
const connectedUserId = 1;
const organizationId = 145;
const payload = { path: 'path-to-file' };
const format = 'xml';
let dependencies;
const request = {
auth: { credentials: { userId: connectedUserId } },
params: { id: organizationId },
query: { format },
payload,
};
beforeEach(function () {
sinon.stub(fs, 'unlink').resolves();
sinon.stub(usecases, 'uploadSiecleFile');
sinon.stub(usecases, 'uploadCsvFile');
usecases.uploadSiecleFile.resolves();
dependencies = { logErrorWithCorrelationIds: sinon.stub(), logWarnWithCorrelationIds: sinon.stub() };
});
it('should delete uploaded file', async function () {
// given
hFake.request = {
path: '/api/organizations/145/sco-organization-learners/import-siecle',
};
// when
await scoOrganizationManagementController.importOrganizationLearnersFromSIECLE(request, hFake, dependencies);
// then
expect(fs.unlink).to.have.been.calledWithExactly(request.payload.path);
});
it('should not throw if delete uploaded file fails', async function () {
// given
const error = new Error();
fs.unlink.rejects(error);
hFake.request = {
path: '/api/organizations/145/sco-organization-learners/import-siecle',
};
// when
await scoOrganizationManagementController.importOrganizationLearnersFromSIECLE(request, hFake, dependencies);
// then
expect(fs.unlink).to.have.been.calledWithExactly(request.payload.path);
expect(dependencies.logErrorWithCorrelationIds).to.have.been.calledWith(error);
});
it('should call usecases to import organizationLearners xml', async function () {
// given
const uploadedFileEvent = Symbol('uploadedFileEvent');
usecases.uploadSiecleFile.resolves(uploadedFileEvent);
const userId = 1;
request.auth = { credentials: { userId } };
hFake.request = {
path: '/api/organizations/145/sco-organization-learners/import-siecle',
};
// when
await scoOrganizationManagementController.importOrganizationLearnersFromSIECLE(request, hFake, dependencies);
// then
expect(usecases.uploadSiecleFile).to.have.been.calledWithExactly({
userId,
organizationId,
payload,
});
});
it('should log error on failed usecases to import organizationLearners xml', async function () {
// given
const uploadedError = Symbol('uploadedError');
usecases.uploadSiecleFile.rejects(uploadedError);
const userId = 1;
request.auth = { credentials: { userId } };
hFake.request = {
path: '/api/organizations/145/sco-organization-learners/import-siecle',
};
// when
const error = await catchErr(scoOrganizationManagementController.importOrganizationLearnersFromSIECLE)(
request,
hFake,
dependencies,
);
// then
expect(dependencies.logWarnWithCorrelationIds).to.have.been.calledWithExactly(uploadedError);
expect(error).to.be.deep.equal(uploadedError);
});
it('should call the usecase uploadCsvFile to import organizationLearners csv', async function () {
// given
const userId = 1;
request.auth = { credentials: { userId } };
request.query.format = 'csv';
const i18n = Symbol('i18n');
request.i18n = i18n;
hFake.request = {
path: '/api/organizations/145/sco-organization-learners/import-siecle',
};
// when
await scoOrganizationManagementController.importOrganizationLearnersFromSIECLE(request, hFake, dependencies);
// then
expect(usecases.uploadCsvFile).to.have.been.calledWithExactly({
Parser: OrganizationLearnerParser,
userId,
organizationId,
type: 'FREGATA',
payload,
i18n,
});
});
context('when file format is not supported', function () {
it('should throw a FileValidationError', async function () {
// given
request.query.format = 'txt';
// when
const error = await catchErr(scoOrganizationManagementController.importOrganizationLearnersFromSIECLE)(
request,
hFake,
);
// then
expect(error).to.be.instanceOf(FileValidationError);
expect(error.code).to.equal('INVALID_FILE_EXTENSION');
expect(error.meta.fileExtension).to.equal('txt');
});
});
});
});