Skip to content

Commit 9c882be

Browse files
SseO-KRkikoso
andauthoredDec 20, 2023
fix: IllegalArgumentException is clearer than ArrayIndexOutOfBounds (#1241)
--------- Co-authored-by: skw4223 <66459882+skw4223@users.noreply.github.com> Co-authored-by: Enrique López Mañas <eenriquelopez@gmail.com>
1 parent b6aa0b7 commit 9c882be

File tree

4 files changed

+58
-9
lines changed

4 files changed

+58
-9
lines changed
 

‎library/src/main/java/com/google/maps/android/data/kml/KmlFeatureParser.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2020 Google Inc.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -432,6 +432,11 @@ private static LatLngAlt convertToLatLngAlt(String coordinateString) {
432432
*/
433433
private static LatLngAlt convertToLatLngAlt(String coordinateString, String separator) {
434434
String[] coordinate = coordinateString.split(separator);
435+
436+
if (coordinate.length < 2) {
437+
throw new IllegalArgumentException("Wrong coordinate, latitude and longitude must be set");
438+
}
439+
435440
double lat = Double.parseDouble(coordinate[LATITUDE_INDEX]);
436441
double lon = Double.parseDouble(coordinate[LONGITUDE_INDEX]);
437442
Double alt = (coordinate.length > 2) ? Double.parseDouble(coordinate[ALTITUDE_INDEX]) : null;

‎library/src/test/java/com/google/maps/android/data/kml/KmlFeatureParserTest.java

+30-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@
1515
*/
1616
package com.google.maps.android.data.kml;
1717

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;
1825
import com.google.maps.android.data.Geometry;
1926

2027
import org.junit.Test;
@@ -25,12 +32,6 @@
2532
import java.util.ArrayList;
2633
import java.util.List;
2734

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-
3435
@RunWith(RobolectricTestRunner.class)
3536
public class KmlFeatureParserTest {
3637

@@ -101,4 +102,27 @@ public void testMultiGeometries() throws Exception {
101102
assertEquals(subObjects.get(0).getGeometryType(), "Point");
102103
assertEquals(subObjects.get(1).getGeometryType(), "LineString");
103104
}
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+
}
104128
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Folder>
2+
<name>Basic Folder</name>
3+
<Placemark id="mountainpin1">
4+
<name>Pin on a mountaintop</name>
5+
<styleUrl>#pushpin</styleUrl>
6+
<LineString>
7+
<coordinates></coordinates>
8+
</LineString>
9+
</Placemark>
10+
</Folder>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Folder>
2+
<name>Basic Folder</name>
3+
<Placemark id="mountainpin1">
4+
<name>Pin on a mountaintop</name>
5+
<styleUrl>#pushpin</styleUrl>
6+
<LineString>
7+
<coordinates>170.1435558771009</coordinates>
8+
</LineString>
9+
</Placemark>
10+
</Folder>

0 commit comments

Comments
 (0)