maplibre-gl
Version:
BSD licensed community fork of mapbox-gl, a WebGL interactive maps library
67 lines (49 loc) • 1.85 kB
text/typescript
import {describe, beforeEach, afterEach, test, expect, vi} from 'vitest';
import {Map} from '../map';
import {DOM} from '../../util/dom';
import simulate from '../../../test/unit/lib/simulate_interaction';
import {browser} from '../../util/browser';
import {beforeMapTest} from '../../util/test/util';
let map;
function createMap() {
return new Map({style: '', container: DOM.create('div', '', window.document.body)});
}
beforeEach(() => {
beforeMapTest();
map = createMap();
});
afterEach(() => {
map.remove();
});
describe('Map.isRotating', () => {
test('returns false by default', () => {
expect(map.isRotating()).toBe(false);
});
test('returns true during a camera rotate animation', async () => {
map.on('rotatestart', () => {
expect(map.isRotating()).toBe(true);
});
const rotateEndPromise = map.once('rotateend');
map.rotateTo(5, {duration: 0});
await rotateEndPromise;
expect(map.isRotating()).toBe(false);
});
test('returns true when drag rotating', async () => {
// Prevent inertial rotation.
vi.spyOn(browser, 'now').mockImplementation(() => { return 0; });
map.on('rotatestart', () => {
expect(map.isRotating()).toBe(true);
});
map.on('rotateend', () => {
expect(map.isRotating()).toBe(false);
});
const promise = map.once('rotateend');
simulate.mousedown(map.getCanvas(), {buttons: 2, button: 2});
map._renderTaskQueue.run();
simulate.mousemove(map.getCanvas(), {buttons: 2, clientX: 10, clientY: 10});
map._renderTaskQueue.run();
simulate.mouseup(map.getCanvas(), {buttons: 0, button: 2});
map._renderTaskQueue.run();
await expect(promise).resolves.toBeDefined();
});
});