@dronedeploy/rocos-js-sdk 3.0.1-alpha.11 → 3.0.1-alpha.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (153) hide show
  1. package/cjs/IRocosSDK.d.ts +1 -2
  2. package/cjs/RocosSDK.d.ts +4 -6
  3. package/cjs/RocosSDK.js +1 -9
  4. package/cjs/api/streams/caller/CallerStream.js +5 -2
  5. package/cjs/api/streams/caller/CallerStreamNode.js +2 -1
  6. package/cjs/api/streams/command/CommandStream.js +5 -2
  7. package/cjs/api/streams/command/CommandStreamNode.js +2 -1
  8. package/cjs/api/streams/control/ControlStream.js +5 -2
  9. package/cjs/api/streams/control/ControlStreamAbstract.d.ts +1 -1
  10. package/cjs/api/streams/control/ControlStreamNode.js +2 -1
  11. package/cjs/api/streams/fileAccessor/FileAccessorStream.js +4 -1
  12. package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +3 -1
  13. package/cjs/api/streams/search/SearchStream.js +5 -2
  14. package/cjs/api/streams/search/SearchStreamNode.js +2 -1
  15. package/cjs/api/streams/telemetry/TelemetryStream.js +4 -1
  16. package/cjs/api/streams/telemetry/TelemetryStreamAbstract.d.ts +1 -1
  17. package/cjs/api/streams/telemetry/TelemetryStreamNode.js +2 -1
  18. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +5 -2
  19. package/cjs/constants/api.d.ts +2 -4
  20. package/cjs/constants/api.js +4 -6
  21. package/cjs/helpers/getUniqueConfigKey.d.ts +6 -2
  22. package/cjs/helpers/getUniqueConfigKey.js +7 -2
  23. package/cjs/models/TelemetryStatus.d.ts +12 -0
  24. package/cjs/models/TelemetryStatus.js +17 -0
  25. package/cjs/models/Token.d.ts +2 -2
  26. package/cjs/models/Token.js +5 -5
  27. package/cjs/models/index.d.ts +1 -1
  28. package/cjs/models/index.js +1 -1
  29. package/cjs/node/RocosSDKNode.js +0 -3
  30. package/cjs/services/ProfileService.d.ts +23 -0
  31. package/cjs/services/ProfileService.js +28 -0
  32. package/cjs/services/RTPWebRTCService.d.ts +1 -1
  33. package/cjs/services/RTPWebRTCService.js +4 -2
  34. package/cjs/services/TelemetryService.d.ts +10 -1
  35. package/cjs/services/TelemetryService.js +27 -5
  36. package/cjs/services/index.d.ts +0 -1
  37. package/cjs/services/index.js +0 -1
  38. package/cjs/store/RocosStore.d.ts +1 -2
  39. package/esm/IRocosSDK.d.ts +1 -2
  40. package/esm/RocosSDK.d.ts +4 -6
  41. package/esm/RocosSDK.js +2 -10
  42. package/esm/api/streams/caller/CallerStream.js +5 -2
  43. package/esm/api/streams/caller/CallerStreamNode.js +2 -1
  44. package/esm/api/streams/command/CommandStream.js +5 -2
  45. package/esm/api/streams/command/CommandStreamNode.js +2 -1
  46. package/esm/api/streams/control/ControlStream.js +5 -2
  47. package/esm/api/streams/control/ControlStreamAbstract.d.ts +1 -1
  48. package/esm/api/streams/control/ControlStreamNode.js +2 -1
  49. package/esm/api/streams/fileAccessor/FileAccessorStream.js +4 -1
  50. package/esm/api/streams/fileAccessor/FileAccessorStreamNode.js +3 -1
  51. package/esm/api/streams/search/SearchStream.js +5 -2
  52. package/esm/api/streams/search/SearchStreamNode.js +2 -1
  53. package/esm/api/streams/telemetry/TelemetryStream.js +4 -1
  54. package/esm/api/streams/telemetry/TelemetryStreamAbstract.d.ts +1 -1
  55. package/esm/api/streams/telemetry/TelemetryStreamNode.js +2 -1
  56. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.js +5 -2
  57. package/esm/constants/api.d.ts +2 -4
  58. package/esm/constants/api.js +2 -4
  59. package/esm/helpers/getUniqueConfigKey.d.ts +6 -2
  60. package/esm/helpers/getUniqueConfigKey.js +7 -2
  61. package/esm/models/TelemetryStatus.d.ts +12 -0
  62. package/esm/models/TelemetryStatus.js +14 -0
  63. package/esm/models/Token.d.ts +2 -2
  64. package/esm/models/Token.js +5 -5
  65. package/esm/models/index.d.ts +1 -1
  66. package/esm/models/index.js +1 -1
  67. package/esm/node/RocosSDKNode.js +1 -4
  68. package/esm/services/ProfileService.d.ts +23 -0
  69. package/esm/services/ProfileService.js +29 -1
  70. package/esm/services/RTPWebRTCService.d.ts +1 -1
  71. package/esm/services/RTPWebRTCService.js +4 -2
  72. package/esm/services/TelemetryService.d.ts +10 -1
  73. package/esm/services/TelemetryService.js +28 -6
  74. package/esm/services/index.d.ts +0 -1
  75. package/esm/services/index.js +0 -1
  76. package/esm/store/RocosStore.d.ts +1 -2
  77. package/package.json +1 -2
  78. package/cjs/helpers/cleanObject.spec.d.ts +0 -1
  79. package/cjs/helpers/cleanObject.spec.js +0 -55
  80. package/cjs/helpers/flattenObject.spec.d.ts +0 -1
  81. package/cjs/helpers/flattenObject.spec.js +0 -31
  82. package/cjs/helpers/flattenOneOf.spec.d.ts +0 -1
  83. package/cjs/helpers/flattenOneOf.spec.js +0 -159
  84. package/cjs/helpers/formatServiceUrl.spec.d.ts +0 -1
  85. package/cjs/helpers/formatServiceUrl.spec.js +0 -18
  86. package/cjs/helpers/getSha256Hex.spec.d.ts +0 -1
  87. package/cjs/helpers/getSha256Hex.spec.js +0 -19
  88. package/cjs/helpers/getSha256HexNode.spec.d.ts +0 -1
  89. package/cjs/helpers/getSha256HexNode.spec.js +0 -10
  90. package/cjs/helpers/getURLSearchParams.spec.d.ts +0 -1
  91. package/cjs/helpers/getURLSearchParams.spec.js +0 -21
  92. package/cjs/helpers/nanosecondToMillisecond.spec.d.ts +0 -1
  93. package/cjs/helpers/nanosecondToMillisecond.spec.js +0 -22
  94. package/cjs/helpers/splitRobotTopic.spec.d.ts +0 -1
  95. package/cjs/helpers/splitRobotTopic.spec.js +0 -53
  96. package/cjs/helpers/standardDeviation.spec.d.ts +0 -1
  97. package/cjs/helpers/standardDeviation.spec.js +0 -13
  98. package/cjs/helpers/websandbox/frame/worker/manager.spec.d.ts +0 -4
  99. package/cjs/helpers/websandbox/frame/worker/manager.spec.js +0 -132
  100. package/cjs/models/CallsignStatus.d.ts +0 -6
  101. package/cjs/models/CallsignStatus.js +0 -10
  102. package/cjs/models/Token.spec.d.ts +0 -1
  103. package/cjs/models/Token.spec.js +0 -110
  104. package/cjs/services/AuthService.spec.d.ts +0 -1
  105. package/cjs/services/AuthService.spec.js +0 -165
  106. package/cjs/services/CallerService.spec.d.ts +0 -1
  107. package/cjs/services/CallerService.spec.js +0 -229
  108. package/cjs/services/FunctionService.d.ts +0 -68
  109. package/cjs/services/FunctionService.js +0 -103
  110. package/cjs/services/PlatformTimeService.spec.d.ts +0 -1
  111. package/cjs/services/PlatformTimeService.spec.js +0 -182
  112. package/cjs/services/RTPWebRTCService.spec.d.ts +0 -4
  113. package/cjs/services/RTPWebRTCService.spec.js +0 -171
  114. package/cjs/services/TelemetryService.spec.d.ts +0 -1
  115. package/cjs/services/TelemetryService.spec.js +0 -39
  116. package/esm/helpers/cleanObject.spec.d.ts +0 -1
  117. package/esm/helpers/cleanObject.spec.js +0 -53
  118. package/esm/helpers/flattenObject.spec.d.ts +0 -1
  119. package/esm/helpers/flattenObject.spec.js +0 -29
  120. package/esm/helpers/flattenOneOf.spec.d.ts +0 -1
  121. package/esm/helpers/flattenOneOf.spec.js +0 -157
  122. package/esm/helpers/formatServiceUrl.spec.d.ts +0 -1
  123. package/esm/helpers/formatServiceUrl.spec.js +0 -16
  124. package/esm/helpers/getSha256Hex.spec.d.ts +0 -1
  125. package/esm/helpers/getSha256Hex.spec.js +0 -14
  126. package/esm/helpers/getSha256HexNode.spec.d.ts +0 -1
  127. package/esm/helpers/getSha256HexNode.spec.js +0 -8
  128. package/esm/helpers/getURLSearchParams.spec.d.ts +0 -1
  129. package/esm/helpers/getURLSearchParams.spec.js +0 -19
  130. package/esm/helpers/nanosecondToMillisecond.spec.d.ts +0 -1
  131. package/esm/helpers/nanosecondToMillisecond.spec.js +0 -20
  132. package/esm/helpers/splitRobotTopic.spec.d.ts +0 -1
  133. package/esm/helpers/splitRobotTopic.spec.js +0 -51
  134. package/esm/helpers/standardDeviation.spec.d.ts +0 -1
  135. package/esm/helpers/standardDeviation.spec.js +0 -11
  136. package/esm/helpers/websandbox/frame/worker/manager.spec.d.ts +0 -4
  137. package/esm/helpers/websandbox/frame/worker/manager.spec.js +0 -127
  138. package/esm/models/CallsignStatus.d.ts +0 -6
  139. package/esm/models/CallsignStatus.js +0 -7
  140. package/esm/models/Token.spec.d.ts +0 -1
  141. package/esm/models/Token.spec.js +0 -108
  142. package/esm/services/AuthService.spec.d.ts +0 -1
  143. package/esm/services/AuthService.spec.js +0 -163
  144. package/esm/services/CallerService.spec.d.ts +0 -1
  145. package/esm/services/CallerService.spec.js +0 -227
  146. package/esm/services/FunctionService.d.ts +0 -68
  147. package/esm/services/FunctionService.js +0 -99
  148. package/esm/services/PlatformTimeService.spec.d.ts +0 -1
  149. package/esm/services/PlatformTimeService.spec.js +0 -180
  150. package/esm/services/RTPWebRTCService.spec.d.ts +0 -4
  151. package/esm/services/RTPWebRTCService.spec.js +0 -169
  152. package/esm/services/TelemetryService.spec.d.ts +0 -1
  153. package/esm/services/TelemetryService.spec.js +0 -37
