import {describe, beforeEach, afterEach, test, expect, vi} from 'vitest'; import {createMap, beforeMapTest, waitForEvent} from '../../util/test/util.ts'; import {LngLat} from '../../geo/lng_lat.ts'; import {fakeServer, type FakeServer} from 'nise'; import {type Terrain} from '../../render/terrain.ts'; import {MercatorTransform} from '../../geo/projection/mercator_transform.ts'; import {AttributionControl, defaultAttributionControlOptions} from '../control/attribution_control.ts'; import {type Map} from '../map.ts'; let server: FakeServer; let map: Map; beforeEach(() => { beforeMapTest(); global.fetch = null; server = fakeServer.create(); map = createMap(); }); afterEach(() => { server.restore(); }); describe('setTerrain', () => { test('warn when terrain and hillshade source identical', async () => { server.respondWith('/source.json', JSON.stringify({ minzoom: 5, maxzoom: 12, attribution: 'Terrain', tiles: ['http://example.com/{z}/{x}/{y}.pngraw'], bounds: [-47, -7, -45, -5] })); await map.once('load'); map.addSource('terrainrgb', {type: 'raster-dem', url: '/source.json'}); server.respond(); map.addLayer({id: 'hillshade', type: 'hillshade', source: 'terrainrgb'}); const originalWarn = console.warn; console.warn = vi.fn(); map.setTerrain({ source: 'terrainrgb' }); expect(console.warn).toHaveBeenCalledTimes(1); console.warn = originalWarn; }); test('fires an error and does not apply terrain the spec rejects', async () => { await map.once('style.load'); map.addSource('dem', {type: 'raster-dem', tiles: ['http://example.com/{z}/{x}/{y}.png'], tileSize: 256}); const errorSpy = vi.fn(); map.on('error', errorSpy); map.setTerrain({source: 'dem', nonsense: 1} as any); expect(errorSpy).toHaveBeenCalledTimes(1); expect(errorSpy.mock.calls[0][0].error.message).toContain('unknown property "nonsense"'); expect(map.getTerrain()).toBeNull(); }); test('applies terrain the spec accepts', async () => { await map.once('style.load'); map.addSource('dem', {type: 'raster-dem', tiles: ['http://example.com/{z}/{x}/{y}.png'], tileSize: 256}); const errorSpy = vi.fn(); map.on('error', errorSpy); map.setTerrain({source: 'dem', exaggeration: 2}); expect(errorSpy).not.toHaveBeenCalled(); expect(map.getTerrain()).toEqual({source: 'dem', exaggeration: 2}); }); test('drops the previous source attribution when switching terrain to a new source', async () => { const attribution = new AttributionControl(); map.addControl(attribution); await map.once('style.load'); const demALoaded = waitForEvent(map, 'sourcedata', (e) => e.sourceId === 'dem-a' && e.sourceDataType === 'metadata'); const demBLoaded = waitForEvent(map, 'sourcedata', (e) => e.sourceId === 'dem-b' && e.sourceDataType === 'metadata'); map.addSource('dem-a', {type: 'raster-dem', tiles: ['http://example.com/{z}/{x}/{y}.png'], tileSize: 256, attribution: 'DEM A'}); map.addSource('dem-b', {type: 'raster-dem', tiles: ['http://example.com/{z}/{x}/{y}.png'], tileSize: 256, attribution: 'DEM B'}); await Promise.all([demALoaded, demBLoaded]); map.setTerrain({source: 'dem-a'}); const terrainEvent = map.once('terrain'); map.setTerrain({source: 'dem-b'}); await terrainEvent; const innerContainer = map.getContainer().querySelector('.maplibregl-ctrl-attrib-inner'); expect(innerContainer.innerHTML).toBe(`DEM B | ${defaultAttributionControlOptions.customAttribution}`); }); test('invalidates cached elevation when terrain source data changes without a tile', async () => { await map.once('load'); map.addSource('terrainrgb', { type: 'raster-dem', tiles: ['http://example.com/{z}/{x}/{y}.png'] }); map.setTerrain({source: 'terrainrgb'}); if (!map.terrain) throw new Error('Expected terrain to be set'); const resetElevationCache = vi.spyOn(map.terrain, 'resetElevationCache'); map._terrainDataCallback({ dataType: 'source', sourceId: 'terrainrgb', sourceDataType: 'content', source: {type: 'raster-dem'} } as any); expect(resetElevationCache).toHaveBeenCalledTimes(1); }); }); describe('getTerrain', () => { test('returns null when not set', () => { const map = createMap(); expect(map.getTerrain()).toBeNull(); }); }); describe('getCameraTargetElevation', () => { test('Elevation is zero without terrain, and matches any given terrain', () => { expect(map.getCameraTargetElevation()).toBe(0); map.terrain = {} as Terrain; const transform = new MercatorTransform({minZoom: 0, maxZoom: 22, minPitch: 0, maxPitch: 60, renderWorldCopies: true}); transform.setElevation(200); transform.setCenter(new LngLat(10.0, 50.0)); transform.setZoom(14); transform.resize(512, 512); transform.setElevation(2000); map._camera.transform = transform; expect(map.getCameraTargetElevation()).toBe(2000); }); }); describe('Keep camera outside terrain', () => { test('Try to move camera into terrain', () => { let terrainElevation = 10; const terrainStub = {} as Terrain; terrainStub.getElevationForLngLatZoom = vi.fn( (_lngLat: LngLat, _zoom: number) => terrainElevation ); map.terrain = terrainStub; map._camera.terrain = terrainStub; // Terrain elevation is 10 everywhere, we are above it at zoom level 15 // with pitch 45 deg. map.jumpTo({center: [0.0, 0.0], bearing: 0, pitch: 45, zoom: 15}); const initialLngLat = map._camera.transform.screenPointToLocation(map._camera.transform.getCameraPoint()); const initialAltitude = map._camera.transform.getCameraAltitude(); expect(initialAltitude).toBeCloseTo(516, 0); // Now we set the elevation to 5000 everywhere and try to jump to the // same position. This would lead to a jump into the terrain, which // must not be possible. // Camera should be above the terrain, but at the same location as // before and with decreased pitch. terrainElevation = 5000; map.jumpTo({center: [0.0, 0.0], pitch: 45, zoom: 15}); const lngLat = map._camera.transform.screenPointToLocation(map._camera.transform.getCameraPoint()); expect(lngLat.lng).toBeCloseTo(initialLngLat.lng); expect(lngLat.lat).toBeCloseTo(initialLngLat.lat); expect(map._camera.transform.getCameraAltitude()).toBeGreaterThan(initialAltitude); expect(map._camera.transform.getCameraAltitude()).toBeGreaterThan(terrainElevation); }); }); describe('queryTerrainElevation', () => { test('should return null if terrain is not set', () => { map.terrain = null; const result = map.queryTerrainElevation([0, 0]); expect(result).toBeNull(); }); test('Calls getElevationForLngLatZoom with correct arguments', () => { const getElevationForLngLat = vi.fn(); map.terrain = {getElevationForLngLat} as any as Terrain; map._camera.transform = new MercatorTransform({minZoom: 0, maxZoom: 22, minPitch: 0, maxPitch: 60, renderWorldCopies: true}); map.queryTerrainElevation([1, 2]); expect(map.terrain.getElevationForLngLat).toHaveBeenCalledWith( expect.objectContaining({lng: 1, lat: 2,}), map._camera.transform ); }); });