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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
// Copyright 2009, Google Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. Neither the name of Google Inc. nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// This file contains the unit test for the GoogleMapsData class.
#include "kml/convenience/google_maps_data.h"
#include "boost/scoped_ptr.hpp"
#include "gtest/gtest.h"
#include "kml/base/file.h"
#include "kml/convenience/atom_util.h"
#include "kml/convenience/convenience.h"
#include "kml/convenience/http_client.h"
#include "kml/convenience/http_client_test_util.h"
#include "kml/engine.h"
// The following define is a convenience for testing inside Google.
#ifdef GOOGLE_INTERNAL
#include "kml/base/google_internal_test.h"
#endif
#ifndef DATADIR
#error *** DATADIR must be defined! ***
#endif
namespace kmlconvenience {
class GoogleMapsDataTest : public testing::Test {
protected:
void SetUp() {
}
boost::scoped_ptr<GoogleMapsData> google_maps_data_;
};
// This class simply returns the post_data as the response.
class EchoHttpClient : public HttpClient {
public:
EchoHttpClient()
: HttpClient("EchoHttpClient") {
}
virtual bool SendRequest(HttpMethodEnum http_method,
const string& request_uri,
const StringPairVector* request_headers,
const string* post_data,
string* response) const {
if (post_data && response) {
*response = *post_data;
}
return true;
}
};
// This tests NULL use of the Create method.
TEST_F(GoogleMapsDataTest, TestNullCreate) {
// NULL/empty args? Null return (no crash, no hang, no exception, etc).
ASSERT_FALSE(GoogleMapsData::Create(NULL));
}
TEST_F(GoogleMapsDataTest, TestGetConstants) {
// Assert merely that the constant getters exist and return something.
const char* service_name = GoogleMapsData::get_service_name();
ASSERT_TRUE(service_name);
ASSERT_TRUE(strlen(service_name)); // It's a null terminated C string.
const char* metafeed_uri = GoogleMapsData::get_metafeed_uri();
ASSERT_TRUE(metafeed_uri);
ASSERT_TRUE(strlen(metafeed_uri)); // It's a null terminated C string.
}
// This tests basic use of the Create method and the get_scope() method.
TEST_F(GoogleMapsDataTest, TestBasicCreate) {
const string kScope = "http://host.com:123";
ASSERT_EQ(0, setenv("GOOGLE_MAPS_DATA_SCOPE", kScope.c_str(), 1));
HttpClient* http_client = new HttpClient("TestBasicCreate");
google_maps_data_.reset(GoogleMapsData::Create(http_client));
// An HttpClient was supplied so a GoogleMapsData was created.
ASSERT_TRUE(google_maps_data_.get());
ASSERT_EQ(kScope, google_maps_data_->get_scope());
ASSERT_EQ(http_client, google_maps_data_->get_http_client());
}
// This tests that the GoogleMapsData instance destroys the HttpClient when
// the GoogleMapsData instance is destroyed.
TEST_F(GoogleMapsDataTest, VerifyGoogleMapsDataDestroysHttpClient) {
// TODO:
}
// This tests basic normal use of the GetMetaFeedXml() method.
TEST_F(GoogleMapsDataTest, TestGetMetaFeedXml) {
HttpClient* http_client = new HttpClient("TestGetMetaFeedXml");
http_client->Login("local", "user@gmail.com", "user-password");
google_maps_data_.reset(GoogleMapsData::Create(http_client));
ASSERT_TRUE(google_maps_data_.get());
string map_feed;
ASSERT_TRUE(google_maps_data_->GetMetaFeedXml(&map_feed));
size_t end_of_first_line = map_feed.find('\n');
ASSERT_NE(string::npos, end_of_first_line);
ASSERT_EQ(string("GET ") + google_maps_data_->get_scope() +
google_maps_data_->get_metafeed_uri(),
map_feed.substr(0, end_of_first_line));
}
TEST_F(GoogleMapsDataTest, TestGetMetaFeed) {
google_maps_data_.reset(
GoogleMapsData::Create(new OneFileHttpClient(
string(DATADIR) + "/gmaps/metafeed.xml")));
ASSERT_TRUE(google_maps_data_.get());
// Call the method under test.
kmldom::AtomFeedPtr atom_feed = google_maps_data_->GetMetaFeed();
ASSERT_TRUE(atom_feed.get());
// Check a few things known to be in metafeed.xml:
ASSERT_EQ(string("My maps"), atom_feed->get_title());
ASSERT_EQ(static_cast<size_t>(5), atom_feed->get_link_array_size());
ASSERT_EQ(static_cast<size_t>(3), atom_feed->get_entry_array_size());
ASSERT_EQ(string("alaska"),
atom_feed->get_entry_array_at(0)->get_title());
ASSERT_EQ(string("canada"),
atom_feed->get_entry_array_at(1)->get_title());
ASSERT_EQ(string("this is the title"),
atom_feed->get_entry_array_at(2)->get_title());
}
TEST_F(GoogleMapsDataTest, TestGetFeatureFeedUri) {
kmldom::KmlFactory* factory = kmldom::KmlFactory::GetFactory();
kmldom::AtomContentPtr content = factory->CreateAtomContent();
const string kSrc("http://hello.com/how/are/you");
content->set_src(kSrc);
kmldom::AtomEntryPtr entry = factory->CreateAtomEntry();
entry->set_content(content);
string feature_feed_uri;
ASSERT_TRUE(GoogleMapsData::GetFeatureFeedUri(entry, &feature_feed_uri));
ASSERT_EQ(kSrc, feature_feed_uri);
}
TEST_F(GoogleMapsDataTest, TestCreateDocumentOfMapFeatures) {
string feature_feed_xml;
ASSERT_TRUE(kmlbase::File::ReadFileToString(
string(DATADIR) + "/gmaps/feature-feed.xml", &feature_feed_xml));
const kmldom::AtomFeedPtr feature_feed =
AsAtomFeed(kmldom::ParseAtom(feature_feed_xml, NULL));
ASSERT_TRUE(feature_feed.get());
google_maps_data_.reset(
GoogleMapsData::Create(new OneFileHttpClient(
string(DATADIR) + "/gmaps/metafeed.xml")));
ASSERT_TRUE(google_maps_data_.get());
const kmldom::ContainerPtr container =
google_maps_data_->CreateDocumentOfMapFeatures(feature_feed);
ASSERT_TRUE(container.get());
ASSERT_EQ(static_cast<size_t>(4), container->get_feature_array_size());
// entry 0 is a Point Placemark with IconStyle.
kmldom::PlacemarkPtr placemark =
kmldom::AsPlacemark(container->get_feature_array_at(0));
ASSERT_TRUE(placemark.get());
ASSERT_EQ(string("Montana"), placemark->get_name());
kmldom::PointPtr point = kmldom::AsPoint(placemark->get_geometry());
ASSERT_TRUE(point.get());
kmldom::StylePtr style = kmldom::AsStyle(placemark->get_styleselector());
ASSERT_TRUE(style->has_iconstyle());
// entry 1 is LineString Placemark with LineStyle
placemark = kmldom::AsPlacemark(container->get_feature_array_at(1));
ASSERT_TRUE(placemark.get());
kmldom::LineStringPtr linestring =
kmldom::AsLineString(placemark->get_geometry());
ASSERT_TRUE(linestring.get());
style = kmldom::AsStyle(placemark->get_styleselector());
ASSERT_TRUE(style->has_linestyle());
// entry 2 is LineString Placemark with LineStyle
placemark = kmldom::AsPlacemark(container->get_feature_array_at(2));
ASSERT_TRUE(placemark.get());
ASSERT_EQ(string("I90 from Missoula to Butte"), placemark->get_name());
linestring = kmldom::AsLineString(placemark->get_geometry());
ASSERT_TRUE(linestring.get());
style = kmldom::AsStyle(placemark->get_styleselector());
ASSERT_TRUE(style->has_linestyle());
// entry 3 is Polygon Placemark with LineStyle and PolyStyle
placemark = kmldom::AsPlacemark(container->get_feature_array_at(3));
ASSERT_TRUE(placemark.get());
ASSERT_EQ(string("Glacier National Park"), placemark->get_name());
kmldom::PolygonPtr polygon = kmldom::AsPolygon(placemark->get_geometry());
ASSERT_TRUE(polygon.get());
style = kmldom::AsStyle(placemark->get_styleselector());
ASSERT_TRUE(style->has_linestyle());
ASSERT_TRUE(style->has_polystyle());
}
TEST_F(GoogleMapsDataTest, TestGetFeatureFeedXml) {
google_maps_data_.reset(
GoogleMapsData::Create(new HttpClient("TestHttpClient")));
const string kFeatureFeedUri = "http://host.com/a/b/c";
string http_response;
ASSERT_TRUE(google_maps_data_->GetFeatureFeedXml(kFeatureFeedUri,
&http_response));
// This test verifies only that GetFeatureFeedXml makes a call on
// the installed HttpClient to GET the provided URL.
kmlbase::StringVector lines;
kmlbase::SplitStringUsing(http_response, "\n", &lines);
ASSERT_EQ(string("GET ") + kFeatureFeedUri, lines[0]);
}
TEST_F(GoogleMapsDataTest, TestGetFeatureFeedByUri) {
// This HttpClient always returns an Atom <feed> in the http response.
// The requested URI is set in a <link> child of the feed.
class FakeAtomFeedHttpClient : public HttpClient {
public:
FakeAtomFeedHttpClient()
: HttpClient("FakeAtomFeedHttpClient") {
}
virtual bool SendRequest(HttpMethodEnum http_method,
const string& request_uri,
const StringPairVector* request_headers,
const string* post_data,
string* response) const {
kmldom::KmlFactory* factory = kmldom::KmlFactory::GetFactory();
kmldom::AtomLinkPtr link = factory->CreateAtomLink();
link->set_href(request_uri);
kmldom::AtomFeedPtr feed = factory->CreateAtomFeed();
feed->add_link(link);
// Use kmlengine::KmlFile to emit xmlns'd xml.
kmlengine::KmlFilePtr kml_file(
kmlengine::KmlFile::CreateFromImport(feed));
kml_file->SerializeToString(response);
return true;
}
};
google_maps_data_.reset(
GoogleMapsData::Create(new FakeAtomFeedHttpClient()));
const string kFeatureFeedUri = "http://host.com/a/b/c";
// Call the method under test. This is nearly a pure I/O method so we check
// here that it makes the expected I/O request: an HTTP GET of the URI.
const kmldom::AtomFeedPtr feed =
google_maps_data_->GetFeatureFeedByUri(kFeatureFeedUri);
ASSERT_TRUE(feed.get());
ASSERT_EQ(static_cast<size_t>(1), feed->get_link_array_size());
const kmldom::AtomLinkPtr link = feed->get_link_array_at(0);
ASSERT_TRUE(link->has_href());
ASSERT_EQ(kFeatureFeedUri, link->get_href());
}
static kmldom::AtomEntryPtr CreatePlacemarkEntry(const string& name) {
kmldom::KmlFactory* factory = kmldom::KmlFactory::GetFactory();
kmldom::PlacemarkPtr placemark = factory->CreatePlacemark();
placemark->set_name(name);
kmldom::AtomContentPtr content = factory->CreateAtomContent();
// Cast <atom:entry> to Element to gain access to the AddElement() method.
kmldom::AsElement(content)->AddElement(placemark);
kmldom::AtomEntryPtr entry = factory->CreateAtomEntry();
entry->set_content(content);
return entry;
}
TEST_F(GoogleMapsDataTest, TestGetEntryFeature) {
const string kName("my name");
kmldom::FeaturePtr feature =
GoogleMapsData::GetEntryFeature(CreatePlacemarkEntry(kName));
ASSERT_TRUE(feature.get());
kmldom::PlacemarkPtr placemark = kmldom::AsPlacemark(feature);
ASSERT_TRUE(placemark.get());
ASSERT_EQ(kName, placemark->get_name());
}
TEST_F(GoogleMapsDataTest, TestGetMapKml) {
kmldom::KmlFactory* factory = kmldom::KmlFactory::GetFactory();
kmldom::AtomFeedPtr feed = factory->CreateAtomFeed();
const string kName0("the name of the 0th feature");
feed->add_entry(CreatePlacemarkEntry(kName0));
const string kName1("the name of the 1th feature");
feed->add_entry(CreatePlacemarkEntry(kName1));
const string kName2("the name of the 2th feature");
feed->add_entry(CreatePlacemarkEntry(kName2));
// Create a <Folder> to save to.
kmldom::FolderPtr folder = factory->CreateFolder();
// Call the method under test.
ASSERT_EQ(3, GoogleMapsData::GetMapKml(feed, folder));
ASSERT_EQ(static_cast<size_t>(3), folder->get_feature_array_size());
kmldom::PlacemarkPtr got_placemark = kmldom::AsPlacemark(
folder->get_feature_array_at(0));
ASSERT_TRUE(got_placemark.get());
ASSERT_EQ(kName0, got_placemark->get_name());
got_placemark = kmldom::AsPlacemark(folder->get_feature_array_at(1));
ASSERT_TRUE(got_placemark.get());
ASSERT_EQ(kName1, got_placemark->get_name());
got_placemark = kmldom::AsPlacemark(folder->get_feature_array_at(2));
ASSERT_TRUE(got_placemark.get());
ASSERT_EQ(kName2, got_placemark->get_name());
}
TEST_F(GoogleMapsDataTest, TestCreateMap) {
google_maps_data_.reset(GoogleMapsData::Create(new EchoHttpClient));
ASSERT_TRUE(google_maps_data_.get());
const string kTitle("The Girl With the Dragon Tattoo");
const string kSummary("Wildly suspenseful... an intelligent thriller");
string map_entry_xml;
ASSERT_TRUE(google_maps_data_->CreateMap(kTitle, kSummary, &map_entry_xml));
const kmldom::AtomEntryPtr entry =
kmldom::AsAtomEntry(kmldom::ParseAtom(map_entry_xml, NULL));
ASSERT_TRUE(entry.get());
ASSERT_TRUE(entry->has_title());
ASSERT_EQ(kTitle, entry->get_title());
ASSERT_TRUE(entry->has_summary());
ASSERT_EQ(kSummary, entry->get_summary());
}
TEST_F(GoogleMapsDataTest, TestAddFeature) {
google_maps_data_.reset(GoogleMapsData::Create(new EchoHttpClient));
ASSERT_TRUE(google_maps_data_.get());
const string kName("Stieg Larsson");
const string kDescription("At once a murder mystery, love story and...");
const double kLat(38.38);
const double kLon(101.101);
kmldom::PlacemarkPtr placemark =
kmlconvenience::CreatePointPlacemark(kName, kLat, kLon);
placemark->set_description(kDescription);
string feature_entry_xml;
ASSERT_TRUE(google_maps_data_->AddFeature("", placemark, &feature_entry_xml));
const kmldom::AtomEntryPtr entry =
kmldom::AsAtomEntry(kmldom::ParseAtom(feature_entry_xml, NULL));
ASSERT_TRUE(entry.get());
ASSERT_TRUE(entry->has_title());
ASSERT_EQ(kName, entry->get_title());
ASSERT_TRUE(entry->has_summary());
ASSERT_EQ(kDescription, entry->get_summary());
const kmldom::AtomContentPtr content = entry->get_content();
ASSERT_TRUE(content.get());
ASSERT_EQ(static_cast<size_t>(1),
content->get_misplaced_elements_array_size());
kmldom::PlacemarkPtr got_placemark = kmldom::AsPlacemark(
content->get_misplaced_elements_array_at(0));
ASSERT_EQ(kName, got_placemark->get_name());
ASSERT_EQ(kDescription, got_placemark->get_description());
double got_lat, got_lon;
kmlengine::GetFeatureLatLon(placemark, &got_lat, &got_lon);
ASSERT_EQ(kLat, got_lat);
ASSERT_EQ(kLon, got_lon);
}
TEST_F(GoogleMapsDataTest, TestPostPlacemarksOnAFolder) {
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
// PostPlacemarks() ignores things that aren't <Placemarks>
kmldom::FolderPtr folder = kmldom::KmlFactory::GetFactory()->CreateFolder();
ASSERT_TRUE(request_log.empty());
ASSERT_EQ(0, google_maps_data_->PostPlacemarks(folder, "http://foo.com/"));
}
TEST_F(GoogleMapsDataTest, TestPostPlacemarksOnOnePlacemark) {
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
const string kFeatureFeedUri("http://host.com/anything/will/do");
const string kName("Stieg Larsson");
const string kDescription("At once a murder mystery, love story and...");
const double kLat(38.38);
const double kLon(101.101);
kmldom::PlacemarkPtr placemark =
kmlconvenience::CreatePointPlacemark(kName, kLat, kLon);
ASSERT_EQ(1, google_maps_data_->PostPlacemarks(placemark, kFeatureFeedUri));
ASSERT_EQ(static_cast<size_t>(1), request_log.size());
ASSERT_EQ(HTTP_POST, request_log[0].http_method_);
ASSERT_EQ(kFeatureFeedUri, request_log[0].request_uri_);
}
TEST_F(GoogleMapsDataTest, TestPostPlacemarksOnKmlSamples) {
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
// Read and parse the kmlsamples.kml file.
string kml_samples;
ASSERT_TRUE(kmlbase::File::ReadFileToString(
string(DATADIR) + "/kml/kmlsamples.kml", &kml_samples));
kmlengine::KmlFilePtr kml_file(
kmlengine::KmlFile::CreateFromString(kml_samples));
kmldom::FeaturePtr root_feature =
kmlengine::GetRootFeature(kml_file->get_root());
// Make up some feature feed uri.
const string kFeatureFeedUri("http://host.com/anything/will/do");
// Call the method under test.
// There are 20 <Placemark>'s in the file, but one has no Geometry.
ASSERT_EQ(19, google_maps_data_->PostPlacemarks(root_feature,
kFeatureFeedUri));
// Verify there was a request for eqch placemark.
ASSERT_EQ(static_cast<size_t>(19), request_log.size());
for (size_t i = 0; i < request_log.size(); ++i) {
// Every request is a POST...
ASSERT_EQ(HTTP_POST, request_log[i].http_method_);
// ... to the given uri...
ASSERT_EQ(kFeatureFeedUri, request_log[i].request_uri_);
// ... of an <atom:entry>...
const kmldom::AtomEntryPtr entry =
kmldom::AsAtomEntry(kmldom::ParseAtom(request_log[i].post_data_, NULL));
ASSERT_TRUE(entry.get());
// ... whose content is a <Placemark>.
const kmldom::FeaturePtr feature = AtomUtil::GetEntryFeature(entry);
ASSERT_TRUE(feature.get());
ASSERT_EQ(kmldom::Type_Placemark, feature->Type());
}
}
TEST_F(GoogleMapsDataTest, TestGetSearchFeed) {
// Create a GoogleMapsData instance with an HttpClient which simply logs
// all requests.
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
const string uri("http://host.com/user1/map2");
const string params("box=122.175598,37.399217,-122.056783,37.470595");
string atom_feed;
ASSERT_TRUE(google_maps_data_->GetSearchFeed(uri, params, &atom_feed));
// Verify that this caused one HTTP GET of the expect query uri.
ASSERT_EQ(static_cast<size_t>(1), request_log.size());
ASSERT_EQ(uri + "?" + params, request_log[0].request_uri_);
ASSERT_EQ(HTTP_GET, request_log[0].http_method_);
}
TEST_F(GoogleMapsDataTest, TestGetSearchFeedUri) {
kmldom::KmlFactory* factory = kmldom::KmlFactory::GetFactory();
kmldom::AtomContentPtr content = factory->CreateAtomContent();
const string kBase("http://maps.google.com/maps/feeds/features/201/007/");
content->set_src(kBase + "full");
kmldom::AtomEntryPtr map = factory->CreateAtomEntry();
map->set_content(content);
string search_feed_uri;
ASSERT_TRUE(GoogleMapsData::GetSearchFeedUri(map, &search_feed_uri));
ASSERT_EQ(kBase + "snippet", search_feed_uri);
}
TEST_F(GoogleMapsDataTest, TestSearchMapByBbox) {
// Create a GoogleMapsData instance with an HttpClient which simply logs
// all requests.
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
// Create a map entry with feature feed.
kmldom::KmlFactory* factory = kmldom::KmlFactory::GetFactory();
kmldom::AtomContentPtr content = factory->CreateAtomContent();
const string kBase("http://maps.google.com/maps/feeds/features/201/007/");
content->set_src(kBase + "full");
kmldom::AtomEntryPtr map = factory->CreateAtomEntry();
map->set_content(content);
kmlengine::Bbox bbox(48.72, 21.36, -72.03, -126.75);
kmldom::AtomFeedPtr feed = google_maps_data_->SearchMapByBbox(map, bbox);
// Verify that this caused one HTTP GET of the expect query uri.
ASSERT_EQ(static_cast<size_t>(1), request_log.size());
ASSERT_EQ(kBase + "snippet?box=-126.75,21.36,-72.03,48.72",
request_log[0].request_uri_);
ASSERT_EQ(HTTP_GET, request_log[0].http_method_);
}
TEST_F(GoogleMapsDataTest, TestAppendBoxParameter) {
string query;
GoogleMapsData::AppendBoxParameter(2.2,1.1,4.4,3.3, &query);
ASSERT_EQ(string("box=3.3,1.1,4.4,2.2"), query);
}
TEST_F(GoogleMapsDataTest, TestAppendBoxParameterFromBbox) {
string query;
kmlengine::Bbox bbox(2.2,1.1,4.4,3.3);
GoogleMapsData::AppendBoxParameterFromBbox(bbox, &query);
ASSERT_EQ(string("box=3.3,1.1,4.4,2.2"), query);
}
TEST_F(GoogleMapsDataTest, TestPostCsvGood) {
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
const string csv_data("name,latitude,longitude\n"
"hello,-11.968312,-77.066395\n");
string errors;
kmldom::AtomEntryPtr entry = google_maps_data_->PostCsv("title", csv_data,
&errors);
ASSERT_EQ(static_cast<size_t>(1), request_log.size());
ASSERT_EQ(HTTP_POST, request_log[0].http_method_);
}
TEST_F(GoogleMapsDataTest, TestPostCsvBad) {
// The TestDataHttpClient is used here to provide a way for the underlying
// HttpClient to fail such that we can asser the NULL return of PostCsv.
google_maps_data_.reset(GoogleMapsData::Create(new TestDataHttpClient()));
ASSERT_FALSE(google_maps_data_->PostCsv("title", "junk", NULL));
}
TEST_F(GoogleMapsDataTest, TestPostKml) {
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
const string kml("<kml><Placemark><name>hello</name></Placemark></kml>");
kmldom::AtomEntryPtr entry = google_maps_data_->PostKml("title", kml);
ASSERT_EQ(static_cast<size_t>(1), request_log.size());
ASSERT_EQ(HTTP_POST, request_log[0].http_method_);
ASSERT_EQ(kml, request_log[0].post_data_);
}
TEST_F(GoogleMapsDataTest, TestPostMedia) {
HttpRequestVector request_log;
google_maps_data_.reset(
GoogleMapsData::Create(new LoggingHttpClient(&request_log)));
const string slug("slug me");
const string content_type("anything");
const string data("this is the data");
string errors;
kmldom::AtomEntryPtr entry = google_maps_data_->PostMedia(slug, content_type,
data, &errors);
ASSERT_EQ(static_cast<size_t>(1), request_log.size());
ASSERT_EQ(HTTP_POST, request_log[0].http_method_);
ASSERT_EQ(data, request_log[0].post_data_);
const StringPairVector& headers = request_log[0].request_headers_;
bool found_slug = false;
bool found_content_type = false;
// Don't require any particular order to the headers.
for (size_t i = 0; i < headers.size(); ++i) {
if (headers[i].first == "Slug") {
found_slug = true;
ASSERT_EQ(slug, headers[i].second);
} else if (headers[i].first == "Content-Type") {
found_content_type = true;
ASSERT_EQ(content_type, headers[i].second);
}
}
ASSERT_TRUE(found_slug);
ASSERT_TRUE(found_content_type);
}
TEST_F(GoogleMapsDataTest, TestGetKmlUri) {
// Find a map entry in a test file.
string maps_feed_xml;
ASSERT_TRUE(kmlbase::File::ReadFileToString(
string(DATADIR) + "/gmaps/metafeed.xml", &maps_feed_xml));
const kmldom::AtomFeedPtr feed =
kmldom::AsAtomFeed(kmldom::ParseAtom(maps_feed_xml, NULL));
ASSERT_TRUE(feed);
const string want("http://maps.google.com/maps/ms?msa=0&msid="
"201514259179526663268.0004687a1a3e44d72b6b4&output=kml");
string got;
ASSERT_TRUE(GoogleMapsData::GetKmlUri(feed->get_entry_array_at(0), &got));
ASSERT_EQ(want, got);
}
} // end namespace kmlconvenience
|