blob: e3d6aaa290442218ae7c492bc3576a2104a62090 (
plain)
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
|
package org.traccar.geofence;
import java.text.ParseException;
import org.junit.Assert;
import org.junit.Test;
public class GeofencePolygonTest {
@Test
public void testPolygonWKT() {
String test = "POLYGON ((55.75474 37.61823, 55.75513 37.61888, 55.7535 37.6222, 55.75315 37.62165))";
GeofenceGeometry geofenceGeometry = new GeofencePolygon();
try {
geofenceGeometry.fromWkt(test);
} catch (ParseException e){
Assert.assertTrue("ParseExceprion: " + e.getMessage(), true);
}
Assert.assertEquals(geofenceGeometry.toWkt(), test);
}
@Test
public void testContainsPolygon() {
String test = "POLYGON ((55.75474 37.61823, 55.75513 37.61888, 55.7535 37.6222, 55.75315 37.62165))";
GeofenceGeometry geofenceGeometry = new GeofencePolygon();
try {
geofenceGeometry.fromWkt(test);
} catch (ParseException e){
Assert.assertTrue("ParseExceprion: " + e.getMessage(), true);
}
Assert.assertTrue(geofenceGeometry.containsPoint(55.75476, 37.61915));
Assert.assertTrue(!geofenceGeometry.containsPoint(55.75545, 37.61921));
}
}
|