planetiler/core/src/test/java/com/onthegomap/flatmap/write/MbtilesTest.java

205 wiersze
6.3 KiB
Java

package com.onthegomap.flatmap.write;
import static com.onthegomap.flatmap.TestUtils.assertSameJson;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import com.onthegomap.flatmap.TestUtils;
import com.onthegomap.flatmap.geo.GeoUtils;
import com.onthegomap.flatmap.geo.TileCoord;
import java.io.IOException;
import java.sql.SQLException;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
import java.util.stream.Collectors;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import org.locationtech.jts.geom.Envelope;
public class MbtilesTest {
private static final int BATCH = 999 / 4;
public void testWriteTiles(int howMany, boolean deferIndexCreation, boolean optimize)
throws IOException, SQLException {
try (Mbtiles db = Mbtiles.newInMemoryDatabase()) {
db.setupSchema();
if (!deferIndexCreation) {
db.addIndex();
}
assertNull(db.getTile(0, 0, 0));
Set<Mbtiles.TileEntry> expected = new TreeSet<>();
try (var writer = db.newBatchedTileWriter()) {
for (int i = 0; i < howMany; i++) {
var entry = new Mbtiles.TileEntry(TileCoord.ofXYZ(i, i + 1, 14), new byte[]{
(byte) howMany,
(byte) (howMany >> 8),
(byte) (howMany >> 16),
(byte) (howMany >> 24)
});
writer.write(entry.tile(), entry.bytes());
expected.add(entry);
}
}
if (deferIndexCreation) {
db.addIndex();
}
if (optimize) {
db.vacuumAnalyze();
}
var all = TestUtils.getAllTiles(db);
assertEquals(howMany, all.size());
assertEquals(expected, all);
assertEquals(expected.stream().map(Mbtiles.TileEntry::tile).collect(Collectors.toSet()),
new HashSet<>(db.getAllTileCoords()));
for (var expectedEntry : expected) {
var tile = expectedEntry.tile();
byte[] data = db.getTile(tile.x(), tile.y(), tile.z());
assertArrayEquals(expectedEntry.bytes(), data);
}
}
}
@ParameterizedTest
@ValueSource(ints = {0, 1, BATCH, BATCH + 1, 2 * BATCH, 2 * BATCH + 1})
public void testWriteTilesDifferentSize(int howMany) throws IOException, SQLException {
testWriteTiles(howMany, false, false);
}
@Test
public void testDeferIndexCreation() throws IOException, SQLException {
testWriteTiles(10, true, false);
}
@Test
public void testVacuumAnalyze() throws IOException, SQLException {
testWriteTiles(10, false, true);
}
@Test
public void testAddMetadata() throws IOException {
Map<String, String> expected = new TreeMap<>();
try (Mbtiles db = Mbtiles.newInMemoryDatabase()) {
var metadata = db.setupSchema().metadata();
metadata.setName("name value");
expected.put("name", "name value");
metadata.setFormat("pbf");
expected.put("format", "pbf");
metadata.setAttribution("attribution value");
expected.put("attribution", "attribution value");
metadata.setBoundsAndCenter(GeoUtils.toLatLonBoundsBounds(new Envelope(0.25, 0.75, 0.25, 0.75)));
expected.put("bounds", "-90,-66.51326,90,66.51326");
expected.put("center", "0,0,1");
metadata.setDescription("description value");
expected.put("description", "description value");
metadata.setMinzoom(1);
expected.put("minzoom", "1");
metadata.setMaxzoom(13);
expected.put("maxzoom", "13");
metadata.setVersion("1.2.3");
expected.put("version", "1.2.3");
metadata.setTypeIsBaselayer();
expected.put("type", "baselayer");
assertEquals(expected, metadata.getAll());
}
}
@Test
public void testAddMetadataWorldBounds() throws IOException {
Map<String, String> expected = new TreeMap<>();
try (Mbtiles db = Mbtiles.newInMemoryDatabase()) {
var metadata = db.setupSchema().metadata();
metadata.setBoundsAndCenter(GeoUtils.WORLD_LAT_LON_BOUNDS);
expected.put("bounds", "-180,-85.05113,180,85.05113");
expected.put("center", "0,0,0");
assertEquals(expected, metadata.getAll());
}
}
@Test
public void testAddMetadataSmallBounds() throws IOException {
Map<String, String> expected = new TreeMap<>();
try (Mbtiles db = Mbtiles.newInMemoryDatabase()) {
var metadata = db.setupSchema().metadata();
metadata.setBoundsAndCenter(new Envelope(-73.6632, -69.7598, 41.1274, 43.0185));
expected.put("bounds", "-73.6632,41.1274,-69.7598,43.0185");
expected.put("center", "-71.7115,42.07295,7");
assertEquals(expected, metadata.getAll());
}
}
private void testMetadataJson(Mbtiles.MetadataJson object, String expected) throws IOException {
try (Mbtiles db = Mbtiles.newInMemoryDatabase()) {
var metadata = db.setupSchema().metadata();
metadata.setJson(object);
var actual = metadata.getAll().get("json");
assertSameJson(expected, actual);
}
}
@Test
public void testMetadataJsonNoLayers() throws IOException {
testMetadataJson(new Mbtiles.MetadataJson(), """
{
"vector_layers": []
}
""");
}
@Test
public void testFullMetadataJson() throws IOException {
testMetadataJson(new Mbtiles.MetadataJson(
new Mbtiles.MetadataJson.VectorLayer(
"full",
Map.of(
"NUMBER_FIELD", Mbtiles.MetadataJson.FieldType.NUMBER,
"STRING_FIELD", Mbtiles.MetadataJson.FieldType.STRING,
"boolean field", Mbtiles.MetadataJson.FieldType.BOOLEAN
)
).withDescription("full description")
.withMinzoom(0)
.withMaxzoom(5),
new Mbtiles.MetadataJson.VectorLayer(
"partial",
Map.of()
)
), """
{
"vector_layers": [
{
"id": "full",
"description": "full description",
"minzoom": 0,
"maxzoom": 5,
"fields": {
"NUMBER_FIELD": "Number",
"STRING_FIELD": "String",
"boolean field": "Boolean"
}
},
{
"id": "partial",
"fields": {}
}
]
}
""");
}
}