-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathsampleTerrainSpec.js
401 lines (353 loc) · 13.1 KB
/
sampleTerrainSpec.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
import {
ArcGISTiledElevationTerrainProvider,
Cartographic,
CesiumTerrainProvider,
createWorldTerrainAsync,
defined,
RequestScheduler,
Resource,
sampleTerrain,
} from "../../index.js";
describe("Core/sampleTerrain", function () {
let worldTerrain;
beforeAll(async function () {
worldTerrain = await createWorldTerrainAsync();
});
afterEach(function () {
Resource._Implementations.loadWithXhr =
Resource._DefaultImplementations.loadWithXhr;
});
it("queries heights", function () {
const positions = [
Cartographic.fromDegrees(86.925145, 27.988257),
Cartographic.fromDegrees(87.0, 28.0),
];
return sampleTerrain(worldTerrain, 11, positions).then(
function (passedPositions) {
expect(passedPositions).toBe(positions);
expect(positions[0].height).toBeGreaterThan(5000);
expect(positions[0].height).toBeLessThan(10000);
expect(positions[1].height).toBeGreaterThan(5000);
expect(positions[1].height).toBeLessThan(10000);
},
);
});
it("queries heights from terrain without availability", async function () {
// Mock terrain tile loading
Resource._Implementations.loadWithXhr = function (
url,
responseType,
method,
data,
headers,
deferred,
overrideMimeType,
) {
if (defined(url.match(/\/\d+\/\d+\/\d+\.terrain/))) {
Resource._DefaultImplementations.loadWithXhr(
"Data/CesiumTerrainTileJson/11_3027_1342.terrain",
responseType,
method,
data,
headers,
deferred,
);
return;
}
Resource._DefaultImplementations.loadWithXhr(
url,
responseType,
method,
data,
headers,
deferred,
overrideMimeType,
);
};
const terrainProvider = await CesiumTerrainProvider.fromUrl(
"Data/CesiumTerrainTileJson/StandardHeightmap.tile.json",
);
const positions = [
Cartographic.fromDegrees(86.925145, 27.988257),
Cartographic.fromDegrees(87.0, 28.0),
];
const passedPositions = await sampleTerrain(terrainProvider, 11, positions);
expect(passedPositions).toBe(positions);
expect(positions[0].height).toBeGreaterThan(5000);
expect(positions[0].height).toBeLessThan(10000);
expect(positions[1].height).toBeGreaterThan(5000);
expect(positions[1].height).toBeLessThan(10000);
});
it("sets height to undefined if terrain data is not available at the position and specified level", function () {
const positions = [Cartographic.fromDegrees(0.0, 0.0, 0.0)];
return sampleTerrain(worldTerrain, 18, positions).then(function () {
expect(positions[0].height).toBeUndefined();
});
});
it("rejects if terrain data is not available and rejectOnTileFail is true", function () {
const positions = [Cartographic.fromDegrees(0.0, 0.0, 0.0)];
return expectAsync(
sampleTerrain(worldTerrain, 18, positions, true),
).toBeRejected();
});
it("rejects if terrain data is not available for the second position and rejectOnTileFail is true", function () {
const positionWithData = Cartographic.fromDegrees(86.925145, 27.988257);
const positionWithoutData = Cartographic.fromDegrees(0.0, 0.0, 0.0);
const positions = [positionWithData, positionWithoutData];
return expectAsync(
sampleTerrain(worldTerrain, 12, positions, true),
).toBeRejected();
});
it("fills in what it can when given a mix of positions with and without valid tiles", function () {
const positions = [
Cartographic.fromDegrees(86.925145, 27.988257),
Cartographic.fromDegrees(0.0, 89.0, 0.0),
Cartographic.fromDegrees(87.0, 28.0),
];
return sampleTerrain(worldTerrain, 12, positions).then(function () {
expect(positions[0].height).toBeGreaterThan(5000);
expect(positions[0].height).toBeLessThan(10000);
expect(positions[1].height).toBeUndefined();
expect(positions[2].height).toBeGreaterThan(5000);
expect(positions[2].height).toBeLessThan(10000);
});
});
it("requires terrainProvider, level, and positions", async function () {
const positions = [
Cartographic.fromDegrees(86.925145, 27.988257),
Cartographic.fromDegrees(0.0, 0.0, 0.0),
Cartographic.fromDegrees(87.0, 28.0),
];
await expectAsync(
sampleTerrain(undefined, 11, positions),
).toBeRejectedWithDeveloperError();
await expectAsync(
sampleTerrain(worldTerrain, undefined, positions),
).toBeRejectedWithDeveloperError();
await expectAsync(
sampleTerrain(worldTerrain, 11, undefined),
).toBeRejectedWithDeveloperError();
});
it("works for a dodgy point right near the edge of a tile", function () {
const positions = [
new Cartographic(0.33179290856829535, 0.7363107781851078),
];
return sampleTerrain(worldTerrain, 12, positions).then(function () {
expect(positions[0].height).toBeDefined();
});
});
describe("with terrain providers", function () {
beforeEach(function () {
RequestScheduler.clearForSpecs();
});
afterEach(function () {
Resource._Implementations.loadWithXhr =
Resource._DefaultImplementations.loadWithXhr;
});
function spyOnTerrainDataCreateMesh(terrainProvider) {
// do some sneaky spying, so we can check how many times createMesh is called
const originalRequestTileGeometry = terrainProvider.requestTileGeometry;
spyOn(terrainProvider, "requestTileGeometry").and.callFake(
function (x, y, level, request) {
// Call the original function!
return originalRequestTileGeometry
.call(terrainProvider, x, y, level, request)
.then(function (tile) {
spyOn(tile, "createMesh").and.callThrough();
// return the original tile - after we've spied on the createMesh method
return tile;
});
},
);
}
function expectTileAndMeshCounts(
terrainProvider,
numberOfTilesRequested,
wasFirstTileMeshCreated,
) {
// assert how many tiles were requested
expect(terrainProvider.requestTileGeometry.calls.count()).toEqual(
numberOfTilesRequested,
);
// get the first tile that was requested
return (
terrainProvider.requestTileGeometry.calls
.first()
// the return value was the promise of the tile, so wait for that
.returnValue.then(function (terrainData) {
// assert if the mesh was created or not for this tile
expect(terrainData.createMesh.calls.count()).toEqual(
wasFirstTileMeshCreated ? 1 : 0,
);
})
);
}
function endsWith(value, suffix) {
return value.indexOf(suffix, value.length - suffix.length) >= 0;
}
function patchXHRLoad(proxySpec) {
Resource._Implementations.loadWithXhr = function (
url,
responseType,
method,
data,
headers,
deferred,
overrideMimeType,
) {
// find a key (source path) path in the spec which matches (ends with) the requested url
const availablePaths = Object.keys(proxySpec);
let proxiedUrl;
for (let i = 0; i < availablePaths.length; i++) {
const srcPath = availablePaths[i];
if (endsWith(url, srcPath)) {
proxiedUrl = proxySpec[availablePaths[i]];
break;
}
}
// it's a whitelist - meaning you have to proxy every request explicitly
if (!defined(proxiedUrl)) {
throw new Error(
`Unexpected XHR load to url: ${url}; spec includes: ${availablePaths.join(
", ",
)}`,
);
}
// make a real request to the proxied path for the matching source path
return Resource._DefaultImplementations.loadWithXhr(
proxiedUrl,
responseType,
method,
data,
headers,
deferred,
overrideMimeType,
);
};
}
it("should work for Cesium World Terrain", async function () {
patchXHRLoad({
"/layer.json": "Data/CesiumTerrainTileJson/9_759_335/layer.json",
"/9/759/335.terrain?v=1.2.0":
"Data/CesiumTerrainTileJson/9_759_335/9_759_335.terrain",
});
const terrainProvider =
await CesiumTerrainProvider.fromUrl("made/up/url");
spyOnTerrainDataCreateMesh(terrainProvider);
const positionA = Cartographic.fromDegrees(
86.93666235421982,
27.97989963555095,
);
const positionB = Cartographic.fromDegrees(
86.9366623542198,
27.9798996355509,
);
const positionC = Cartographic.fromDegrees(
86.936662354213,
27.979899635557,
);
const level = 9;
return sampleTerrain(terrainProvider, level, [
positionA,
positionB,
positionC,
]).then(function () {
expect(positionA.height).toBeCloseTo(7780, 0);
expect(positionB.height).toBeCloseTo(7780, 0);
expect(positionC.height).toBeCloseTo(7780, 0);
// 1 tile was requested (all positions were close enough on the same tile)
// and the mesh was not created because we're using CWT - which doesn't need the mesh for interpolation
return expectTileAndMeshCounts(terrainProvider, 1, false);
});
});
it("should work for ArcGIS terrain", async function () {
patchXHRLoad({
"/?f=pjson": "Data/ArcGIS/9_214_379/root.json",
"/tilemap/10/384/640/128/128":
"Data/ArcGIS/9_214_379/tilemap_10_384_640_128_128.json",
"/tile/9/214/379": "Data/ArcGIS/9_214_379/tile_9_214_379.tile",
});
const terrainProvider =
await ArcGISTiledElevationTerrainProvider.fromUrl("made/up/url");
spyOnTerrainDataCreateMesh(terrainProvider);
const positionA = Cartographic.fromDegrees(
86.93666235421982,
27.97989963555095,
);
const positionB = Cartographic.fromDegrees(
86.9366623542198,
27.9798996355509,
);
const positionC = Cartographic.fromDegrees(
86.936662354213,
27.979899635557,
);
const level = 9;
await sampleTerrain(terrainProvider, level, [
positionA,
positionB,
positionC,
]);
// 3 very similar positions
expect(positionA.height).toBeCloseTo(7681, 0);
expect(positionB.height).toBeCloseTo(7681, 0);
expect(positionC.height).toBeCloseTo(7681, 0);
// 1 tile was requested (all positions were close enough on the same tile)
// and the mesh was created once because we're using an ArcGIS tile
await expectTileAndMeshCounts(terrainProvider, 1, true);
});
it("should handle the RequestScheduler throttling the requestTileGeometry requests with a retry", async function () {
patchXHRLoad({
"/?f=pjson": "Data/ArcGIS/9_214_379/root.json",
"/tilemap/10/384/640/128/128":
"Data/ArcGIS/9_214_379/tilemap_10_384_640_128_128.json",
// we need multiple tiles to be requested, the actual value is not so important for this test
"/tile/9/214/379": "Data/ArcGIS/9_214_379/tile_9_214_379.tile",
"/tile/9/214/378": "Data/ArcGIS/9_214_379/tile_9_214_379.tile",
"/tile/9/214/376": "Data/ArcGIS/9_214_379/tile_9_214_379.tile",
});
const terrainProvider =
await ArcGISTiledElevationTerrainProvider.fromUrl("made/up/url");
let i = 0;
const originalRequestTileGeometry = terrainProvider.requestTileGeometry;
spyOn(terrainProvider, "requestTileGeometry").and.callFake(
function (x, y, level, request) {
i++;
if (i === 2 || i === 3) {
// on the 2nd and 3rd requestTileGeometry call, return undefined
// to simulate RequestScheduler throttling the request
return undefined;
}
// otherwise, call the original method
return originalRequestTileGeometry.call(
terrainProvider,
x,
y,
level,
request,
);
},
);
// 3 positions, quite far apart (requires multiple tile requests)
const positionA = Cartographic.fromDegrees(85, 28);
const positionB = Cartographic.fromDegrees(86, 28);
const positionC = Cartographic.fromDegrees(87, 28);
const level = 9;
await sampleTerrain(terrainProvider, level, [
positionA,
positionB,
positionC,
]);
// the order of requests is an implementation detail and not important,
// but it is deterministic, and we can assert that there were some retries in there
const calls = terrainProvider.requestTileGeometry.calls;
expect(calls.count()).toEqual(5);
expect(calls.argsFor(0)).toEqual([376, 214, 9]);
expect(calls.argsFor(1)).toEqual([378, 214, 9]);
// this tile was retried twice, because the 2nd and 3rd call to requestTileGeometry returned undefined as expected
expect(calls.argsFor(2)).toEqual([378, 214, 9]);
expect(calls.argsFor(3)).toEqual([378, 214, 9]);
expect(calls.argsFor(4)).toEqual([379, 214, 9]);
});
});
});