forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-pipeline.js
272 lines (246 loc) · 6.79 KB
/
test-pipeline.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
// Copyright (c) 2017 Intel Corporation. All rights reserved.
// Use of this source code is governed by an Apache 2.0 license
// that can be found in the LICENSE file.
'use strict';
/* global describe, it, before, after, beforeEach, afterEach */
const assert = require('assert');
let rs2;
try {
rs2 = require('node-librealsense');
} catch (e) {
rs2 = require('../index.js');
}
let ctx;
let pipeline;
describe('Pipeline test', function() {
before(function() {
ctx = new rs2.Context();
const devices = ctx.queryDevices().devices;
assert(devices.length > 0); // Device must be connected
});
after(function() {
rs2.cleanup();
});
it('Testing constructor - 0 option', () => {
assert.doesNotThrow(() => {
new rs2.Pipeline();
});
});
it('Testing constructor - 2 options', () => {
assert.throws(() => {
new rs2.Pipeline(1, 2);
});
});
it('Testing constructor - 1 invalid option', () => {
assert.throws(() => {
new rs2.Pipeline(1);
});
});
it('Testing constructor - 1 context option', () => {
assert.doesNotThrow(() => {
new rs2.Pipeline(ctx);
});
});
});
describe('Pipeline method test', () => {
beforeEach(() => {
ctx = new rs2.Context();
const devices = ctx.queryDevices().devices;
assert(devices.length > 0); // Device must be connected
pipeline = new rs2.Pipeline();
});
afterEach(() => {
rs2.cleanup();
pipeline.stop();
pipeline.destroy();
});
it('Testing method destroy', () => {
assert.doesNotThrow(() => {
pipeline.start();
pipeline.waitForFrames();
pipeline.stop();
});
});
it('Testing method destroy w/o start', () => {
assert.doesNotThrow(() => {
pipeline.destroy();
});
assert.equal(pipeline.ctx, undefined);
assert.equal(pipeline.cxxPipeline, undefined);
assert.equal(pipeline.started, false);
assert.equal(pipeline.frameSet, undefined);
});
it('Testing method destroy after restart pipeline', () => {
pipeline.start();
pipeline.waitForFrames();
assert.doesNotThrow(() => {
pipeline.destroy();
});
assert.throws(() => {
pipeline.start();
});
});
it('Testing method waitForFrames', () => {
let frameSet;
assert.doesNotThrow(() => {
pipeline.start();
frameSet = pipeline.waitForFrames();
});
let endTest = false;
let n = 0;
while (!endTest) {
frameSet = pipeline.waitForFrames();
n++;
if (n > 1) console.log(`retring left ...${10 - n} times`);
if (frameSet !== undefined && frameSet.colorFrame !== undefined &&
frameSet.depthFrame !== undefined) {
assert(frameSet.depthFrame instanceof rs2.VideoFrame);
assert(frameSet.colorFrame instanceof rs2.VideoFrame);
endTest = true;
}
if (n >= 10) {
assert(false, 'could not get colorFrame or depthFrame, try to reset camera');
}
}
pipeline.stop();
});
it('Testing method start', () => {
assert.doesNotThrow(() => {
let res = pipeline.start();
pipeline.waitForFrames();
assert(res instanceof rs2.PipelineProfile);
});
assert.notEqual(pipeline, undefined);
assert.doesNotThrow(() => {
pipeline.start();
pipeline.waitForFrames();
pipeline.stop();
});
assert.equal(pipeline.started, false);
});
it('Testing method start w/ invalid args', () => {
assert.throws(() => {
pipeline.start('dummy');
});
pipeline.stop();
});
it('Testing method start after stop', () => {
assert.doesNotThrow(() => {
pipeline.start();
assert.equal(pipeline.started, true);
});
assert.doesNotThrow(() => {
pipeline.stop();
assert.equal(pipeline.started, false);
});
assert.doesNotThrow(() => {
pipeline.start();
assert.equal(pipeline.started, true);
});
});
it('Testing method start after destroy', () => {
assert.doesNotThrow(() => {
pipeline.start();
assert.equal(pipeline.started, true);
});
assert.doesNotThrow(() => {
pipeline.destroy();
assert.equal(pipeline.started, false);
});
assert.throws(() => {
pipeline.start();
assert.equal(pipeline.started, false);
});
});
it('Testing method start w/ config', () => {
let config = new rs2.Config();
assert.doesNotThrow(() => {
let res = pipeline.start(config);
assert(res instanceof rs2.PipelineProfile);
});
assert.equal(pipeline.started, true);
pipeline.stop();
});
it('Testing method start after started', () => {
assert.doesNotThrow(() => {
pipeline.start();
assert.equal(pipeline.started, true);
let res = pipeline.start();
assert.equal(typeof res, 'undefined');
assert.equal(pipeline.started, true);
});
});
it('Testing method stop', () => {
assert.notEqual(pipeline, undefined);
assert.doesNotThrow(() => {
pipeline.start();
pipeline.waitForFrames();
pipeline.stop();
});
});
it('Testing method stop and restart pipeline', () => {
assert.notEqual(pipeline, undefined);
assert.doesNotThrow(() => {
pipeline.start();
pipeline.waitForFrames();
pipeline.stop();
});
assert.equal(pipeline.started, false);
assert.doesNotThrow(() => {
pipeline.start();
});
assert.equal(pipeline.started, true);
pipeline.stop();
});
it('Testing method stop when not start', () => {
assert.notEqual(pipeline, undefined);
assert.doesNotThrow(() => {
let res = pipeline.stop();
assert(typeof res, 'undefined');
});
assert.equal(pipeline.started, false);
});
it('Testing method getActiveProfile', () => {
pipeline.start();
assert.doesNotThrow(() => {
let res = pipeline.getActiveProfile();
assert(typeof res, 'object');
});
pipeline.stop();
});
it('Testing method getActiveProfile before pipe start', () => {
assert.doesNotThrow(() => {
let res = pipeline.getActiveProfile();
assert(typeof res, 'undefined');
pipeline.start();
pipeline.waitForFrames();
pipeline.stop();
});
});
it('Testing method getActiveProfile after pipe stop', () => {
assert.doesNotThrow(() => {
pipeline.start();
pipeline.waitForFrames();
pipeline.stop();
let res = pipeline.getActiveProfile();
assert(typeof res, 'undefined');
});
});
it('Testing method pollForFrames', () => {
let then = Date.now();
pipeline.start();
pipeline.waitForFrames();
let res;
assert.doesNotThrow(() => {
while (Date.now() < then + 2000) {
res = pipeline.pollForFrames();
if (res) {
assert(typeof res.size, 'number');
assert(typeof res.depthFrame, 'object');
assert(typeof res.colorFrame, 'object');
break;
}
}
});
});
});