This repository has been archived by the owner on Oct 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathintegration.js
425 lines (383 loc) · 11.6 KB
/
integration.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
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
const { expect } = require('chai');
const { create, execute, get, update } = require('../src/Adaptor');
const crypto = require('crypto');
const { upsert } = require('../lib/Adaptor');
const getRandomProgramPayload = () => {
const name = crypto.randomBytes(16).toString('hex');
const shortName = name.substring(0, 5);
const programType = 'WITHOUT_REGISTRATION';
return { name, shortName, programType };
};
describe('Integration tests', () => {
const fixture = {};
before(done => {
fixture.initialState = {
configuration: {
username: 'admin',
password: 'district',
hostUrl: 'https://play.dhis2.org/2.36.6',
},
program: 'IpHINAT79UW',
orgUnit: 'DiszpKrYNg8',
trackedEntityInstance: 'uhubxsfLanV',
programStage: 'eaDHS084uMp',
};
done();
});
describe('create', () => {
it('should create an event program', async () => {
const state = {
...fixture.initialState,
data: getRandomProgramPayload(),
};
const finalState = await execute(create('programs', state => state.data))(
state
);
expect(finalState.data.status).to.eq('OK');
});
it('should create a single event', async () => {
const state = { ...fixture.initialState };
const finalState = await execute(
create('events', state => ({
program: state.program,
orgUnit: state.orgUnit,
trackedEntityInstance: state.trackedEntityInstance,
programStage: state.programStage,
status: 'COMPLETED',
}))
)(state);
expect(finalState.data.status).to.eq('OK');
});
it('should create a single tracked entity instance', async () => {
const state = {
...fixture.initialState,
data: {
orgUnit: 'DiszpKrYNg8',
trackedEntityType: 'nEenWmSyUEp',
attributes: [
{
attribute: 'w75KJ2mc4zz',
value: 'Gigiwe',
},
],
},
};
const finalState = await execute(
create('trackedEntityInstances', state => state.data)
)(state);
expect(finalState.data.status).to.eq('OK');
});
it('should create a single dataValueSet', async () => {
const state = {
...fixture.initialState,
data: {
dataElement: 'f7n9E0hX8qk',
period: '201401',
orgUnit: 'DiszpKrYNg8',
value: '12',
},
};
const finalState = await execute(
create('dataValueSets', state => state.data)
)(state);
expect(finalState.data.status).to.eq('SUCCESS');
});
it('should create a set of related data values sharing the same period and organisation unit', async () => {
const state = {
...fixture.initialState,
data: {
dataSet: 'pBOMPrpg1QX',
completeDate: '2014-02-03',
period: '201401',
orgUnit: 'DiszpKrYNg8',
dataValues: [
{
dataElement: 'f7n9E0hX8qk',
value: '1',
},
{
dataElement: 'Ix2HsbDMLea',
value: '2',
},
{
dataElement: 'eY5ehpbEsB7',
value: '3',
},
],
},
};
const finalState = await execute(
create('dataValueSets', state => state.data)
)(state);
expect(finalState.data.status).to.eq('SUCCESS');
});
});
describe('update', () => {
it('should update an event program', async () => {
const state = {
...fixture.initialState,
eventProgram: 'N6gnRnuz8Mw',
};
const response = await execute(
update(
'programs',
state => state.eventProgram,
getRandomProgramPayload()
)
)(state);
expect(response.data.status).to.eq('OK');
});
it('should update a single event', async () => {
const state = {
...fixture.initialState,
event: 'rBjxtO8npTb',
data: {
href: 'https://play.dhis2.org/2.36.6/api/events/rBjxtO8npTb',
event: 'rBjxtO8npTb',
status: 'ACTIVE',
program: 'M3xtLkYBlKI',
programStage: 'CWaAcQYKVpq',
enrollment: 'V8uPJuhvlL7',
enrollmentStatus: 'ACTIVE',
orgUnit: 'DiszpKrYNg8',
orgUnitName: 'Ngelehun CHC',
trackedEntityInstance: 'dNpxRu1mWG5',
relationships: [],
eventDate: '2021-09-26T00:00:00.000',
dueDate: '2021-09-27T00:00:00.000',
storedBy: 'system',
dataValues: [],
notes: [],
followup: false,
deleted: false,
created: '2019-09-26T23:58:59.641',
lastUpdated: '2019-09-27T00:02:11.604',
createdAtClient: '2019-09-26T23:58:59.641',
lastUpdatedAtClient: '2019-09-27T00:02:11.604',
attributeOptionCombo: 'HllvX50cXC0',
attributeCategoryOptions: 'xYerKDKCefk',
assignedUser: 'DXyJmlo9rge',
assignedUserUsername: 'android',
assignedUserDisplayName: 'John Barnes',
},
};
const finalState = await execute(
update(
'events',
state => state.event,
state => state.data
)
)(state);
expect(finalState.data.status).to.eql('OK');
});
it('should update a single tracked entity instance', async () => {
const state = {
...fixture.initialState,
data: {
orgUnit: 'DiszpKrYNg8',
trackedEntityType: 'nEenWmSyUEp',
attributes: [
{
attribute: 'w75KJ2mc4zz',
value: 'Gigiwe',
},
],
},
};
const finalState = await execute(
update('trackedEntityInstances', 'bmshzEacgxa', state => state.data)
)(state);
expect(finalState.data.status).to.eq('OK');
});
it('should update a single dataSet', async () => {
const state = {
...fixture.initialState,
data: {
name: 'Reproductive Health',
shortName: 'Reproductive Health',
displayFormName: 'Reproductive Health',
displayName: 'Reproductive Health',
periodType: 'Monthly',
dataSetElements: [
{
dataElement: {
id: 'FE82N2sA0YI',
},
dataSet: {
id: 'QX4ZTUbOt3a',
},
},
],
},
};
const finalState = await execute(
update('dataSets', 'QX4ZTUbOt3a', state => state.data)
)(state);
expect(finalState.data.status).to.eql('OK');
});
});
describe('get', () => {
const state = {
configuration: {
username: 'admin',
password: 'district',
hostUrl: 'https://play.dhis2.org/2.37.2',
},
data: {},
};
it('should get dataValueSets matching the query specified', async () => {
const finalState = await execute(
get('dataValueSets', {
dataSet: 'pBOMPrpg1QX',
orgUnit: 'DiszpKrYNg8',
period: '201401',
fields: '*',
})
)(state);
expect(finalState.data.dataValues.length).to.gte(1);
});
it('should get a single TEI based on multiple filters', async () => {
const finalState = await execute(
get('trackedEntityInstances', {
ou: 'DiszpKrYNg8',
filter: ['w75KJ2mc4zz:Eq:John', 'zDhUuAYrxNC:Eq:Doe'],
})
)(state);
expect(finalState.data.trackedEntityInstances.length).to.eq(4);
const finalState2 = await execute(
get('trackedEntityInstances', {
ou: 'DiszpKrYNg8',
filter: ['w75KJ2mc4zz:Eq:John', 'zDhUuAYrxNC:Eq:NotDoe'],
})
)(state);
expect(finalState2.data.trackedEntityInstances.length).to.eq(0);
});
it('should get a no TEIs if non match the filters', async () => {
const finalState = await execute(
get('trackedEntityInstances', {
ou: 'DiszpKrYNg8',
filter: [
'w75KJ2mc4zz:Eq:John',
'flGbXLXCrEo:Eq:124-not-a-real-id', // case ID
'zDhUuAYrxNC:Eq:Doe',
],
})
)(state);
expect(finalState.data.trackedEntityInstances.length).to.eq(0);
});
it('should get all programs in the organisation unit TSyzvBiovKh', async () => {
const response = await execute(
get('programs', { orgUnit: 'TSyzvBiovKh', fields: '*' })
)(state);
expect(response.data.programs.length).to.gte(1);
});
});
describe('upsert', () => {
it('should upsert a trackedEntityInstance via create as query matches no data', async () => {
const state = {
...fixture.initialState,
data: {
orgUnit: 'DiszpKrYNg8',
trackedEntityType: 'nEenWmSyUEp',
attributes: [
{
lastUpdated: '2016-01-12T00:00:00.000',
code: 'MMD_PER_NAM',
displayName: 'First name',
created: '2016-01-12T00:00:00.000',
valueType: 'TEXT',
attribute: 'w75KJ2mc4zz',
value: 'Elias',
},
{
lastUpdated: '2016-01-12T00:00:00.000',
displayName: 'Last name',
created: '2016-01-12T00:00:00.000',
valueType: 'TEXT',
attribute: 'zDhUuAYrxNC',
value: 'BA',
},
],
},
};
const finalState = await execute(
upsert(
'trackedEntityInstances',
{
ou: 'DiszpKrYNg8',
filter: ['w75KJ2mc4zz:Eq:Johns', 'zDhUuAYrxNC:Eq:Doe'],
},
state => state.data
)
)(state);
expect(finalState.data.httpStatus).to.eq('OK');
});
it('should upsert a trackedEntityInstance via update as query matches one data', async () => {
const state = {
...fixture.initialState,
data: {
orgUnit: 'TSyzvBiovKh',
trackedEntityType: 'nEenWmSyUEp',
attributes: [
{
attribute: 'w75KJ2mc4zz',
value: 'Qassim',
},
],
},
};
const finalState = await execute(
upsert(
'trackedEntityInstances',
{
ou: 'TSyzvBiovKh',
filter: ['w75KJ2mc4zz:Eq:Qassim'],
},
state => state.data
)
)(state);
expect(finalState.data.httpStatus).to.eq('OK');
});
it('should fail upserting a trackedEntityInstance by throwing rangeError as query matches many data', async () => {
const state = {
...fixture.initialState,
data: {
orgUnit: 'TSyzvBiovKh',
trackedEntityType: 'nEenWmSyUEp',
attributes: [
{
attribute: 'w75KJ2mc4zz',
value: 'Qassim',
},
],
},
};
const expectThrowsAsync = async (method, errorMessage) => {
let error = null;
try {
await method();
} catch (err) {
error = err;
}
expect(error).to.be.an('Error');
if (errorMessage) {
expect(error.message).to.equal(errorMessage);
}
};
await expectThrowsAsync(
() =>
execute(
upsert(
'trackedEntityInstances',
{
ou: 'DiszpKrYNg8',
filter: ['w75KJ2mc4zz:Eq:John', 'zDhUuAYrxNC:Eq:Doe'],
},
state => state.data
)
)(state),
'Cannot upsert on Non-unique attribute. The operation found more than one records for your request.'
);
});
});
});