diff --git a/data/test.kmz b/data/test.kmz new file mode 100644 index 0000000000..d9980eaee2 Binary files /dev/null and b/data/test.kmz differ diff --git a/map/map_tests/kmz_unarchive_test.cpp b/map/map_tests/kmz_unarchive_test.cpp new file mode 100644 index 0000000000..b67e41939e --- /dev/null +++ b/map/map_tests/kmz_unarchive_test.cpp @@ -0,0 +1,56 @@ +#include "../../testing/testing.hpp" + +#include "../../coding/zip_reader.hpp" +#include "../../map/framework.hpp" +#include "../../platform/platform.hpp" +#include "../../base/scope_guard.hpp" + +#include "../../std/string.hpp" +#include "../../std/vector.hpp" +#include "../../std/iostream.hpp" + +UNIT_TEST(Open_KMZ_Test) +{ + string const KMZFILE = GetPlatform().WritablePathForFile("test.kmz"); + vector files; + ZipFileReader::FilesList(KMZFILE, files); + + bool isKMLinZip = false; + + for (int i = 0; i < files.size();++i) + { + if (files[i] == "doc.kml") + { + isKMLinZip = true; + break; + } + } + TEST(isKMLinZip, ("No KML file in KMZ")); + + string const KMLFILE = GetPlatform().WritablePathForFile("newKml.kml"); + MY_SCOPE_GUARD(fileGuard, bind(&FileWriter::DeleteFileX, KMLFILE)); + ZipFileReader::UnzipFile(KMZFILE, "doc.kml", KMLFILE); + BookmarkCategory cat("Default"); + cat.LoadFromKML(new FileReader(KMLFILE)); + + TEST_EQUAL(files.size(), 6, ("KMZ file wrong number of files")); + + TEST_EQUAL(cat.GetBookmarksCount(), 6, ("Category wrong number of bookmarks")); + + { + Bookmark const * bm = cat.GetBookmark(0); + TEST_EQUAL(bm->GetName(), ("Lahaina Breakwall"), ("KML wrong name!")); + TEST_EQUAL(bm->GetType(), "placemark-red", ("KML wrong type!")); + TEST_ALMOST_EQUAL(bm->GetOrg().x, -156.6777046791284, ("KML wrong org x!")); + TEST_ALMOST_EQUAL(bm->GetOrg().y, 21.34256685860084, ("KML wrong org y!")); + TEST_EQUAL(bm->GetScale(), -1, ("KML wrong scale!")); + } + { + Bookmark const * bm = cat.GetBookmark(1); + TEST_EQUAL(bm->GetName(), ("Seven Sacred Pools, Kipahulu"), ("KML wrong name!")); + TEST_EQUAL(bm->GetType(), "placemark-red", ("KML wrong type!")); + TEST_ALMOST_EQUAL(bm->GetOrg().x, -156.0405130750025, ("KML wrong org x!")); + TEST_ALMOST_EQUAL(bm->GetOrg().y, 21.12480639056074, ("KML wrong org y!")); + TEST_EQUAL(bm->GetScale(), -1, ("KML wrong scale!")); + } +} diff --git a/map/map_tests/map_tests.pro b/map/map_tests/map_tests.pro index cc0072e67d..97f4085319 100644 --- a/map/map_tests/map_tests.pro +++ b/map/map_tests/map_tests.pro @@ -7,7 +7,7 @@ TEMPLATE = app ROOT_DIR = ../.. DEPENDENCIES = map gui search storage graphics indexer platform anim geometry coding base \ - freetype fribidi expat protobuf tomcrypt jansson + freetype fribidi expat protobuf tomcrypt jansson zlib include($$ROOT_DIR/common.pri) @@ -21,6 +21,7 @@ macx*: LIBS *= "-framework Foundation" "-framework IOKit" SOURCES += \ ../../testing/testingmain.cpp \ + kmz_unarchive_test.cpp \ navigator_test.cpp \ map_foreach_test.cpp \ draw_processor_test.cpp \