Ignore:
Timestamp:
2016-02-02T23:01:02+01:00 (8 years ago)
Author:
Don-vip
Message:

fix #12467, see #12412 - presets no longer fit correct for boundary relations (regression from r9574)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/osm/RelationTest.java

    r8510 r9716  
    22package org.openstreetmap.josm.data.osm;
    33
     4import static org.junit.Assert.assertEquals;
    45import static org.junit.Assert.assertFalse;
     6import static org.junit.Assert.assertTrue;
    57
    68import org.junit.Assert;
     
    104106        Assert.assertEquals(new BBox(w1), r1.getBBox());
    105107    }
     108
     109    /**
     110     * Non-regression test for <a href="https://josm.openstreetmap.de/ticket/12467">Bug #12467</a>.
     111     * @throws Exception if any error occurs
     112     */
     113    @Test
     114    public void testTicket12467() throws Exception {
     115        Relation r = new Relation();
     116        r.put("type", "boundary");
     117        assertTrue(r.isBoundary());
     118        assertTrue(r.isMultipolygon());
     119        assertEquals(OsmPrimitiveType.RELATION, r.getDisplayType());
     120
     121        r.put("type", "multipolygon");
     122        assertFalse(r.isBoundary());
     123        assertTrue(r.isMultipolygon());
     124        assertEquals(OsmPrimitiveType.MULTIPOLYGON, r.getDisplayType());
     125
     126        r.put("type", "something_else");
     127        assertFalse(r.isBoundary());
     128        assertFalse(r.isMultipolygon());
     129        assertEquals(OsmPrimitiveType.RELATION, r.getDisplayType());
     130    }
    106131}
Note: See TracChangeset for help on using the changeset viewer.