summaryrefslogtreecommitdiff
path: root/test/algorithm/covered_by_children.test.cpp
blob: b2a219bf292198868b41df651d3feaa8743b1ce9 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <mbgl/test/util.hpp>

#include <mbgl/algorithm/covered_by_children.hpp>

#include <map>

using namespace mbgl;

using List = std::map<UnwrappedTileID, bool>;

TEST(CoveredByChildren, NotCovered) {
    const List list1;
    EXPECT_FALSE(algorithm::coveredByChildren(UnwrappedTileID{ 0, 0, 0 }, list1));

    const List list2{
        { UnwrappedTileID{ 0, 0, 0 }, true },
        // 3 out of 4 child tiles
        { UnwrappedTileID{ 1, 0, 0 }, true },
        { UnwrappedTileID{ 1, 0, 1 }, true },
        // missing 1/1/0
        { UnwrappedTileID{ 1, 1, 1 }, true },
    };
    EXPECT_FALSE(algorithm::coveredByChildren(UnwrappedTileID{ 0, 0, 0 }, list2));

    const List list3{
        { UnwrappedTileID{ 0, 0, 0 }, true },
        // all four child tiles, with with a different wrap index
        { UnwrappedTileID{ 1, { 1, 0, 0 } }, true },
        { UnwrappedTileID{ 1, { 1, 0, 1 } }, true },
        { UnwrappedTileID{ 1, { 1, 1, 0 } }, true },
        { UnwrappedTileID{ 1, { 1, 1, 1 } }, true },
    };
    EXPECT_FALSE(algorithm::coveredByChildren(UnwrappedTileID{ 0, 0, 0 }, list3));
}

TEST(CoveredByChildren, Covered) {
    const List list1{
        { UnwrappedTileID{ 0, 0, 0 }, true },
        // all four child tiles
        { UnwrappedTileID{ 1, 0, 0 }, true },
        { UnwrappedTileID{ 1, 0, 1 }, true },
        { UnwrappedTileID{ 1, 1, 0 }, true },
        { UnwrappedTileID{ 1, 1, 1 }, true },
    };
    EXPECT_TRUE(algorithm::coveredByChildren(UnwrappedTileID{ 0, 0, 0 }, list1));

    const List list2{
        { UnwrappedTileID{ 0, 0, 0 }, true },
        // missing 1/0/0
        { UnwrappedTileID{ 1, 0, 1 }, true },
        { UnwrappedTileID{ 1, 1, 0 }, true },
        { UnwrappedTileID{ 1, 1, 1 }, true },
        { UnwrappedTileID{ 2, 0, 0 }, true },
        { UnwrappedTileID{ 2, 0, 1 }, true },
        { UnwrappedTileID{ 2, 1, 0 }, true },
        { UnwrappedTileID{ 2, 1, 1 }, true },
    };
    EXPECT_TRUE(algorithm::coveredByChildren(UnwrappedTileID{ 0, 0, 0 }, list2));
    EXPECT_TRUE(algorithm::coveredByChildren(UnwrappedTileID{ 1, 0, 0 }, list2));
    EXPECT_FALSE(algorithm::coveredByChildren(UnwrappedTileID{ 2, 0, 0 }, list2));
}