source: josm/trunk/test/unit/org/openstreetmap/josm/gui/layer/markerlayer/MarkerLayerTest.java@ 12636

Last change on this file since 12636 was 12636, checked in by Don-vip, 7 years ago

see #15182 - deprecate Main.getLayerManager(). Replacement: gui.MainApplication.getLayerManager()

  • Property svn:eol-style set to native
File size: 2.7 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.layer.markerlayer;
3
4import static org.junit.Assert.assertEquals;
5import static org.junit.Assert.assertNotNull;
6import static org.junit.Assert.assertTrue;
7
8import java.awt.Color;
9import java.util.Arrays;
10
11import org.junit.Before;
12import org.junit.Rule;
13import org.junit.Test;
14import org.openstreetmap.josm.Main;
15import org.openstreetmap.josm.data.coor.LatLon;
16import org.openstreetmap.josm.data.gpx.GpxConstants;
17import org.openstreetmap.josm.data.gpx.GpxData;
18import org.openstreetmap.josm.data.gpx.GpxLink;
19import org.openstreetmap.josm.data.gpx.WayPoint;
20import org.openstreetmap.josm.gui.MainApplication;
21import org.openstreetmap.josm.testutils.JOSMTestRules;
22
23import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
24
25/**
26 * Unit tests of {@link MarkerLayer} class.
27 */
28public class MarkerLayerTest {
29
30 /**
31 * Setup tests
32 */
33 @Rule
34 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
35 public JOSMTestRules test = new JOSMTestRules().main().platform().preferences().projection();
36
37 /**
38 * Setup tests
39 */
40 @Before
41 public void setUp() {
42 Main.pref.put("marker.traceaudio", true);
43 }
44
45 /**
46 * Unit test of {@link MarkerLayer#MarkerLayer}.
47 */
48 @Test
49 public void testMarkerLayer() {
50 assertEquals(Color.magenta, MarkerLayer.getGenericColor());
51 MarkerLayer layer = new MarkerLayer(new GpxData(), "foo", null, null);
52 MainApplication.getLayerManager().addLayer(layer);
53
54 assertEquals("foo", layer.getName());
55 assertEquals(Color.magenta, layer.getColorProperty().get());
56 assertNotNull(layer.getIcon());
57 assertEquals("0 markers", layer.getToolTipText());
58 assertEquals("<html>foo consists of 0 markers</html>", layer.getInfoComponent());
59 assertTrue(layer.getMenuEntries().length > 10);
60
61 GpxData gpx = new GpxData();
62 WayPoint wpt = new WayPoint(LatLon.ZERO);
63 wpt.attr.put(GpxConstants.META_LINKS, Arrays.asList(new GpxLink("https://josm.openstreetmap.de")));
64 wpt.addExtension("offset", "1.0");
65 gpx.waypoints.add(wpt);
66 wpt = new WayPoint(LatLon.ZERO);
67 wpt.addExtension("offset", "NaN");
68 gpx.waypoints.add(wpt);
69 layer = new MarkerLayer(gpx, "bar", null, null);
70
71 assertEquals("bar", layer.getName());
72 assertEquals(Color.magenta, layer.getColorProperty().get());
73 assertNotNull(layer.getIcon());
74 assertEquals("3 markers", layer.getToolTipText());
75 assertEquals("<html>bar consists of 3 markers</html>", layer.getInfoComponent());
76 assertTrue(layer.getMenuEntries().length > 10);
77 }
78}
Note: See TracBrowser for help on using the repository browser.