276 lines
9.9 KiB
JavaScript
276 lines
9.9 KiB
JavaScript
import _ol_geom_Circle_ from '../../../../src/ol/geom/Circle.js';
|
|
|
|
|
|
describe('ol.geom.Circle', function() {
|
|
|
|
describe('with a unit circle', function() {
|
|
|
|
var circle;
|
|
beforeEach(function() {
|
|
circle = new _ol_geom_Circle_([0, 0], 1);
|
|
});
|
|
|
|
describe('#clone', function() {
|
|
|
|
it('returns a clone', function() {
|
|
var clone = circle.clone();
|
|
expect(clone).to.be.an(_ol_geom_Circle_);
|
|
expect(clone.getCenter()).to.eql(circle.getCenter());
|
|
expect(clone.getCenter()).not.to.be(circle.getCenter());
|
|
expect(clone.getRadius()).to.be(circle.getRadius());
|
|
});
|
|
|
|
});
|
|
|
|
describe('#intersectsCoordinate', function() {
|
|
|
|
it('contains the center', function() {
|
|
expect(circle.intersectsCoordinate([0, 0])).to.be(true);
|
|
});
|
|
|
|
it('contains points inside the perimeter', function() {
|
|
expect(circle.intersectsCoordinate([0.5, 0.5])).to.be(true);
|
|
expect(circle.intersectsCoordinate([-0.5, 0.5])).to.be(true);
|
|
expect(circle.intersectsCoordinate([-0.5, -0.5])).to.be(true);
|
|
expect(circle.intersectsCoordinate([0.5, -0.5])).to.be(true);
|
|
});
|
|
|
|
it('contains points on the perimeter', function() {
|
|
expect(circle.intersectsCoordinate([1, 0])).to.be(true);
|
|
expect(circle.intersectsCoordinate([0, 1])).to.be(true);
|
|
expect(circle.intersectsCoordinate([-1, 0])).to.be(true);
|
|
expect(circle.intersectsCoordinate([0, -1])).to.be(true);
|
|
});
|
|
|
|
it('does not contain points outside the perimeter', function() {
|
|
expect(circle.intersectsCoordinate([2, 0])).to.be(false);
|
|
expect(circle.intersectsCoordinate([1, 1])).to.be(false);
|
|
expect(circle.intersectsCoordinate([-2, 0])).to.be(false);
|
|
expect(circle.intersectsCoordinate([0, -2])).to.be(false);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#getCenter', function() {
|
|
|
|
it('returns the expected value', function() {
|
|
expect(circle.getCenter()).to.eql([0, 0]);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#getClosestPoint', function() {
|
|
|
|
it('returns the closest point on the perimeter', function() {
|
|
var closestPoint;
|
|
closestPoint = circle.getClosestPoint([2, 0]);
|
|
expect(closestPoint[0]).to.roughlyEqual(1, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(0, 1e-15);
|
|
closestPoint = circle.getClosestPoint([2, 2]);
|
|
expect(closestPoint[0]).to.roughlyEqual(Math.sqrt(0.5), 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(Math.sqrt(0.5), 1e-15);
|
|
closestPoint = circle.getClosestPoint([0, 2]);
|
|
expect(closestPoint[0]).to.roughlyEqual(0, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(1, 1e-15);
|
|
closestPoint = circle.getClosestPoint([-2, 2]);
|
|
expect(closestPoint[0]).to.roughlyEqual(-Math.sqrt(0.5), 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(Math.sqrt(0.5), 1e-15);
|
|
closestPoint = circle.getClosestPoint([-2, 0]);
|
|
expect(closestPoint[0]).to.roughlyEqual(-1, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(0, 1e-15);
|
|
closestPoint = circle.getClosestPoint([-2, -2]);
|
|
expect(closestPoint[0]).to.roughlyEqual(-Math.sqrt(0.5), 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(-Math.sqrt(0.5), 1e-15);
|
|
closestPoint = circle.getClosestPoint([0, -2]);
|
|
expect(closestPoint[0]).to.roughlyEqual(0, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(-1, 1e-15);
|
|
closestPoint = circle.getClosestPoint([2, -2]);
|
|
expect(closestPoint[0]).to.roughlyEqual(Math.sqrt(0.5), 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(-Math.sqrt(0.5), 1e-15);
|
|
});
|
|
|
|
it('maintains Z coordinates', function() {
|
|
var circle = new _ol_geom_Circle_([0, 0, 1], 1);
|
|
expect(circle.getLayout()).to.be('XYZ');
|
|
var closestPoint = circle.getClosestPoint([2, 0]);
|
|
expect(closestPoint).to.have.length(3);
|
|
expect(closestPoint[0]).to.roughlyEqual(1, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(0, 1e-15);
|
|
expect(closestPoint[2]).to.be(1);
|
|
});
|
|
|
|
it('maintains M coordinates', function() {
|
|
var circle = new _ol_geom_Circle_([0, 0, 2], 1,
|
|
'XYM');
|
|
var closestPoint = circle.getClosestPoint([2, 0]);
|
|
expect(closestPoint).to.have.length(3);
|
|
expect(closestPoint[0]).to.roughlyEqual(1, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(0, 1e-15);
|
|
expect(closestPoint[2]).to.be(2);
|
|
});
|
|
|
|
it('maintains Z and M coordinates', function() {
|
|
var circle = new _ol_geom_Circle_([0, 0, 1, 2], 1);
|
|
expect(circle.getLayout()).to.be('XYZM');
|
|
var closestPoint = circle.getClosestPoint([2, 0]);
|
|
expect(closestPoint).to.have.length(4);
|
|
expect(closestPoint[0]).to.roughlyEqual(1, 1e-15);
|
|
expect(closestPoint[1]).to.roughlyEqual(0, 1e-15);
|
|
expect(closestPoint[2]).to.be(1);
|
|
expect(closestPoint[3]).to.be(2);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#getExtent', function() {
|
|
|
|
it('returns the expected value', function() {
|
|
expect(circle.getExtent()).to.eql([-1, -1, 1, 1]);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#getRadius', function() {
|
|
|
|
it('returns the expected value', function() {
|
|
expect(circle.getRadius()).to.be(1);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#getSimplifiedGeometry', function() {
|
|
|
|
it('returns the same geometry', function() {
|
|
expect(circle.getSimplifiedGeometry(1)).to.be(circle);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#getType', function() {
|
|
|
|
it('returns the expected value', function() {
|
|
expect(circle.getType()).to.be('Circle');
|
|
});
|
|
|
|
});
|
|
|
|
describe('#setCenter', function() {
|
|
|
|
it('sets the center', function() {
|
|
circle.setCenter([1, 2]);
|
|
expect(circle.getCenter()).to.eql([1, 2]);
|
|
});
|
|
|
|
it('fires a change event', function() {
|
|
var spy = sinon.spy();
|
|
circle.on('change', spy);
|
|
circle.setCenter([1, 2]);
|
|
expect(spy.calledOnce).to.be(true);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#setFlatCoordinates', function() {
|
|
|
|
it('sets both center and radius', function() {
|
|
circle.setFlatCoordinates('XY', [1, 2, 4, 2]);
|
|
expect(circle.getCenter()).to.eql([1, 2]);
|
|
expect(circle.getRadius()).to.be(3);
|
|
});
|
|
|
|
it('fires a single change event', function() {
|
|
var spy = sinon.spy();
|
|
circle.on('change', spy);
|
|
circle.setFlatCoordinates('XY', [1, 2, 4, 2]);
|
|
expect(spy.calledOnce).to.be(true);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#setRadius', function() {
|
|
|
|
it('sets the radius', function() {
|
|
circle.setRadius(2);
|
|
expect(circle.getRadius()).to.be(2);
|
|
});
|
|
|
|
it('fires a change event', function() {
|
|
var spy = sinon.spy();
|
|
circle.on('change', spy);
|
|
circle.setRadius(2);
|
|
expect(spy.calledOnce).to.be(true);
|
|
});
|
|
|
|
});
|
|
|
|
describe('#intersectsExtent', function() {
|
|
|
|
it('returns false for non-intersecting extents (wide outside own bbox)',
|
|
function() {
|
|
var wideOutsideLeftTop = [-3, 2, -2, 3];
|
|
var wideOutsideRightTop = [2, 2, 3, 3];
|
|
var wideOutsideRightBottom = [2, -3, 3, -2];
|
|
var wideOutsideLeftBottom = [-3, -3, -2, -2];
|
|
expect(circle.intersectsExtent(wideOutsideLeftTop)).to.be(false);
|
|
expect(circle.intersectsExtent(wideOutsideRightTop)).to.be(false);
|
|
expect(circle.intersectsExtent(wideOutsideRightBottom)).to.be(false);
|
|
expect(circle.intersectsExtent(wideOutsideLeftBottom)).to.be(false);
|
|
}
|
|
);
|
|
|
|
it('returns false for non-intersecting extents (inside own bbox)',
|
|
function() {
|
|
var nearOutsideLeftTop = [-1, 0.9, -0.9, 1];
|
|
var nearOutsideRightTop = [0.9, 0.9, 1, 1];
|
|
var nearOutsideRightBottom = [0.9, -1, 1, -0.9];
|
|
var nearOutsideLeftBottom = [-1, -1, -0.9, -0.9];
|
|
expect(circle.intersectsExtent(nearOutsideLeftTop)).to.be(false);
|
|
expect(circle.intersectsExtent(nearOutsideRightTop)).to.be(false);
|
|
expect(circle.intersectsExtent(nearOutsideRightBottom)).to.be(false);
|
|
expect(circle.intersectsExtent(nearOutsideLeftBottom)).to.be(false);
|
|
}
|
|
);
|
|
|
|
it('returns true for extents that intersect clearly', function() {
|
|
var intersectingLeftTop = [-1.5, 0.5, -0.5, 1.5];
|
|
var intersectingRightTop = [0.5, 0.5, 1.5, 1.5];
|
|
var intersectingRightBottom = [0.5, -1.5, 1.5, -0.5];
|
|
var intersectingLeftBottom = [-1.5, -1.5, -0.5, -0.5];
|
|
expect(circle.intersectsExtent(intersectingLeftTop)).to.be(true);
|
|
expect(circle.intersectsExtent(intersectingRightTop)).to.be(true);
|
|
expect(circle.intersectsExtent(intersectingRightBottom)).to.be(true);
|
|
expect(circle.intersectsExtent(intersectingLeftBottom)).to.be(true);
|
|
});
|
|
|
|
it('returns true for extents that touch the circumference', function() {
|
|
var touchCircumferenceLeft = [-2, 0, -1, 1];
|
|
var touchCircumferenceTop = [0, 1, 1, 2];
|
|
var touchCircumferenceRight = [1, -1, 2, 0];
|
|
var touchCircumferenceBottom = [-1, -2, 0, -1];
|
|
expect(circle.intersectsExtent(touchCircumferenceLeft)).to.be(true);
|
|
expect(circle.intersectsExtent(touchCircumferenceTop)).to.be(true);
|
|
expect(circle.intersectsExtent(touchCircumferenceRight)).to.be(true);
|
|
expect(circle.intersectsExtent(touchCircumferenceBottom)).to.be(true);
|
|
});
|
|
|
|
it('returns true for a contained extent', function() {
|
|
var containedExtent = [-0.5, -0.5, 0.5, 0.5];
|
|
expect(circle.intersectsExtent(containedExtent)).to.be(true);
|
|
});
|
|
|
|
it('returns true for a covering extent', function() {
|
|
var bigCoveringExtent = [-5, -5, 5, 5];
|
|
expect(circle.intersectsExtent(bigCoveringExtent)).to.be(true);
|
|
});
|
|
|
|
it('returns true for the geom\'s own extent', function() {
|
|
var circleExtent = circle.getExtent();
|
|
expect(circle.intersectsExtent(circleExtent)).to.be(true);
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|