1 | package org.openstreetmap.josm.actions |
---|
2 | |
---|
3 | import org.junit.BeforeClass |
---|
4 | import org.junit.Test |
---|
5 | import org.openstreetmap.josm.JOSMFixture |
---|
6 | import org.openstreetmap.josm.TestUtils |
---|
7 | import org.openstreetmap.josm.actions.search.SearchAction |
---|
8 | import org.openstreetmap.josm.actions.search.SearchCompiler |
---|
9 | import org.openstreetmap.josm.data.osm.Relation |
---|
10 | import org.openstreetmap.josm.data.osm.Way |
---|
11 | import org.openstreetmap.josm.io.OsmReader |
---|
12 | import org.openstreetmap.josm.tools.Utils |
---|
13 | |
---|
14 | class CreateMultipolygonActionTest { |
---|
15 | |
---|
16 | @BeforeClass |
---|
17 | public static void setUp() { |
---|
18 | JOSMFixture.createUnitTestFixture().init(); |
---|
19 | } |
---|
20 | |
---|
21 | static def getRefToRoleMap(Relation relation) { |
---|
22 | def refToRole = new TreeMap<String, String>() |
---|
23 | for (i in relation.getMembers()) { |
---|
24 | refToRole.put(i.member.get("ref"), i.role); |
---|
25 | } |
---|
26 | return refToRole; |
---|
27 | } |
---|
28 | |
---|
29 | static def regexpSearch(String search) { |
---|
30 | def setting = new SearchAction.SearchSetting() |
---|
31 | setting.text = search |
---|
32 | setting.regexSearch = true |
---|
33 | return setting |
---|
34 | } |
---|
35 | |
---|
36 | @Test |
---|
37 | public void testCreate1() { |
---|
38 | def ds = OsmReader.parseDataSet(new FileInputStream(TestUtils.getTestDataRoot() + "create_multipolygon.osm"), null); |
---|
39 | def mp = CreateMultipolygonAction.createMultipolygonCommand(ds.getWays(), null) |
---|
40 | assert mp.a.getDescriptionText() == "Sequence: Create multipolygon" |
---|
41 | assert getRefToRoleMap(mp.b).toString() == "[1:outer, 1.1:inner, 1.1.1:outer, 1.1.2:outer, 1.2:inner]" |
---|
42 | } |
---|
43 | |
---|
44 | @Test |
---|
45 | public void testCreate2() { |
---|
46 | def ds = OsmReader.parseDataSet(new FileInputStream(TestUtils.getTestDataRoot() + "create_multipolygon.osm"), null); |
---|
47 | def ways = Utils.filter(ds.getWays(), SearchCompiler.compile("ref=1 OR ref:1.1.")) |
---|
48 | def mp = CreateMultipolygonAction.createMultipolygonCommand(ways as Collection<Way>, null) |
---|
49 | assert getRefToRoleMap(mp.b).toString() == "[1:outer, 1.1.1:inner, 1.1.2:inner]" |
---|
50 | } |
---|
51 | |
---|
52 | @Test |
---|
53 | public void testUpdate1() { |
---|
54 | def ds = OsmReader.parseDataSet(new FileInputStream(TestUtils.getTestDataRoot() + "create_multipolygon.osm"), null); |
---|
55 | def ways = Utils.filter(ds.getWays(), SearchCompiler.compile(regexpSearch("ref=\".*1\$\""))) |
---|
56 | def mp = CreateMultipolygonAction.createMultipolygonCommand(ways as Collection<Way>, null) |
---|
57 | assert mp.b.getMembersCount() == 3 |
---|
58 | assert getRefToRoleMap(mp.b).toString() == "[1:outer, 1.1:inner, 1.1.1:outer]" |
---|
59 | def ways2 = Utils.filter(ds.getWays(), SearchCompiler.compile(regexpSearch("ref=1.2"))) |
---|
60 | def mp2 = CreateMultipolygonAction.createMultipolygonCommand(ways2 as Collection<Way>, mp.b) |
---|
61 | assert mp2.b.getMembersCount() == 4 |
---|
62 | assert getRefToRoleMap(mp2.b).toString() == "[1:outer, 1.1:inner, 1.1.1:outer, 1.2:inner]" |
---|
63 | } |
---|
64 | |
---|
65 | @Test |
---|
66 | public void testUpdate2() { |
---|
67 | def ds = OsmReader.parseDataSet(new FileInputStream(TestUtils.getTestDataRoot() + "create_multipolygon.osm"), null); |
---|
68 | def ways = Utils.filter(ds.getWays(), SearchCompiler.compile("ref=1 OR ref:1.1.1")) |
---|
69 | def mp = CreateMultipolygonAction.createMultipolygonCommand(ways as Collection<Way>, null) |
---|
70 | assert getRefToRoleMap(mp.b).toString() == "[1:outer, 1.1.1:inner]" |
---|
71 | def ways2 = Utils.filter(ds.getWays(), SearchCompiler.compile(regexpSearch("ref=1.1 OR ref=1.2 OR ref=1.1.2"))) |
---|
72 | def mp2 = CreateMultipolygonAction.createMultipolygonCommand(ways2 as Collection<Way>, mp.b) |
---|
73 | assert getRefToRoleMap(mp2.b).toString() == "[1:outer, 1.1:inner, 1.1.1:outer, 1.1.2:outer, 1.2:inner]" |
---|
74 | } |
---|
75 | } |
---|