-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathinstanceDataSources.test.ts
71 lines (61 loc) · 1.92 KB
/
instanceDataSources.test.ts
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
import { buildInstanceDataSources } from 'src/utils/instanceDataSources';
import type { IInstance, IInstanceDataSources } from 'src/types/shared';
describe('instanceDataSources/instanceContext', () => {
it('should build a valid instance context', () => {
const partyId = '1337';
const appId = 'tdd/enapp';
const instaceId = `${partyId}/super-secret-uuid-000`;
const mockInstance: IInstance = {
id: instaceId,
appId,
instanceOwner: {
partyId,
party: {
name: 'Firstname Lastname',
},
},
} as IInstance;
const expected: IInstanceDataSources = {
appId,
instanceId: instaceId,
instanceOwnerPartyId: partyId,
instanceOwnerPartyType: 'unknown',
instanceOwnerName: 'Firstname Lastname',
};
const actual = buildInstanceDataSources(mockInstance);
expect(actual).toEqual(expected);
});
it('should build a valid instance context with organisation', () => {
const partyId = '1337';
const appId = 'tdd/enapp';
const instaceId = `${partyId}/super-secret-uuid-000`;
const mockInstance: IInstance = {
id: instaceId,
appId,
instanceOwner: {
partyId,
organisationNumber: '123456789',
party: {
name: 'My Organisation AS',
},
},
} as IInstance;
const expected: IInstanceDataSources = {
appId,
instanceId: instaceId,
instanceOwnerPartyId: partyId,
instanceOwnerPartyType: 'org',
instanceOwnerName: 'My Organisation AS',
};
const actual = buildInstanceDataSources(mockInstance);
expect(actual).toEqual(expected);
});
it('should handle null input gracefully', () => {
const actual = buildInstanceDataSources(null);
expect(actual).toBeNull();
});
it('should handle undefined input gracefully', () => {
const actual = buildInstanceDataSources(undefined);
expect(actual).toBeNull();
});
});