@@ -1,157 +0,0 @@
1
- import { flattenOneOf, hasOneOfField } from './flattenOneOf';
2
- describe('flattenOneOf', () => {
3
- describe('hasOneOfField', () => {
4
- it('should return false for non-object', () => {
5
- expect(hasOneOfField(null)).toBe(false);
6
- expect(hasOneOfField(undefined)).toBe(false);
7
- expect(hasOneOfField(1)).toBe(false);
8
- expect(hasOneOfField('')).toBe(false);
9
- expect(hasOneOfField(true)).toBe(false);
10
- });
11
- it('should return false for null content', () => {
12
- expect(hasOneOfField({ content: null })).toBe(false);
13
- });
14
- it('should return false for non-object content', () => {
15
- expect(hasOneOfField({ content: 1 })).toBe(false);
16
- expect(hasOneOfField({ content: '' })).toBe(false);
17
- expect(hasOneOfField({ content: true })).toBe(false);
18
- });
19
- it('should return false for non-string oneofKind', () => {
20
- expect(hasOneOfField({ content: { oneofKind: 1 } })).toBe(false);
21
- expect(hasOneOfField({ content: { oneofKind: null } })).toBe(false);
22
- expect(hasOneOfField({ content: { oneofKind: true } })).toBe(false);
23
- expect(hasOneOfField({ content: { oneofKind: {} } })).toBe(false);
24
- });
25
- it('should return true for valid oneOfField', () => {
26
- expect(hasOneOfField({ content: { oneofKind: 'test' } })).toBe(true);
27
- });
28
- });
29
- describe('flattenOneOf', () => {
30
- it('should flatten a simple oneof type', () => {
31
- const a = {
32
- a: 'a',
33
- content: {
34
- oneofKind: 'b',
35
- b: true,
36
- },
37
- };
38
- expect(flattenOneOf(a)).toEqual({
39
- a: 'a',
40
- b: true,
41
- });
42
- });
43
- it('should flatten a nested oneof type, one level only', () => {
44
- const a = {
45
- b: {
46
- content: {
47
- oneofKind: 'c',
48
- c: true,
49
- },
50
- },
51
- content: {
52
- oneofKind: 'd',
53
- d: {
54
- content: {
55
- oneofKind: 'e',
56
- e: 5,
57
- },
58
- },
59
- },
60
- };
61
- expect(flattenOneOf(a)).toEqual({
62
- b: {
63
- content: {
64
- oneofKind: 'c',
65
- c: true,
66
- },
67
- },
68
- d: {
69
- content: {
70
- oneofKind: 'e',
71
- e: 5,
72
- },
73
- },
74
- });
75
- });
76
- it('should flatten to undefined if the referenced property does not exist', () => {
77
- const a = {
78
- content: {
79
- oneofKind: 'b',
80
- c: true,
81
- },
82
- };
83
- expect(flattenOneOf(a)).toEqual({
84
- b: undefined,
85
- });
86
- });
87
- it('should return the original object if it does not have a oneof field', () => {
88
- const a = {
89
- a: 'a',
90
- b: 'b',
91
- };
92
- expect(flattenOneOf(a)).toEqual(a);
93
- });
94
- });
95
- describe('flattenOneOf - deep', () => {
96
- it('should flatten a simple oneof type', () => {
97
- const a = {
98
- a: 'a',
99
- content: {
100
- oneofKind: 'b',
101
- b: {
102
- d: 4,
103
- },
104
- },
105
- };
106
- expect(flattenOneOf(a, true)).toEqual({
107
- a: 'a',
108
- b: { d: 4 },
109
- });
110
- });
111
- it('should flatten a nested oneof type, all levels', () => {
112
- const a = {
113
- b: {
114
- content: {
115
- oneofKind: 'c',
116
- c: true,
117
- },
118
- },
119
- content: {
120
- oneofKind: 'd',
121
- d: {
122
- content: {
123
- oneofKind: 'e',
124
- e: 5,
125
- },
126
- },
127
- },
128
- };
129
- expect(flattenOneOf(a, true)).toEqual({
130
- b: {
131
- c: true,
132
- },
133
- d: {
134
- e: 5,
135
- },
136
- });
137
- });
138
- it('should flatten to undefined if the referenced property does not exist', () => {
139
- const a = {
140
- content: {
141
- oneofKind: 'b',
142
- c: true,
143
- },
144
- };
145
- expect(flattenOneOf(a, true)).toEqual({
146
- b: undefined,
147
- });
148
- });
149
- it('should return the original object if it does not have a oneof field', () => {
150
- const a = {
151
- a: 'a',
152
- b: 'b',
153
- };
154
- expect(flattenOneOf(a, true)).toEqual(a);
155
- });
156
- });
157
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,16 +0,0 @@
1
- import { formatServiceUrl } from './formatServiceUrl';
2
- describe('formatServiceUrl', () => {
3
- const url = 'https://{url}/admin/users/{test}/invitations';
4
- it('should format url', () => {
5
- let newUrl = formatServiceUrl(url, { url: 'test.com', test: 'me' });
6
- expect(newUrl).toEqual('https://test.com/admin/users/me/invitations');
7
- newUrl = formatServiceUrl(url, { url: 'test2.com', test: 'me2' });
8
- expect(newUrl).toEqual('https://test2.com/admin/users/me2/invitations');
9
- });
10
- it('should format insecure url', () => {
11
- let newUrl = formatServiceUrl(url, { url: 'test.com', test: 'me' }, true);
12
- expect(newUrl).toEqual('http://test.com/admin/users/me/invitations');
13
- newUrl = formatServiceUrl(url, { url: 'test2.com', test: 'me2' }, true);
14
- expect(newUrl).toEqual('http://test2.com/admin/users/me2/invitations');
15
- });
16
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,14 +0,0 @@
1
- import crypto from 'crypto';
2
- import { getSha256Hex } from './getSha256Hex';
3
- Object.defineProperty(globalThis, 'crypto', {
4
- value: {
5
- subtle: crypto.webcrypto.subtle,
6
- },
7
- });
8
- describe('getSha256Hex', () => {
9
- it('should return the correct SHA-256 hash', async () => {
10
- const buffer = new TextEncoder().encode('Hello, World!');
11
- const hash = await getSha256Hex(buffer);
12
- expect(hash).toBe('dffd6021bb2bd5b0af676290809ec3a53191dd81c7f70a4b28688a362182986f');
13
- });
14
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- import { getSha256HexNode } from './getSha256HexNode';
2
- describe('getSha256HexNode', () => {
3
- it('should return the correct SHA-256 hash', async () => {
4
- const buffer = new TextEncoder().encode('Hello, World!');
5
- const hash = await getSha256HexNode(buffer);
6
- expect(hash).toBe('dffd6021bb2bd5b0af676290809ec3a53191dd81c7f70a4b28688a362182986f');
7
- });
8
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,19 +0,0 @@
1
- import { getURLSearchParams } from './getURLSearchParams';
2
- describe('getURLSearchParams', () => {
3
- it('Should return the original param if URLSearchParams', () => {
4
- const param = new URLSearchParams();
5
- const searchParam = getURLSearchParams(param);
6
- expect(searchParam).toBe(param);
7
- });
8
- it('Should a new URLSearchParams ', () => {
9
- const param = {
10
- foo: 'bar',
11
- bar: true,
12
- foobar: 123,
13
- };
14
- const searchParam = getURLSearchParams(param);
15
- expect(searchParam.get('foo')).toBe('bar');
16
- expect(searchParam.get('bar')).toBe('true');
17
- expect(searchParam.get('foobar')).toBe('123');
18
- });
19
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,20 +0,0 @@
1
- import { nanosecondToMillisecond } from './nanosecondToMillisecond';
2
- describe('nanosecondToMillisecond', () => {
3
- it.each `
4
- input | expected
5
- ${'0.0001'} | ${0.0000000001}
6
- ${'1'} | ${0.000001}
7
- ${'1000000'} | ${1}
8
- ${'10000000'} | ${10}
9
- ${'-100000006'} | ${-100.000006}
10
- ${'1000000000000000000'} | ${1000000000000}
11
- ${'1234567891011100001'} | ${1234567891011.100001}
12
- ${'1234567891011100000'} | ${1234567891011.1}
13
- ${0.0001} | ${0.0000000001}
14
- ${1} | ${0.000001}
15
- ${1000000} | ${1}
16
- ${1000000000000001} | ${1000000000.000001}
17
- `('should convert $input to $expected', ({ input, expected }) => {
18
- expect(nanosecondToMillisecond(input)).toBe(expected);
19
- });
20
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,51 +0,0 @@
1
- import { splitRobotTopic } from './splitRobotTopic';
2
- describe('splitRobotTopic', () => {
3
- it('should split a path with a single topic', () => {
4
- expect(splitRobotTopic('/component/topic')).toEqual({
5
- component: 'component',
6
- topic: 'topic',
7
- });
8
- });
9
- it('should split a path with multiple topics', () => {
10
- expect(splitRobotTopic('/component/topic/with/multiple/topics')).toEqual({
11
- component: 'component',
12
- topic: 'topic/with/multiple/topics',
13
- });
14
- });
15
- it('should split a path with no topics', () => {
16
- expect(splitRobotTopic('/component')).toEqual({
17
- component: 'component',
18
- topic: '',
19
- });
20
- });
21
- it('should split a path with no forward slash', () => {
22
- expect(splitRobotTopic('component/topic')).toEqual({
23
- component: 'component',
24
- topic: 'topic',
25
- });
26
- });
27
- it('should split a path with no forward slash and no topics', () => {
28
- expect(splitRobotTopic('component')).toEqual({
29
- component: 'component',
30
- topic: '',
31
- });
32
- });
33
- it('should split a path with no forward slash and multiple topics', () => {
34
- expect(splitRobotTopic('component/topic/with/multiple/topics')).toEqual({
35
- component: 'component',
36
- topic: 'topic/with/multiple/topics',
37
- });
38
- });
39
- it('should handle a path with multiple forward slashes', () => {
40
- expect(splitRobotTopic('///component/topic/with/multiple/topics')).toEqual({
41
- component: 'component',
42
- topic: 'topic/with/multiple/topics',
43
- });
44
- });
45
- it('should handle a path with multiple forward slashes and no topics', () => {
46
- expect(splitRobotTopic('///component')).toEqual({
47
- component: 'component',
48
- topic: '',
49
- });
50
- });
51
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,11 +0,0 @@
1
- import { standardDeviation } from './standardDeviation';
2
- describe('standardDeviation', () => {
3
- it('should calculate standard deviation correctly', () => {
4
- let numbers = [10, 12, 23, 23, 16, 23, 21, 16];
5
- let stdDev = standardDeviation(numbers);
6
- expect(Math.abs(stdDev - 4.8989794855664)).toBeLessThan(0.000001);
7
- numbers = [100, 12, 23, 23, 116, 23, 21, 162];
8
- stdDev = standardDeviation(numbers);
9
- expect(Math.abs(stdDev - 53.702886328394)).toBeLessThan(0.000001);
10
- });
11
- });
@@ -1,4 +0,0 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
- export {};
@@ -1,127 +0,0 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
- import WorkerManager from './manager';
5
- const WorkerMocks = {
6
- postMessage: jest.fn(),
7
- terminate: jest.fn(),
8
- addEventListener: jest.fn(),
9
- removeEventListener: jest.fn(),
10
- onerror: jest.fn(),
11
- onmessage: jest.fn(),
12
- onmessageerror: jest.fn(),
13
- dispatchEvent: jest.fn(),
14
- clearAllMocks() {
15
- this.postMessage.mockClear();
16
- this.terminate.mockClear();
17
- this.addEventListener.mockClear();
18
- this.removeEventListener.mockClear();
19
- this.onerror.mockClear();
20
- this.onmessage.mockClear();
21
- this.onmessageerror.mockClear();
22
- this.dispatchEvent.mockClear();
23
- },
24
- };
25
- class MockWorkerClass {
26
- constructor() {
27
- this.postMessage = WorkerMocks.postMessage;
28
- this.terminate = WorkerMocks.terminate;
29
- this.addEventListener = WorkerMocks.addEventListener;
30
- this.removeEventListener = WorkerMocks.removeEventListener;
31
- this.onerror = WorkerMocks.onerror;
32
- this.onmessage = WorkerMocks.onmessage;
33
- this.onmessageerror = WorkerMocks.onmessageerror;
34
- this.dispatchEvent = WorkerMocks.dispatchEvent;
35
- }
36
- }
37
- Object.defineProperty(window, 'Worker', {
38
- value: MockWorkerClass,
39
- writable: true,
40
- });
41
- Object.defineProperty(window, 'URL', {
42
- value: {
43
- createObjectURL: jest.fn(),
44
- },
45
- });
46
- // add mock to AbortSignal.timeout
47
- Object.defineProperty(AbortSignal, 'timeout', {
48
- value: jest.fn().mockImplementation((timeout) => {
49
- return new AbortController().signal;
50
- }),
51
- });
52
- const task = {
53
- id: 'test',
54
- code: '1',
55
- timeout: 1000,
56
- };
57
- const response = {
58
- data: {
59
- id: 'test',
60
- success: true,
61
- result: 'test',
62
- },
63
- };
64
- describe('WorkerManager', () => {
65
- beforeEach(() => {
66
- WorkerMocks.clearAllMocks();
67
- });
68
- it('should send a task to the worker', async () => {
69
- const listeners = [];
70
- WorkerMocks.addEventListener.mockImplementation((_, listener) => {
71
- listeners.push(listener);
72
- });
73
- WorkerMocks.postMessage.mockImplementation((msg) => {
74
- listeners.forEach((listener) => {
75
- listener(response);
76
- });
77
- });
78
- const manager = new WorkerManager();
79
- const result = await manager.execute(task);
80
- expect(result).toEqual('test');
81
- });
82
- it('should handle listener for a single task', async () => {
83
- const listeners = [];
84
- WorkerMocks.addEventListener.mockImplementation((_, listener) => {
85
- listeners.push(listener);
86
- });
87
- WorkerMocks.removeEventListener.mockImplementation((_, listener) => {
88
- const index = listeners.indexOf(listener);
89
- listeners.splice(index, 1);
90
- });
91
- const manager = new WorkerManager();
92
- expect(listeners.length).toEqual(0);
93
- const result = manager.execute(task);
94
- expect(listeners.length).toEqual(1);
95
- listeners[0](response);
96
- await result;
97
- expect(listeners.length).toEqual(0);
98
- });
99
- it('should handle listener for multiple simultaneous task', async () => {
100
- const listeners = [];
101
- WorkerMocks.addEventListener.mockImplementation((_, listener) => {
102
- listeners.push(listener);
103
- });
104
- WorkerMocks.removeEventListener.mockImplementation((_, listener) => {
105
- const index = listeners.indexOf(listener);
106
- listeners.splice(index, 1);
107
- });
108
- const manager = new WorkerManager();
109
- expect(listeners.length).toEqual(0);
110
- const result1 = manager.execute(task);
111
- const result2 = manager.execute(task);
112
- expect(listeners.length).toEqual(2);
113
- const result3 = manager.execute(task);
114
- expect(listeners.length).toEqual(3);
115
- const [listener1, listener2, listener3] = listeners;
116
- listener1(response);
117
- await result1;
118
- expect(listeners.length).toEqual(2);
119
- listener3(response);
120
- await result3;
121
- expect(listeners.length).toEqual(1);
122
- listener2(response);
123
- await result2;
124
- expect(listeners.length).toEqual(0);
125
- expect(WorkerMocks.removeEventListener).toHaveBeenCalledTimes(3);
126
- });
127
- });
@@ -1,6 +0,0 @@
1
- export declare enum CallsignStatus {
2
- UNKNOWN = "unknown",
3
- ONLINE = "online",
4
- OFFLINE = "offline",
5
- ERROR = "error"
6
- }
@@ -1,7 +0,0 @@
1
- export var CallsignStatus;
2
- (function (CallsignStatus) {
3
- CallsignStatus["UNKNOWN"] = "unknown";
4
- CallsignStatus["ONLINE"] = "online";
5
- CallsignStatus["OFFLINE"] = "offline";
6
- CallsignStatus["ERROR"] = "error";
7
- })(CallsignStatus || (CallsignStatus = {}));
@@ -1 +0,0 @@
1
- export {};
@@ -1,108 +0,0 @@
1
- import { Token } from './Token';
2
- const generateToken = (config) => {
3
- const defaultPayload = {
4
- iat: 1234567890,
5
- exp: 9876543210,
6
- iss: 'myissuer',
7
- aud: 'myaudience',
8
- sub: 'mysubject',
9
- };
10
- const encodedHeader = Buffer.from(JSON.stringify(config?.header ?? { alg: 'HS256', typ: 'JWT' })).toString('base64');
11
- const encodedPayload = Buffer.from(JSON.stringify(config?.payload ?? defaultPayload)).toString('base64');
12
- if (config?.signature === null) {
13
- return `${encodedHeader}.${encodedPayload}`;
14
- }
15
- return `${encodedHeader}.${encodedPayload}.${config?.signature ?? 'signature'}`;
16
- };
17
- describe('Token', () => {
18
- describe('constructor', () => {
19
- it('can get information from a valid token', () => {
20
- const token = new Token(generateToken());
21
- expect(token.issuedAt).toEqual(new Date(1234567890000));
22
- expect(token.expires).toEqual(new Date(9876543210000));
23
- expect(token.issuer).toEqual('myissuer');
24
- expect(token.audience).toEqual('myaudience');
25
- expect(token.subject).toEqual('mysubject');
26
- });
27
- it('should throw an error for a non-jwt', () => {
28
- // completely invalid string
29
- expect(() => new Token('not a jwt')).toThrowError('Invalid token');
30
- // invalid header
31
- expect(() => {
32
- new Token(generateToken({
33
- header: {
34
- alg: 'HS256',
35
- typ: 'Not-a-JWT',
36
- },
37
- }));
38
- }).toThrowError('Invalid token');
39
- // too many parts
40
- expect(() => {
41
- new Token('a.b.c.d');
42
- }).toThrowError('Invalid token');
43
- });
44
- it('should allow a token with no signature', () => {
45
- const token = new Token(generateToken({ signature: null }));
46
- expect(token.issuedAt).toEqual(new Date(1234567890000));
47
- expect(token.expires).toEqual(new Date(9876543210000));
48
- expect(token.issuer).toEqual('myissuer');
49
- expect(token.audience).toEqual('myaudience');
50
- expect(token.subject).toEqual('mysubject');
51
- });
52
- });
53
- describe('isExpired', () => {
54
- const baseDate = new Date(2021, 0, 1, 0, 0, 0, 0);
55
- beforeEach(() => {
56
- jest.useFakeTimers();
57
- jest.setSystemTime(baseDate);
58
- });
59
- afterEach(() => {
60
- jest.useRealTimers();
61
- });
62
- const expiredDate = (baseDate.getTime() - 1000 * 60 * 5) / 1000; // 5 minutes ago
63
- const notExpiredDate = (baseDate.getTime() + 1000 * 60 * 60 * 24) / 1000; // 1 day from now
64
- it('should return true if the token is expired', () => {
65
- const token = new Token(generateToken({ payload: { exp: expiredDate } }));
66
- expect(token.isExpired()).toEqual(true);
67
- });
68
- it('should return false if the token is not expired', () => {
69
- const token = new Token(generateToken({ payload: { exp: notExpiredDate } }));
70
- expect(token.isExpired()).toEqual(false);
71
- });
72
- });
73
- describe('isExpiredIn', () => {
74
- const baseDate = new Date(2021, 0, 1, 0, 0, 0, 0);
75
- beforeEach(() => {
76
- jest.useFakeTimers();
77
- jest.setSystemTime(baseDate);
78
- });
79
- afterEach(() => {
80
- jest.useRealTimers();
81
- });
82
- const expiredDate = (baseDate.getTime() - 1000 * 60 * 5) / 1000; // 5 minutes ago
83
- const expiredIn5MinsDate = (baseDate.getTime() + 1000 * 60 * 5) / 1000; // 5 minutes from now
84
- const expiredIn25MinsDate = (baseDate.getTime() + 1000 * 60 * 25) / 1000; // 25 minutes from now
85
- const expiredIn2HoursDate = (baseDate.getTime() + 1000 * 60 * 60 * 2) / 1000; // 2 hours from now
86
- it('should return true if the token is expired in the given time', () => {
87
- const token = new Token(generateToken({ payload: { exp: expiredIn5MinsDate } }));
88
- expect(token.isExpiredIn(5, 'minutes')).toEqual(true);
89
- expect(token.isExpiredIn(25, 'minutes')).toEqual(true);
90
- expect(token.isExpiredIn(2, 'hours')).toEqual(true);
91
- const token2 = new Token(generateToken({ payload: { exp: expiredIn25MinsDate } }));
92
- expect(token2.isExpiredIn(25, 'minutes')).toEqual(true);
93
- expect(token2.isExpiredIn(2, 'hours')).toEqual(true);
94
- const token3 = new Token(generateToken({ payload: { exp: expiredDate } }));
95
- expect(token3.isExpiredIn(5, 'minutes')).toEqual(true);
96
- expect(token3.isExpiredIn(25, 'minutes')).toEqual(true);
97
- expect(token3.isExpiredIn(2, 'hours')).toEqual(true);
98
- });
99
- it('should return false if the token is not expired in the given time', () => {
100
- const token = new Token(generateToken({ payload: { exp: expiredIn5MinsDate } }));
101
- expect(token.isExpiredIn(4, 'minutes')).toEqual(false);
102
- const token2 = new Token(generateToken({ payload: { exp: expiredIn25MinsDate } }));
103
- expect(token2.isExpiredIn(24, 'minutes')).toEqual(false);
104
- const token3 = new Token(generateToken({ payload: { exp: expiredIn2HoursDate } }));
105
- expect(token3.isExpiredIn(1, 'hours')).toEqual(false);
106
- });
107
- });
108
- });
@@ -1 +0,0 @@
1
- export {};