Changeset 16643 in josm for trunk/test
- Timestamp:
- 2020-06-14T20:19:59+02:00 (4 years ago)
- Location:
- trunk/test
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/functional/org/openstreetmap/josm/data/imagery/ImageryCompareTestIT.java
r15135 r16643 44 44 String comparison = HttpClient.create(new URL("https://josm.openstreetmap.de/wiki/ImageryCompare")).connect().fetchContent(); 45 45 String rubricLine = null; 46 for (String line : comparison.split("\n" )) {46 for (String line : comparison.split("\n", -1)) { 47 47 boolean black = line.startsWith(BLACK_PREFIX); 48 48 if (black) { -
trunk/test/unit/org/openstreetmap/josm/TestUtils.java
r16162 r16643 598 598 public static List<String> getIgnoredErrorMessages(Class<?> integrationTest) throws IOException { 599 599 return Arrays.stream(new WikiReader() 600 .read("https://josm.openstreetmap.de/wiki/IntegrationTestIgnores?format=txt") 601 .split("\\n")) 600 .read("https://josm.openstreetmap.de/wiki/IntegrationTestIgnores?format=txt").split("\\n", -1)) 602 601 .filter(s -> s.startsWith("|| " + integrationTest.getSimpleName() + " ||")) 603 602 .map(s -> s.substring(s.indexOf("{{{") + 3, s.indexOf("}}}"))) -
trunk/test/unit/org/openstreetmap/josm/data/osm/TagCollectionTest.java
r14518 r16643 689 689 TagCollection g = new TagCollection(Arrays.asList(new Tag("k", "b"), new Tag("k", "a"), new Tag("k", "b"), 690 690 new Tag("k", "c"), new Tag("k", "d"))); 691 assertEquals("a;b;c;d", Stream.of(g.getJoinedValues("k").split(";" )).sorted().collect(Collectors.joining(";")));691 assertEquals("a;b;c;d", Stream.of(g.getJoinedValues("k").split(";", -1)).sorted().collect(Collectors.joining(";"))); 692 692 } 693 693 -
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
r16006 r16643 99 99 debug = "debug".equals(args[0]); 100 100 if (args[args.length - 1].startsWith("EPSG:")) { 101 forcedCodes = Arrays.asList(args[args.length - 1].split("," ));101 forcedCodes = Arrays.asList(args[args.length - 1].split(",", -1)); 102 102 } 103 103 } … … 137 137 result.add(curEntry); 138 138 } else if (curEntry != null) { 139 String[] f = line.trim().split("," );139 String[] f = line.trim().split(",", -1); 140 140 double lon = Double.parseDouble(f[0]); 141 141 double lat = Double.parseDouble(f[1]); … … 277 277 List<String> args = new ArrayList<>(); 278 278 args.add(CS2CS_EXE); 279 args.addAll(Arrays.asList("-f %.9f +proj=longlat +datum=WGS84 +to".split(" " )));279 args.addAll(Arrays.asList("-f %.9f +proj=longlat +datum=WGS84 +to".split(" ", -1))); 280 280 // proj.4 cannot read our ntf_r93_b.gsb file 281 281 // possibly because it is big endian. Use equivalent … … 286 286 def = def.replace("'", "\\'").replace("\"", "\\\""); 287 287 } 288 args.addAll(Arrays.asList(def.split(" " )));288 args.addAll(Arrays.asList(def.split(" ", -1))); 289 289 ProcessBuilder pb = new ProcessBuilder(args); 290 290 pb.environment().put("PROJ_LIB", new File(PROJ_LIB_DIR).getAbsolutePath()); -
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
r16445 r16643 125 125 126 126 private static Pair<Double, Double> readLine(String expectedName, String input) { 127 String[] fields = input.trim().split("[ ]+" );127 String[] fields = input.trim().split("[ ]+", -1); 128 128 if (fields.length != 3) throw new AssertionError(); 129 129 if (!fields[0].equals(expectedName)) throw new AssertionError(); -
trunk/test/unit/org/openstreetmap/josm/data/validation/tests/ValidatorTestUtils.java
r15071 r16643 51 51 Set<Integer> expectedCodes = new TreeSet<>(); 52 52 if (!"none".equals(codes)) { 53 for (String code : codes.split("," )) {53 for (String code : codes.split(",", -1)) { 54 54 expectedCodes.add(Integer.parseInt(code)); 55 55 } -
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/RenderingCLIAreaTest.java
r16618 r16643 154 154 155 155 public RenderingCLIAreaTest(String args, Matcher<Double> scaleMatcher, Matcher<Bounds> boundsMatcher) { 156 this.args = args.split("\\s+" );156 this.args = args.split("\\s+", -1); 157 157 this.scaleMatcher = scaleMatcher; 158 158 this.boundsMatcher = boundsMatcher; -
trunk/test/unit/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreferenceTestIT.java
r16438 r16643 248 248 // Check if we have received an error message 249 249 String error = helper.detectErrorMessage(new String(data, StandardCharsets.UTF_8)); 250 String errorMsg = url + zoomMarker(zoom) + (error != null ? error.split("\\n" )[0] : defaultMessage);250 String errorMsg = url + zoomMarker(zoom) + (error != null ? error.split("\\n", -1)[0] : defaultMessage); 251 251 addError(info, errorMsg); 252 252 return errorMsg; … … 344 344 345 345 private static boolean isZoomError(String error) { 346 String[] parts = error.split(ERROR_SEP );346 String[] parts = error.split(ERROR_SEP, -1); 347 347 String lastPart = parts.length > 0 ? parts[parts.length - 1].toLowerCase(Locale.ENGLISH) : ""; 348 348 return lastPart.contains("bbox") -
trunk/test/unit/org/openstreetmap/josm/tools/KeyboardUtilsTest.java
r14308 r16643 108 108 private static void testgetCharactersForKeyE00(String locale, Character... expected) { 109 109 if (locale.contains("_")) { 110 String[] l = locale.split("_" );110 String[] l = locale.split("_", -1); 111 111 testgetCharactersForKeyE00(new Locale(l[0], l[1]), expected); 112 112 } else {
Note:
See TracChangeset
for help on using the changeset viewer.