aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/helper/LocationTreeTest.java
blob: afbbbc94cb26476f6b4285905c74c3d7e672ae68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.traccar.helper;

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

import java.util.ArrayList;
import java.util.List;

public class LocationTreeTest {
    
    @Test
    public void testLocationTree() {

        List<LocationTree.Item> items = new ArrayList<>();
        items.add(new LocationTree.Item(1, 1, "a"));
        items.add(new LocationTree.Item(3, 2, "b"));
        items.add(new LocationTree.Item(1, 3, "c"));
        items.add(new LocationTree.Item(4, 3, "d"));

        LocationTree tree = new LocationTree(items);

        Assert.assertEquals("a", tree.findNearest(new LocationTree.Item(1f, 1f)).getData());
        Assert.assertEquals("d", tree.findNearest(new LocationTree.Item(10f, 10f)).getData());
        Assert.assertEquals("c", tree.findNearest(new LocationTree.Item(1f, 2.5f)).getData());
        Assert.assertEquals("a", tree.findNearest(new LocationTree.Item(1.5f, 1.5f)).getData());

    }

}