@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,180 +0,0 @@
1
- import { PlatFormTimeService } from "./PlatformTimeService";
2
- import { TimeSyncerService } from "./TimeSyncerService";
3
- import { standardDeviation } from "../helpers";
4
- // Subclass PlatformTimeService so that we can test the protected methods
5
- class PlatformtimeServicePublic extends PlatFormTimeService {
6
- constructor(timeSyncerService) {
7
- super(timeSyncerService);
8
- }
9
- isReliableServerTime(platformTimeMeasurement) {
10
- return super.isReliableServerTime(platformTimeMeasurement);
11
- }
12
- calculateOffset(platformTimeMeasurement) {
13
- return super.calculateOffset(platformTimeMeasurement);
14
- }
15
- removeLongestAndShortest(platformTimeMeasurement) {
16
- return super.removeLongestAndShortest(platformTimeMeasurement);
17
- }
18
- static getInstance(timeSyncerService) {
19
- const instance = super.getInstance(timeSyncerService);
20
- return instance;
21
- }
22
- }
23
- describe('platformTimeService', () => {
24
- it('should calculate standard deviation correctly', () => {
25
- let numbers = [10, 12, 23, 23, 16, 23, 21, 16];
26
- let stdDev = standardDeviation(numbers);
27
- expect(Math.abs(stdDev - 4.8989794855664)).toBeLessThan(0.000001);
28
- numbers = [100, 12, 23, 23, 116, 23, 21, 162];
29
- stdDev = standardDeviation(numbers);
30
- expect(Math.abs(stdDev - 53.702886328394)).toBeLessThan(0.000001);
31
- });
32
- it('should be able to tell reliable server time response', () => {
33
- jest.useFakeTimers();
34
- const p = PlatformtimeServicePublic.getInstance(new TimeSyncerService({}));
35
- const mock = {
36
- clientTimeStampEnd: 100,
37
- clientTimeStampStart: 20,
38
- serverTime: {
39
- now: 0,
40
- duration: 0,
41
- },
42
- };
43
- const mocks = [];
44
- mocks.push(mock);
45
- let isReliableServerTime = p.isReliableServerTime(mocks);
46
- expect(isReliableServerTime).toBeTruthy();
47
- for (let i = 0; i < 4; i++) {
48
- mocks.push({ ...mock });
49
- isReliableServerTime = p.isReliableServerTime(mocks);
50
- expect(isReliableServerTime).toBeTruthy();
51
- }
52
- });
53
- it('should be able to tell unreliable server time response', () => {
54
- jest.useFakeTimers();
55
- const p = PlatformtimeServicePublic.getInstance(new TimeSyncerService({}));
56
- const mock = {
57
- clientTimeStampEnd: 100,
58
- clientTimeStampStart: 0,
59
- serverTime: {
60
- now: 0,
61
- duration: 0,
62
- },
63
- };
64
- const mocks = [];
65
- let isReliableServerTime = false;
66
- for (let i = 0; i < 5; i++) {
67
- const mockClone = { ...mock };
68
- mockClone.clientTimeStampEnd += i * 60;
69
- mocks.push(mockClone);
70
- }
71
- isReliableServerTime = p.isReliableServerTime(mocks);
72
- expect(isReliableServerTime).toBeTruthy();
73
- for (let i = 0; i < 5; i++) {
74
- const mockClone = { ...mock };
75
- mockClone.clientTimeStampEnd += i * 70;
76
- mocks.push(mockClone);
77
- }
78
- isReliableServerTime = p.isReliableServerTime(mocks);
79
- expect(isReliableServerTime).toBeTruthy();
80
- for (let i = 0; i < 5; i++) {
81
- const mockClone = { ...mock };
82
- mockClone.clientTimeStampEnd += i * 80;
83
- mocks.push(mockClone);
84
- }
85
- isReliableServerTime = p.isReliableServerTime(mocks);
86
- // std dev = 113.13708498985
87
- expect(isReliableServerTime).toBeFalsy();
88
- for (let i = 0; i < 5; i++) {
89
- const mockClone = { ...mock };
90
- mockClone.clientTimeStampEnd += i * 100;
91
- mocks.push(mockClone);
92
- }
93
- isReliableServerTime = p.isReliableServerTime(mocks);
94
- expect(isReliableServerTime).toBeFalsy();
95
- });
96
- it('should be able to remove shortest and longest correctly', () => {
97
- jest.useFakeTimers();
98
- const p = PlatformtimeServicePublic.getInstance(new TimeSyncerService({}));
99
- const mock = {
100
- clientTimeStampEnd: 100,
101
- clientTimeStampStart: 0,
102
- serverTime: {
103
- now: 0,
104
- duration: 0,
105
- },
106
- };
107
- const mocks = [];
108
- let mockClone = { ...mock };
109
- mockClone.clientTimeStampEnd = 100;
110
- mocks.push(mockClone);
111
- mockClone = { ...mock };
112
- mockClone.clientTimeStampEnd = 200;
113
- mocks.push(mockClone);
114
- mockClone = { ...mock };
115
- mockClone.clientTimeStampEnd = 500;
116
- mocks.push(mockClone);
117
- mockClone = { ...mock };
118
- mockClone.clientTimeStampEnd = 400;
119
- mocks.push(mockClone);
120
- mockClone = { ...mock };
121
- mockClone.clientTimeStampEnd = 300;
122
- mocks.push(mockClone);
123
- const platformTimeMeasurement = p.removeLongestAndShortest(mocks);
124
- platformTimeMeasurement.forEach((p) => {
125
- expect(p.clientTimeStampEnd).not.toEqual(100);
126
- expect(p.clientTimeStampEnd).not.toEqual(500);
127
- });
128
- });
129
- it('should be able to calculate the offset correctly', () => {
130
- jest.useFakeTimers();
131
- const p = PlatformtimeServicePublic.getInstance(new TimeSyncerService({}));
132
- const mock = {
133
- clientTimeStampEnd: 100,
134
- clientTimeStampStart: 0,
135
- serverTime: {
136
- now: 0,
137
- duration: 0,
138
- },
139
- };
140
- const mocks = [];
141
- let mockClone = { ...mock };
142
- mockClone.clientTimeStampEnd = 200;
143
- mocks.push(mockClone);
144
- mockClone = { ...mock };
145
- mockClone.clientTimeStampEnd = 500;
146
- mocks.push(mockClone);
147
- mockClone = { ...mock };
148
- mockClone.clientTimeStampEnd = 400;
149
- mocks.push(mockClone);
150
- const offset = p.calculateOffset(mocks);
151
- // (200-(200)/2 + 500 - (500)/2 + 400 - (400)/2)/3 = 183.333333333, round to 183
152
- expect(offset).toEqual(183);
153
- });
154
- it('should be able to filter where service time is not provided', () => {
155
- jest.useFakeTimers();
156
- const p = PlatformtimeServicePublic.getInstance(new TimeSyncerService({}));
157
- const mock = {
158
- clientTimeStampEnd: 100,
159
- clientTimeStampStart: 0,
160
- serverTime: {
161
- now: 0,
162
- duration: 0,
163
- },
164
- };
165
- const mocks = [];
166
- let mockClone = { ...mock };
167
- mockClone.clientTimeStampEnd = 200;
168
- mockClone.serverTime = undefined;
169
- mocks.push(mockClone);
170
- mockClone = { ...mock };
171
- mockClone.clientTimeStampEnd = 500;
172
- mocks.push(mockClone);
173
- mockClone = { ...mock };
174
- mockClone.clientTimeStampEnd = 400;
175
- mocks.push(mockClone);
176
- const offset = p.calculateOffset(mocks);
177
- // (500 - (500)/2 + 400 - (400)/2)/2 = 225
178
- expect(offset).toEqual(225);
179
- });
180
- });
@@ -1,4 +0,0 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
- export {};
@@ -1,169 +0,0 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
- import { lastValueFrom, takeUntil, toArray } from 'rxjs';
5
- import { RTPWebRTCService } from './RTPWebRTCService';
6
- class WebRTCMockHelper {
7
- constructor() {
8
- this.dataChannel = {
9
- label: 'submanager',
10
- onopen: () => void 0,
11
- onclose: () => void 0,
12
- onmessage: (e) => void 0,
13
- send: this.sendMessage.bind(this),
14
- close: this.close.bind(this),
15
- };
16
- this.connection = {
17
- ontrack: (event) => void 0,
18
- oniceconnectionstatechange: () => void 0,
19
- onicecandidate: async (event) => void 0,
20
- setRemoteDescription: jest.fn(),
21
- iceConnectionState: 'new',
22
- localDescription: null,
23
- createDataChannel: jest.fn().mockReturnValue(this.dataChannel),
24
- addTransceiver: jest.fn(),
25
- createOffer: this.createOffer.bind(this),
26
- setLocalDescription: jest.fn(),
27
- close: this.close.bind(this),
28
- };
29
- this.streams = [];
30
- }
31
- installMocks() {
32
- ;
33
- global.RTCPeerConnection = jest.fn().mockReturnValue(this.connection);
34
- global.RTCSessionDescription = jest.fn();
35
- this.mockFetch();
36
- }
37
- async createOffer() {
38
- await this.connection.onicecandidate({
39
- candidate: null,
40
- });
41
- this.connection.iceConnectionState = 'checking';
42
- this.connection.oniceconnectionstatechange();
43
- this.addTrack('my-stream-1');
44
- this.addTrack('my-stream-2');
45
- this.connection.iceConnectionState = 'connected';
46
- this.connection.oniceconnectionstatechange();
47
- this.dataChannel.onopen();
48
- return {
49
- sdp: 'my-sdp',
50
- type: 'offer',
51
- };
52
- }
53
- addTrack(name) {
54
- const stream = { name, active: true };
55
- this.streams.push(stream);
56
- this.connection.ontrack({
57
- streams: [stream],
58
- });
59
- }
60
- close() {
61
- this.streams.forEach((stream) => {
62
- stream.active = false;
63
- });
64
- this.dataChannel.onclose();
65
- this.connection.iceConnectionState = 'closed';
66
- this.connection.oniceconnectionstatechange();
67
- }
68
- sendMessage(message) {
69
- const { logLevel } = JSON.parse(message);
70
- if (logLevel === 'trace') {
71
- this.dataChannel.onmessage({
72
- data: message,
73
- });
74
- }
75
- }
76
- mockFetch() {
77
- global.fetch = jest.fn().mockImplementation((url) => {
78
- switch (url) {
79
- case 'https://localhost:0/sdp/configs':
80
- return Promise.resolve({
81
- json: () => ({
82
- iceServers: [
83
- {
84
- urls: ['stun:turn.localhost:443'],
85
- },
86
- ],
87
- }),
88
- });
89
- case 'https://localhost:0/sdp':
90
- return Promise.resolve({
91
- json: () => ({
92
- answer: btoa('null'),
93
- }),
94
- });
95
- default:
96
- throw new Error(`Unexpected URL: ${url}`);
97
- }
98
- });
99
- }
100
- }
101
- describe('RTPWebRTCService', () => {
102
- let service;
103
- beforeEach(() => {
104
- service = new RTPWebRTCService({
105
- url: 'localhost',
106
- port: 0,
107
- token: 'test',
108
- });
109
- });
110
- describe('streams$', () => {
111
- it('should emit a stream when a new stream is added', async () => {
112
- // Arrange
113
- new WebRTCMockHelper().installMocks();
114
- const connection = service.createPeerConnection({
115
- projectId: 'my-project',
116
- callsign: 'my-callsign',
117
- logLevel: 'trace',
118
- });
119
- // Act
120
- const streams = await lastValueFrom(connection.streams$.pipe(takeUntil(connection.connect()), toArray()));
121
- // Assert
122
- expect(streams).toEqual([
123
- [
124
- {
125
- name: 'my-stream-1',
126
- active: true,
127
- },
128
- ],
129
- [
130
- {
131
- name: 'my-stream-1',
132
- active: true,
133
- },
134
- {
135
- name: 'my-stream-2',
136
- active: true,
137
- },
138
- ],
139
- ]);
140
- });
141
- it('should reset the streams when the connection is disconnected and the streams become inactive', async () => {
142
- // Arrange
143
- new WebRTCMockHelper().installMocks();
144
- const connection = service.createPeerConnection({
145
- projectId: 'my-project',
146
- callsign: 'my-callsign',
147
- logLevel: 'trace',
148
- });
149
- // Act
150
- const streams = await lastValueFrom(connection.streams$.pipe(takeUntil((async () => {
151
- await connection.connect();
152
- connection.disconnect();
153
- await connection.connect();
154
- })()), toArray()));
155
- expect(streams).toEqual([
156
- [{ name: 'my-stream-1', active: false }],
157
- [
158
- { name: 'my-stream-1', active: false },
159
- { name: 'my-stream-2', active: false },
160
- ],
161
- [{ name: 'my-stream-1', active: true }],
162
- [
163
- { name: 'my-stream-1', active: true },
164
- { name: 'my-stream-2', active: true },
165
- ],
166
- ]);
167
- });
168
- });
169
- });
@@ -1 +0,0 @@
1
- export {};
@@ -1,37 +0,0 @@
1
- import { CallsignStatus } from '../models';
2
- import { NEVER, delay, from, lastValueFrom, take, throwError } from 'rxjs';
3
- import { TelemetryService } from './TelemetryService';
4
- describe('TelemetryService', () => {
5
- describe('getRobotStatusChanges', () => {
6
- it('should emit unknown to begin with', async () => {
7
- const service = new TelemetryService({ url: '', token: '' });
8
- // Mock 5 heartbeat messages
9
- jest.spyOn(service, 'subscribe').mockReturnValue(NEVER);
10
- const lastValue = await lastValueFrom(service.getRobotStatusChanges('project', 'callsign').pipe(take(1)));
11
- expect(lastValue).toEqual(CallsignStatus.UNKNOWN);
12
- });
13
- it('should emit online if the robot emits a heartbeat', async () => {
14
- const service = new TelemetryService({ url: '', token: '' });
15
- // Mock 5 heartbeat messages
16
- jest
17
- .spyOn(service, 'subscribe')
18
- .mockReturnValue(from([0, 1, 2, 3, 4]).pipe(delay(100)));
19
- const lastValue = await lastValueFrom(service.getRobotStatusChanges('project', 'callsign', 1000, 10).pipe(take(2)));
20
- expect(lastValue).toEqual(CallsignStatus.ONLINE);
21
- }, 10000);
22
- it('should emit offline if the robot never emits', async () => {
23
- const service = new TelemetryService({ url: '', token: '' });
24
- // Mock 5 heartbeat messages
25
- jest.spyOn(service, 'subscribe').mockReturnValue(NEVER);
26
- const lastValue = await lastValueFrom(service.getRobotStatusChanges('project', 'callsign', 100, 10).pipe(take(2)));
27
- expect(lastValue).toEqual(CallsignStatus.OFFLINE);
28
- });
29
- it('should emit an error if the telemetry errors', async () => {
30
- const service = new TelemetryService({ url: '', token: '' });
31
- // Mock 5 heartbeat messages
32
- jest.spyOn(service, 'subscribe').mockReturnValue(throwError(() => new Error('test')));
33
- const lastValue = await lastValueFrom(service.getRobotStatusChanges('project', 'callsign', 100, 10).pipe(take(2)));
34
- expect(lastValue).toEqual(CallsignStatus.ERROR);
35
- });
36
- });
37
- });