summaryrefslogtreecommitdiff
path: root/src/third_party/s2/s2regionunion_test.cc
blob: eccd5d85e4ea9f5392a75848673e78ff37bc1017 (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
62
63
64
65
// Copyright 2005 Google Inc. All Rights Reserved.

#include "s2regionunion.h"

#include <vector>
using std::vector;


#include "base/scoped_ptr.h"
#include "testing/base/public/gunit.h"
#include "s2cap.h"
#include "s2cell.h"
#include "s2latlngrect.h"
#include "s2pointregion.h"
#include "s2regioncoverer.h"

namespace {

TEST(S2RegionUnionTest, Basic) {
  vector<S2Region*> regions;
  S2RegionUnion ru_empty(&regions);
  EXPECT_EQ(0, ru_empty.num_regions());
  EXPECT_EQ(S2Cap::Empty(), ru_empty.GetCapBound());
  EXPECT_EQ(S2LatLngRect::Empty(), ru_empty.GetRectBound());
  scoped_ptr<S2Region> empty_clone(ru_empty.Clone());

  regions.push_back(new S2PointRegion(S2LatLng::FromDegrees(35, 40)
                                      .ToPoint()));
  regions.push_back(new S2PointRegion(S2LatLng::FromDegrees(-35, -40)
                                      .ToPoint()));

  // Check that Clone() returns a deep copy.
  S2RegionUnion* two_points_orig = new S2RegionUnion(&regions);
  EXPECT_TRUE(regions.empty());

  scoped_ptr<S2RegionUnion> two_points(two_points_orig->Clone());
  delete two_points_orig;
  EXPECT_EQ(S2LatLngRect(S2LatLng::FromDegrees(-35, -40),
                         S2LatLng::FromDegrees(35, 40)),
            two_points->GetRectBound());

  S2Cell face0 = S2Cell::FromFacePosLevel(0, 0, 0);
  EXPECT_TRUE(two_points->MayIntersect(face0));
  EXPECT_FALSE(two_points->Contains(face0));

  EXPECT_TRUE(two_points->Contains(S2LatLng::FromDegrees(35, 40).ToPoint()));
  EXPECT_TRUE(two_points->Contains(S2LatLng::FromDegrees(-35, -40).ToPoint()));
  EXPECT_FALSE(two_points->Contains(S2LatLng::FromDegrees(0, 0).ToPoint()));

  // Check that we can Add() another region.
  scoped_ptr<S2RegionUnion> three_points(two_points->Clone());
  EXPECT_FALSE(three_points->Contains(S2LatLng::FromDegrees(10, 10).ToPoint()));
  three_points->Add(new S2PointRegion(S2LatLng::FromDegrees(10, 10)
                                          .ToPoint()));
  EXPECT_TRUE(three_points->Contains(S2LatLng::FromDegrees(10, 10).ToPoint()));

  S2RegionCoverer coverer;
  coverer.set_max_cells(1);
  vector<S2CellId> covering;
  coverer.GetCovering(*two_points.get(), &covering);
  EXPECT_EQ(1, covering.size());
  EXPECT_EQ(face0.id(), covering[0]);
}

}  // namespace