All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.java.de.k3b.geo.io.GeoUriTests Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2015-2016 by k3b.
 *
 * This file is part of k3b-geoHelper library.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package de.k3b.geo.io;

import org.junit.Assert;
import org.junit.Test;

import java.util.Date;

import de.k3b.geo.api.GeoPointDto;
import de.k3b.geo.api.IGeoPointInfo;

/**
 * Created by k3b on 13.01.2015.
 */
public class GeoUriTests {
    /**
     * geo:{lat{,lon{,hight_ignore}}}{?q={lat{,lon{,hight_ignore}}}{(name)}{|link{|id}|}{description}}{&z={{zmin}-zmax}}
     * */
    @Test
    public void shouldFormat() throws Exception {
        GeoUri sut = new GeoUri(GeoUri.OPT_DEFAULT);
        GeoUri sutRedundant = new GeoUri(GeoUri.OPT_FORMAT_REDUNDANT_LAT_LON);

        System.out.print(sutRedundant.toUriString(createTestGeoPoint()));

        Assert.assertEquals("geo:", sut.toUriString(new GeoPointDto()));
        Assert.assertEquals("geo:123.456", sut.toUriString(new GeoPointDto().setLatitude(123.456)));
        Assert.assertEquals("geo:,-23", sut.toUriString(new GeoPointDto().setLongitude(-23.0)));
        Assert.assertEquals("geo:0,0", sut.toUriString(new GeoPointDto().setLongitude(0.0).setLatitude(0.0)));
        Assert.assertEquals("geo:123.456,-23?q=123.456,-23", sutRedundant.toUriString(new GeoPointDto().setLatitude(123.456).setLongitude(-23.0)));
    }

    @Test
    public void shouldParse() throws Exception {
        GeoUri sut = new GeoUri(GeoUri.OPT_DEFAULT);

        String original = sut.toUriString(createTestGeoPoint());

        IGeoPointInfo parsed = sut.fromUri(original);

        Assert.assertEquals(original, sut.toUriString(parsed));
    }

    @Test
    public void sholdParseMinimal() throws Exception {
        GeoUri sut = new GeoUri(GeoUri.OPT_DEFAULT);

        String uri = "geo:1,2";

        GeoPointDto parsed = (GeoPointDto)sut.fromUri(uri);

        Assert.assertEquals(1, parsed.getLatitude(), 0.002);
    }

    @Test
    public void parseShouldNotInfer() throws Exception {
        GeoUri sut = new GeoUri(GeoUri.OPT_DEFAULT);

        String uri = "geo:?d=I was in (Hamburg) located at 53,10 on 1991-03-03T04:05:06Z";

        GeoPointDto parsed = (GeoPointDto)sut.fromUri(uri);
        parsed.setDescription(null); // remove "d=description" so only the infered data remains

        Assert.assertEquals("geo:", sut.toUriString(parsed));
    }

    @Test
    public void parseShouldInfer() throws Exception {
        GeoUri sut = new GeoUri(GeoUri.OPT_PARSE_INFER_MISSING);

        String uri = "geo:?d=I was in (Hamburg) located at 53,10 on 1991-03-03T04:05:06Z";

        GeoPointDto parsed = (GeoPointDto)sut.fromUri(uri);
        parsed.setDescription(null); // remove "d=description" so only the infered data remains

        Assert.assertEquals("geo:53,10?q=(Hamburg)&t=1991-03-03T04:05:06Z", sut.toUriString(parsed));
    }

    @Test
    public void clearedDtoShouldFormatEmpty() throws Exception {
        GeoUri formatter = new GeoUri(GeoUri.OPT_DEFAULT);

        final GeoPointDto testGeoPoint = createTestGeoPoint();
        testGeoPoint.clear();
        String result = formatter.toUriString(testGeoPoint);

        Assert.assertEquals("geo:", result);
    }

    /**
     * geoarea:{lat},{lon},{lat},{lon}
     * */
    @Test
    public void shouldFormatArea() throws Exception {
        GeoPointDto ne = new GeoPointDto(12.345, -56.789, GeoPointDto.NO_ZOOM);
        GeoPointDto sw = new GeoPointDto(12.0, -53, GeoPointDto.NO_ZOOM);

        GeoUri sut = new GeoUri(GeoUri.OPT_DEFAULT);

        String result = sut.toUriString(ne, sw);

        Assert.assertEquals("geoarea:12.345,-56.789,12,-53", result);
    }


    /**
     * geoarea:{lat},{lon},{lat},{lon}
     * */
    @Test
    public void shouldParseArea() throws Exception {
        GeoUri sut = new GeoUri(GeoUri.OPT_DEFAULT);

        GeoPointDto[] resultPoints = new GeoPointDto[]{new GeoPointDto(),new GeoPointDto()};
        sut.fromUri("geoarea:12.345,-56.789,12,-53", resultPoints);

        String result = sut.toUriString(resultPoints[0], resultPoints[1]);

        Assert.assertEquals("geoarea:12.345,-56.789,12,-53", result);
    }
    
    private GeoPointDto createTestGeoPoint() {
        return new GeoPointDto(12.345, -56.78901234, "name", "link", "icon", "id", "description", 5, 7, new Date(91, 2, 3, 4, 5, 6));
        /*
        return new GeoPointDto(179.345, -86.78901234, "name, title or caption",
                "https://link/to/additional/info.htm",
                "https://link/to/symbol.png", "id", "Some description of the location",
                5, 7, new Date(91, 2, 3, 4, 5, 6));
        */
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy