|
15 | 15 | */
|
16 | 16 | package com.google.maps.android.data.kml;
|
17 | 17 |
|
| 18 | +import static com.google.maps.android.data.kml.KmlTestUtil.createParser; |
| 19 | +import static org.junit.Assert.assertEquals; |
| 20 | +import static org.junit.Assert.assertNotNull; |
| 21 | +import static org.junit.Assert.assertNull; |
| 22 | +import static org.junit.Assert.assertTrue; |
| 23 | + |
| 24 | +import com.google.android.gms.maps.model.LatLng; |
18 | 25 | import com.google.maps.android.data.Geometry;
|
19 | 26 |
|
20 | 27 | import org.junit.Test;
|
|
25 | 32 | import java.util.ArrayList;
|
26 | 33 | import java.util.List;
|
27 | 34 |
|
28 |
| -import static com.google.maps.android.data.kml.KmlTestUtil.createParser; |
29 |
| -import static org.junit.Assert.assertEquals; |
30 |
| -import static org.junit.Assert.assertNotNull; |
31 |
| -import static org.junit.Assert.assertNull; |
32 |
| -import static org.junit.Assert.assertTrue; |
33 |
| - |
34 | 35 | @RunWith(RobolectricTestRunner.class)
|
35 | 36 | public class KmlFeatureParserTest {
|
36 | 37 |
|
@@ -101,4 +102,27 @@ public void testMultiGeometries() throws Exception {
|
101 | 102 | assertEquals(subObjects.get(0).getGeometryType(), "Point");
|
102 | 103 | assertEquals(subObjects.get(1).getGeometryType(), "LineString");
|
103 | 104 | }
|
| 105 | + |
| 106 | + @Test(expected = IllegalArgumentException.class) |
| 107 | + public void testWrongNotExistCoordinates() throws Exception { |
| 108 | + XmlPullParser xmlPullParser = createParser("amu_wrong_not_exist_coordinates.kml"); |
| 109 | + KmlFeatureParser.createPlacemark(xmlPullParser); |
| 110 | + } |
| 111 | + |
| 112 | + @Test(expected = IllegalArgumentException.class) |
| 113 | + public void testWrongNotExistLatitude() throws Exception { |
| 114 | + XmlPullParser xmlPullParser = createParser("amu_wrong_not_exist_latitude_coordinates.kml"); |
| 115 | + KmlFeatureParser.createPlacemark(xmlPullParser); |
| 116 | + } |
| 117 | + |
| 118 | + @Test |
| 119 | + public void testSuitableCoordinates() throws Exception { |
| 120 | + XmlPullParser xmlPullParser = createParser("amu_basic_folder.kml"); |
| 121 | + KmlPlacemark feature = KmlFeatureParser.createPlacemark(xmlPullParser); |
| 122 | + assertEquals(feature.getProperty("name"), "Pin on a mountaintop"); |
| 123 | + assertEquals(feature.getGeometry().getGeometryType(), "Point"); |
| 124 | + LatLng latLng = (LatLng) feature.getGeometry().getGeometryObject(); |
| 125 | + assertEquals(latLng.latitude, -43.60505741890396, 0.001); |
| 126 | + assertEquals(latLng.longitude, 170.1435558771009, 0.001); |
| 127 | + } |
104 | 128 | }
|
0 commit comments