Changeset 10197 in josm for trunk/test/performance/org/openstreetmap
- Timestamp:
- 2016-05-12T15:29:56+02:00 (9 years ago)
- Location:
- trunk/test/performance/org/openstreetmap/josm/data/osm/visitor/paint
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/performance/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRendererPerformanceTest.java
r9773 r10197 2 2 package org.openstreetmap.josm.data.osm.visitor.paint; 3 3 4 import java.awt.Color;5 import java.awt.Graphics2D;6 import java.awt.image.BufferedImage;7 4 import java.io.File; 8 import java.io.FileInputStream;9 5 import java.io.IOException; 10 import java.io.InputStream;11 6 12 7 import javax.imageio.ImageIO; 13 8 14 9 import org.junit.BeforeClass; 15 import org.junit.Rule;16 import org.junit.Test;17 import org.junit.rules.Timeout;18 import org.openstreetmap.josm.JOSMFixture;19 import org.openstreetmap.josm.Main;20 import org.openstreetmap.josm.data.Bounds;21 import org.openstreetmap.josm.data.osm.DataSet;22 import org.openstreetmap.josm.gui.NavigatableComponent;23 10 import org.openstreetmap.josm.gui.mappaint.MapPaintStyles; 24 import org.openstreetmap.josm.gui.progress.NullProgressMonitor;25 import org.openstreetmap.josm.io.Compression;26 import org.openstreetmap.josm.io.OsmReader;27 11 28 public class StyledMapRendererPerformanceTest { 29 30 private static final int IMG_WIDTH = 1400; 31 private static final int IMG_HEIGHT = 1050; 32 33 private static Graphics2D g; 34 private static BufferedImage img; 35 private static NavigatableComponent nc; 36 private static DataSet dsRestriction; 37 private static DataSet dsMultipolygon; 38 private static DataSet dsCity; 39 40 /** 41 * Global timeout applied to all test methods. 42 */ 43 @Rule 44 public Timeout globalTimeout = Timeout.seconds(15*60); 12 /** 13 * Performance test of {@code StyledMapRenderer}. 14 */ 15 public class StyledMapRendererPerformanceTest extends AbstractMapRendererPerformanceTestParent { 45 16 46 17 @BeforeClass 47 18 public static void load() throws Exception { 48 JOSMFixture.createPerformanceTestFixture().init(true); 49 img = new BufferedImage(IMG_WIDTH, IMG_HEIGHT, BufferedImage.TYPE_INT_ARGB); 50 g = (Graphics2D) img.getGraphics(); 51 g.setClip(0, 0, IMG_WIDTH, IMG_WIDTH); 52 g.setColor(Color.BLACK); 53 g.fillRect(0, 0, IMG_WIDTH, IMG_WIDTH); 54 nc = Main.map.mapView; 55 nc.setBounds(0, 0, IMG_WIDTH, IMG_HEIGHT); 56 19 AbstractMapRendererPerformanceTestParent.load(); 57 20 // TODO Test should have it's own copy of styles because change in style can influence performance 58 21 MapPaintStyles.readFromPreferences(); 59 60 try (61 InputStream fisR = new FileInputStream("data_nodist/restriction.osm");62 InputStream fisM = new FileInputStream("data_nodist/multipolygon.osm");63 InputStream fisC = Compression.getUncompressedFileInputStream(new File("data_nodist/neubrandenburg.osm.bz2"));64 ) {65 dsRestriction = OsmReader.parseDataSet(fisR, NullProgressMonitor.INSTANCE);66 dsMultipolygon = OsmReader.parseDataSet(fisM, NullProgressMonitor.INSTANCE);67 dsCity = OsmReader.parseDataSet(fisC, NullProgressMonitor.INSTANCE);68 }69 22 } 70 23 71 private static void test(int iterations, DataSet ds, Bounds bounds) throws Exception { 72 Rendering visitor = new StyledMapRenderer(g, nc, false); 73 nc.zoomTo(bounds); 74 for (int i = 0; i < iterations; i++) { 75 visitor.render(ds, true, bounds); 76 } 77 } 78 79 @Test 80 public void testRestriction() throws Exception { 81 test(700, dsRestriction, new Bounds(51.12, 14.147472381591795, 51.128, 14.162492752075195)); 82 } 83 84 @Test 85 public void testRestrictionSmall() throws Exception { 86 test(1500, dsRestriction, new Bounds(51.125, 14.147, 51.128, 14.152)); 87 } 88 89 @Test 90 public void testMultipolygon() throws Exception { 91 test(400, dsMultipolygon, new Bounds(60, -180, 85, -122)); 92 } 93 94 @Test 95 public void testMultipolygonSmall() throws Exception { 96 test(850, dsMultipolygon, new Bounds(-90, -180, 90, 180)); 97 } 98 99 @Test 100 public void testCity() throws Exception { 101 test(50, dsCity, new Bounds(53.51, 13.20, 53.59, 13.34)); 102 } 103 104 @Test 105 public void testCitySmall() throws Exception { 106 test(70, dsCity, new Bounds(52, 11, 55, 14)); 107 } 108 109 @Test 110 public void testCityPart1() throws Exception { 111 test(250, dsCity, new Bounds(53.56, 13.25, 53.57, 13.26)); 112 } 113 114 @Test 115 public void testCityPart2() throws Exception { 116 test(200, dsCity, new Bounds(53.55, 13.29, 53.57, 13.30)); 117 } 118 119 @Test 120 public void testCitySmallPart2() throws Exception { 121 test(200, dsCity, new Bounds(53.56, 13.295, 53.57, 13.30)); 24 @Override 25 protected Rendering buildRenderer() { 26 return new StyledMapRenderer(g, nc, false); 122 27 } 123 28
Note:
See TracChangeset
for help on using the changeset viewer.