Changeset 19201 in josm for trunk/test/unit
- Timestamp:
- 2024-08-19T23:47:08+02:00 (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/validation/tests/TagCheckerTest.java
r19195 r19201 7 7 8 8 import java.io.IOException; 9 import java.text.MessageFormat; 9 10 import java.util.Collections; 10 11 import java.util.List; 11 12 import java.util.function.Consumer; 12 13 import java.util.stream.Collectors; 14 import java.util.stream.Stream; 13 15 14 16 import org.junit.jupiter.api.Assertions; 15 import org.junit.jupiter.api.Disabled;16 17 import org.junit.jupiter.api.Test; 18 import org.junit.jupiter.params.ParameterizedTest; 19 import org.junit.jupiter.params.provider.Arguments; 20 import org.junit.jupiter.params.provider.MethodSource; 17 21 import org.openstreetmap.josm.TestUtils; 22 import org.openstreetmap.josm.data.coor.LatLon; 23 import org.openstreetmap.josm.data.osm.DataSet; 24 import org.openstreetmap.josm.data.osm.Node; 18 25 import org.openstreetmap.josm.data.osm.OsmPrimitive; 19 26 import org.openstreetmap.josm.data.osm.OsmUtils; 27 import org.openstreetmap.josm.data.osm.Relation; 28 import org.openstreetmap.josm.data.osm.RelationMember; 20 29 import org.openstreetmap.josm.data.osm.Tag; 30 import org.openstreetmap.josm.data.osm.Way; 21 31 import org.openstreetmap.josm.data.preferences.sources.ValidatorPrefHelper; 22 32 import org.openstreetmap.josm.data.validation.Severity; … … 44 54 checker.initialize(); 45 55 checker.startTest(null); 46 checker.check(TestUtils.addFakeDataSet(primitive)); 56 if (primitive.getDataSet() == null) { 57 TestUtils.addFakeDataSet(primitive); 58 } 59 checker.check(primitive); 47 60 return checker.getErrors(); 48 61 } 49 62 50 /** 51 * Check for misspelled key. 52 * @throws IOException if any I/O error occurs 53 */ 54 @Test 55 void testMisspelledKey1() throws IOException { 56 final List<TestError> errors = test(OsmUtils.createPrimitive("node Name=Main")); 63 static Stream<Arguments> testTags() { 64 final String misspelled = "Misspelled property key"; 65 final String unknown = "Unknown property value"; 66 final String noPropertyValue = "Presets do not contain property value"; 67 final String looksLike = "Key ''{0}'' looks like ''{1}''."; 68 final String invalidPreset = "Key from a preset is invalid in this region"; 69 return Stream.of( 70 // Check for misspelled key. 71 Arguments.of("testMisspelledKey1", "node Name=Main", misspelled, 72 MessageFormat.format(looksLike, "Name", "name"), Severity.WARNING, true), 73 // Check for misspelled key. 74 Arguments.of("testMisspelledKey2", "node landuse;=forest", misspelled, 75 MessageFormat.format(looksLike, "landuse;", "landuse"), Severity.WARNING, true), 76 // Check for misspelled key where the suggested alternative is in use. The error should not be fixable. 77 Arguments.of("testMisspelledKeyButAlternativeInUse", "node amenity=fuel brand=bah Brand=foo", misspelled, 78 MessageFormat.format(looksLike, "Brand", "brand"), Severity.WARNING, false), 79 // Check for misspelled key where the suggested alternative is given with prefix E: in ignoreTags.cfg. 80 // The error should be fixable. 81 // ticket 17468 82 Arguments.of("testUpperCaseIgnoredKey", "node wheelchair:Description=bla", misspelled, 83 MessageFormat.format(looksLike, "wheelchair:Description", "wheelchair:description"), Severity.WARNING, true), 84 // Check for misspelled key where the suggested alternative is given with prefix K: in ignoreTags.cfg. 85 // The error should be fixable. 86 // ticket 17468 87 Arguments.of("testUpperCaseInKeyIgnoredTag", "node land_Area=administrative", misspelled, 88 MessageFormat.format(looksLike, "land_Area", "land_area"), Severity.WARNING, true), 89 // Check for unknown key 90 Arguments.of("testTranslatedNameKey", "node namez=Baz", 91 "Presets do not contain property key", "Key 'namez' not in presets.", Severity.OTHER, false), 92 // Check for misspelled value 93 Arguments.of("testMisspelledTag", "node landuse=forrest", unknown, 94 "Value 'forrest' for key 'landuse' is unknown, maybe 'forest' is meant?", Severity.WARNING, false), 95 // Check for misspelled value with multiple alternatives in presets. 96 Arguments.of("testMisspelledTag2", "node highway=servics", unknown, 97 "Value 'servics' for key 'highway' is unknown, maybe one of [service, services] is meant?", Severity.WARNING, false), 98 // Check for misspelled value. 99 Arguments.of("testMisspelledTag3", "node highway=residentail", unknown, 100 "Value 'residentail' for key 'highway' is unknown, maybe 'residential' is meant?", Severity.WARNING, false), 101 // Check for misspelled value. 102 Arguments.of("testShortValNotInPreset2", "node shop=abs", noPropertyValue, 103 "Value 'abs' for key 'shop' not in presets.", Severity.OTHER, false), 104 // Check regression: Don't fix surface=u -> surface=mud. 105 Arguments.of("testTooShortToFix", "node surface=u", noPropertyValue, 106 "Value 'u' for key 'surface' not in presets.", Severity.OTHER, false), 107 // Check value with upper case 108 Arguments.of("testValueDifferentCase", "node highway=Residential", unknown, 109 "Value 'Residential' for key 'highway' is unknown, maybe 'residential' is meant?", Severity.WARNING, false), 110 Arguments.of("testRegionKey", "node payment:ep_avant=yes", invalidPreset, 111 "Preset Payment Methods should not have the key payment:ep_avant", Severity.WARNING, false), 112 Arguments.of("testRegionTag", "relation type=waterway gnis:feature_id=123456", invalidPreset, 113 "Preset Waterway should not have the key gnis:feature_id", Severity.WARNING, false), 114 // Key in presets but not in ignored.cfg. Caused a NPE with r14727. 115 Arguments.of("testRegression17246", "node access=privat", unknown, 116 "Value 'privat' for key 'access' is unknown, maybe 'private' is meant?", Severity.WARNING, false) 117 ); 118 } 119 120 /** 121 * Test tags 122 * @param name The name of the test 123 * @param primitive The primitive definition to use 124 * @param expectedMessage The expected error message 125 * @param expectedDescription The expected error description 126 * @param severity The expected severity 127 * @param isFixable {@code true} if the error should be fixable 128 * @throws IOException See {@link #test(OsmPrimitive)} 129 */ 130 @ParameterizedTest(name = "{0}") 131 @MethodSource("testTags") 132 void testTags(String name, String primitive, String expectedMessage, String expectedDescription, Severity severity, boolean isFixable) 133 throws IOException { 134 final List<TestError> errors = test(OsmUtils.createPrimitive(primitive)); 57 135 assertEquals(1, errors.size()); 58 assertEquals("Misspelled property key", errors.get(0).getMessage()); 59 assertEquals("Key 'Name' looks like 'name'.", errors.get(0).getDescription()); 60 assertTrue(errors.get(0).isFixable()); 61 } 62 63 /** 64 * Check for misspelled key. 65 * @throws IOException if any I/O error occurs 66 */ 67 @Test 68 void testMisspelledKey2() throws IOException { 69 final List<TestError> errors = test(OsmUtils.createPrimitive("node landuse;=forest")); 70 assertEquals(1, errors.size()); 71 assertEquals("Misspelled property key", errors.get(0).getMessage()); 72 assertEquals("Key 'landuse;' looks like 'landuse'.", errors.get(0).getDescription()); 73 assertTrue(errors.get(0).isFixable()); 74 } 75 76 /** 77 * Check for misspelled key where the suggested alternative is in use. The error should not be fixable. 78 * @throws IOException if any I/O error occurs 79 */ 80 @Test 81 void testMisspelledKeyButAlternativeInUse() throws IOException { 82 // ticket 12329 83 final List<TestError> errors = test(OsmUtils.createPrimitive("node amenity=fuel brand=bah Brand=foo")); 84 assertEquals(1, errors.size()); 85 assertEquals("Misspelled property key", errors.get(0).getMessage()); 86 assertEquals("Key 'Brand' looks like 'brand'.", errors.get(0).getDescription()); 87 assertEquals(Severity.WARNING, errors.get(0).getSeverity()); 88 assertFalse(errors.get(0).isFixable()); 89 } 90 91 /** 92 * Check for misspelled key where the suggested alternative is given with prefix E: in ignoreTags.cfg. 93 * The error should be fixable. 94 * @throws IOException if any I/O error occurs 95 */ 96 @Test 97 void testUpperCaseIgnoredKey() throws IOException { 98 // ticket 17468 99 final List<TestError> errors = test(OsmUtils.createPrimitive("node wheelchair:Description=bla")); 100 assertEquals(1, errors.size()); 101 assertEquals("Misspelled property key", errors.get(0).getMessage()); 102 assertEquals("Key 'wheelchair:Description' looks like 'wheelchair:description'.", errors.get(0).getDescription()); 103 assertEquals(Severity.WARNING, errors.get(0).getSeverity()); 104 assertTrue(errors.get(0).isFixable()); 105 } 106 107 /** 108 * Check for misspelled key where the suggested alternative is given with prefix K: in ignoreTags.cfg. 109 * The error should be fixable. 110 * @throws IOException if any I/O error occurs 111 */ 112 @Test 113 void testUpperCaseInKeyIgnoredTag() throws IOException { 114 // ticket 17468 115 final List<TestError> errors = test(OsmUtils.createPrimitive("node land_Area=administrative")); 116 assertEquals(1, errors.size()); 117 assertEquals("Misspelled property key", errors.get(0).getMessage()); 118 assertEquals("Key 'land_Area' looks like 'land_area'.", errors.get(0).getDescription()); 119 assertEquals(Severity.WARNING, errors.get(0).getSeverity()); 120 assertTrue(errors.get(0).isFixable()); 121 } 122 123 /** 124 * Check for unknown key. 125 * @throws IOException if any I/O error occurs 126 */ 127 @Test 128 void testTranslatedNameKey() throws IOException { 129 final List<TestError> errors = test(OsmUtils.createPrimitive("node namez=Baz")); 130 assertEquals(1, errors.size()); 131 assertEquals("Presets do not contain property key", errors.get(0).getMessage()); 132 assertEquals("Key 'namez' not in presets.", errors.get(0).getDescription()); 133 assertEquals(Severity.OTHER, errors.get(0).getSeverity()); 134 assertFalse(errors.get(0).isFixable()); 135 } 136 137 /** 138 * Check for misspelled value. 139 * @throws IOException if any I/O error occurs 140 */ 141 @Test 142 void testMisspelledTag() throws IOException { 143 final List<TestError> errors = test(OsmUtils.createPrimitive("node landuse=forrest")); 144 assertEquals(1, errors.size()); 145 assertEquals("Unknown property value", errors.get(0).getMessage()); 146 assertEquals("Value 'forrest' for key 'landuse' is unknown, maybe 'forest' is meant?", errors.get(0).getDescription()); 147 assertEquals(Severity.WARNING, errors.get(0).getSeverity()); 148 assertFalse(errors.get(0).isFixable()); 149 } 150 151 /** 152 * Check for misspelled value with multiple alternatives in presets. 153 * @throws IOException if any I/O error occurs 154 */ 155 @Test 156 void testMisspelledTag2() throws IOException { 157 final List<TestError> errors = test(OsmUtils.createPrimitive("node highway=servics")); 158 assertEquals(1, errors.size()); 159 assertEquals("Unknown property value", errors.get(0).getMessage()); 160 assertEquals( 161 "Value 'servics' for key 'highway' is unknown, maybe one of [service, services] is meant?", 162 errors.get(0).getDescription()); 163 assertEquals(Severity.WARNING, errors.get(0).getSeverity()); 164 assertFalse(errors.get(0).isFixable()); 165 } 166 167 /** 168 * Check for misspelled value. 169 * @throws IOException if any I/O error occurs 170 */ 171 @Test 172 void testMisspelledTag3() throws IOException { 173 final List<TestError> errors = test(OsmUtils.createPrimitive("node highway=residentail")); 174 assertEquals(1, errors.size()); 175 assertEquals("Unknown property value", errors.get(0).getMessage()); 176 assertEquals("Value 'residentail' for key 'highway' is unknown, maybe 'residential' is meant?", 177 errors.get(0).getDescription()); 178 assertEquals(Severity.WARNING, errors.get(0).getSeverity()); 179 assertFalse(errors.get(0).isFixable()); 180 } 181 182 /** 183 * Check for misspelled value. 184 * @throws IOException if any I/O error occurs 185 */ 186 @Test 187 void testShortValNotInPreset2() throws IOException { 188 final List<TestError> errors = test(OsmUtils.createPrimitive("node shop=abs")); 189 assertEquals(1, errors.size()); 190 assertEquals("Presets do not contain property value", errors.get(0).getMessage()); 191 assertEquals("Value 'abs' for key 'shop' not in presets.", errors.get(0).getDescription()); 192 assertEquals(Severity.OTHER, errors.get(0).getSeverity()); 193 assertFalse(errors.get(0).isFixable()); 194 } 136 assertEquals(expectedMessage, errors.get(0).getMessage()); 137 assertEquals(expectedDescription, errors.get(0).getDescription()); 138 assertEquals(severity, errors.get(0).getSeverity()); 139 assertEquals(isFixable, errors.get(0).isFixable()); 140 } 141 195 142 196 143 /** … … 206 153 .collect(Collectors.toList()); 207 154 assertTrue(errors.isEmpty(), errors::toString); 208 }209 210 /**211 * Check regression: Don't fix surface=u -> surface=mud.212 * @throws IOException if any I/O error occurs213 */214 @Test215 void testTooShortToFix() throws IOException {216 final List<TestError> errors = test(OsmUtils.createPrimitive("node surface=u"));217 assertEquals(1, errors.size());218 assertEquals("Presets do not contain property value", errors.get(0).getMessage());219 assertEquals("Value 'u' for key 'surface' not in presets.", errors.get(0).getDescription());220 assertEquals(Severity.OTHER, errors.get(0).getSeverity());221 assertFalse(errors.get(0).isFixable());222 }223 224 /**225 * Check value with upper case226 * @throws IOException if any I/O error occurs227 */228 @Test229 void testValueDifferentCase() throws IOException {230 final List<TestError> errors = test(OsmUtils.createPrimitive("node highway=Residential"));231 assertEquals(1, errors.size());232 assertEquals("Unknown property value", errors.get(0).getMessage());233 assertEquals("Value 'Residential' for key 'highway' is unknown, maybe 'residential' is meant?",234 errors.get(0).getDescription());235 assertEquals(Severity.WARNING, errors.get(0).getSeverity());236 assertFalse(errors.get(0).isFixable());237 }238 239 @Test240 void testRegionKey() throws IOException {241 final List<TestError> errors = test(OsmUtils.createPrimitive("node payment:ep_avant=yes"));242 assertEquals(1, errors.size());243 assertEquals("Key from a preset is invalid in this region", errors.get(0).getMessage());244 assertEquals("Preset Payment Methods should not have the key payment:ep_avant", errors.get(0).getDescription());245 assertEquals(Severity.WARNING, errors.get(0).getSeverity());246 assertFalse(errors.get(0).isFixable());247 248 }249 250 @Test251 void testRegionTag() throws IOException {252 final List<TestError> errors = test(OsmUtils.createPrimitive("relation type=waterway gnis:feature_id=123456"));253 assertEquals(1, errors.size());254 assertEquals("Key from a preset is invalid in this region", errors.get(0).getMessage());255 assertEquals("Preset Waterway should not have the key gnis:feature_id", errors.get(0).getDescription());256 assertEquals(Severity.WARNING, errors.get(0).getSeverity());257 assertFalse(errors.get(0).isFixable());258 }259 260 /**261 * Key in presets but not in ignored.cfg. Caused a NPE with r14727.262 * @throws IOException if any I/O error occurs263 */264 @Test265 void testRegression17246() throws IOException {266 final List<TestError> errors = test(OsmUtils.createPrimitive("node access=privat"));267 assertEquals(1, errors.size());268 assertEquals("Unknown property value", errors.get(0).getMessage());269 assertEquals("Value 'privat' for key 'access' is unknown, maybe 'private' is meant?",270 errors.get(0).getDescription());271 assertEquals(Severity.WARNING, errors.get(0).getSeverity());272 assertFalse(errors.get(0).isFixable());273 155 } 274 156 … … 388 270 */ 389 271 @Test 390 @Disabled("broken, see #19519")391 272 void testTicket19519() throws IOException { 392 273 List<TestError> errors = test(OsmUtils.createPrimitive("node amenity=restaurant cuisine=bavarian;beef_bowl")); … … 420 301 final List<TestError> errors = test(OsmUtils.createPrimitive("node power=tower ref=12")); 421 302 assertEquals(0, errors.size()); 303 } 304 305 /** 306 * Non-regression test for <a href="https://josm.openstreetmap.de/ticket/23290">Bug #23290</a> 307 */ 308 @Test 309 void testTicket23290() throws IOException { 310 final Node france1 = new Node(new LatLon(48.465638, 7.3677049)); 311 final Node france2 = new Node(new LatLon(48.4191768, 7.7275072)); 312 final Node german1 = new Node(new LatLon(48.3398223, 8.1683322)); 313 final Node german2 = new Node(new LatLon(48.4137076, 7.754287)); 314 final Way frenchRiver = TestUtils.newWay("waterway=river", france1, france2); 315 final Way germanRiver = TestUtils.newWay("waterway=river", german1, german2); 316 final Way incompleteWay = new Way(123, 0); 317 final Relation riverRelation = TestUtils.newRelation("type=waterway waterway=river ref:sandre=A---0000 ref:fgkz=2", 318 new RelationMember("", germanRiver)); 319 // Ensure they have the same dataset 320 new DataSet(france1, france2, frenchRiver, german1, german2, germanRiver, incompleteWay, riverRelation); 321 assertEquals(1, test(riverRelation).size()); 322 riverRelation.addMember(new RelationMember("", frenchRiver)); 323 assertEquals(0, test(riverRelation).size()); 324 riverRelation.removeMembersFor(frenchRiver); 325 assertEquals(1, test(riverRelation).size()); 326 riverRelation.addMember(new RelationMember("", incompleteWay)); 327 assertEquals(0, test(riverRelation).size()); 422 328 } 423 329
Note:
See TracChangeset
for help on using the changeset viewer.