forked from organicmaps/organicmaps-tmp
[tests] Restored ForEachFeatureID test.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
2af070f111
commit
db5f4135ab
3 changed files with 96 additions and 64 deletions
|
@ -601,20 +601,37 @@ string FeatureType::DebugString(int scale)
|
|||
m2::PointD keyPoint;
|
||||
switch (GetGeomType())
|
||||
{
|
||||
case GeomType::Point: keyPoint = m_center; break;
|
||||
case GeomType::Line: keyPoint = m_points.front(); break;
|
||||
case GeomType::Point:
|
||||
keyPoint = m_center;
|
||||
break;
|
||||
|
||||
case GeomType::Line:
|
||||
if (m_points.empty())
|
||||
{
|
||||
ASSERT(scale != FeatureType::WORST_GEOMETRY && scale != FeatureType::BEST_GEOMETRY, (scale));
|
||||
return res;
|
||||
}
|
||||
keyPoint = m_points.front();
|
||||
break;
|
||||
|
||||
case GeomType::Area:
|
||||
if (m_triangles.empty())
|
||||
{
|
||||
ASSERT(scale != FeatureType::WORST_GEOMETRY && scale != FeatureType::BEST_GEOMETRY, (scale));
|
||||
return res;
|
||||
}
|
||||
|
||||
ASSERT_GREATER(m_triangles.size(), 2, ());
|
||||
keyPoint = (m_triangles[0] + m_triangles[1] + m_triangles[2]) / 3.0;
|
||||
break;
|
||||
|
||||
case GeomType::Undefined:
|
||||
ASSERT(false, ("Assume that we have valid feature always"));
|
||||
ASSERT(false, ());
|
||||
break;
|
||||
}
|
||||
|
||||
// Print coordinates in (lat,lon) for better investigation capabilities.
|
||||
res += "Key point: ";
|
||||
res += DebugPrint(mercator::ToLatLon(keyPoint));
|
||||
res += "Key point: " + DebugPrint(keyPoint) + "; " + DebugPrint(mercator::ToLatLon(keyPoint));
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,11 +2,12 @@
|
|||
|
||||
#include "map/features_fetcher.hpp"
|
||||
|
||||
#include "indexer/data_header.hpp"
|
||||
#include "indexer/scales.hpp"
|
||||
#include "indexer/feature_visibility.hpp"
|
||||
#include "indexer/feature_processor.hpp"
|
||||
#include "indexer/classificator.hpp"
|
||||
#include "indexer/data_header.hpp"
|
||||
#include "indexer/feature_processor.hpp"
|
||||
#include "indexer/feature_visibility.hpp"
|
||||
#include "indexer/map_style_reader.hpp"
|
||||
#include "indexer/scales.hpp"
|
||||
|
||||
#include "platform/local_country_file_utils.hpp"
|
||||
|
||||
|
@ -22,14 +23,27 @@
|
|||
|
||||
using namespace std;
|
||||
|
||||
namespace
|
||||
namespace mwm_for_each_test
|
||||
{
|
||||
using Cont = vector<uint32_t>;
|
||||
|
||||
bool IsDrawable(FeatureType & f, int scale)
|
||||
{
|
||||
// Feature that doesn't have any geometry for m_scale returns empty DebugString().
|
||||
return (!f.IsEmptyGeometry(scale) && feature::IsDrawableForIndex(f, scale));
|
||||
if (f.IsEmptyGeometry(scale))
|
||||
return false;
|
||||
|
||||
if (feature::IsDrawableForIndex(f, scale))
|
||||
return true;
|
||||
|
||||
// Scale index ends on GetUpperScale(), but the actual visibility goes until GetUpperStyleScale().
|
||||
if (scale != scales::GetUpperScale())
|
||||
return false;
|
||||
|
||||
while (++scale <= scales::GetUpperStyleScale())
|
||||
if (feature::IsDrawableForIndex(f, scale))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
class AccumulatorBase
|
||||
|
@ -248,67 +262,69 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
// void RunTest(string const & countryFileName)
|
||||
// {
|
||||
// FeaturesFetcher src1;
|
||||
// src1.InitClassificator();
|
||||
void RunTest(string const & countryFileName)
|
||||
{
|
||||
FeaturesFetcher src1;
|
||||
src1.InitClassificator();
|
||||
|
||||
// platform::LocalCountryFile localFile(platform::LocalCountryFile::MakeForTesting(countryFileName));
|
||||
// // Clean indexes to prevent mwm and indexes versions mismatch error.
|
||||
// platform::CountryIndexes::DeleteFromDisk(localFile);
|
||||
// UNUSED_VALUE(src1.RegisterMap(localFile));
|
||||
platform::LocalCountryFile localFile(platform::LocalCountryFile::MakeForTesting(countryFileName));
|
||||
// Clean indexes to prevent mwm and indexes versions mismatch error.
|
||||
platform::CountryIndexes::DeleteFromDisk(localFile);
|
||||
UNUSED_VALUE(src1.RegisterMap(localFile));
|
||||
|
||||
// vector<m2::RectD> rects;
|
||||
// rects.push_back(src1.GetWorldRect());
|
||||
vector<m2::RectD> rects;
|
||||
rects.push_back(src1.GetWorldRect());
|
||||
|
||||
// ModelReaderPtr reader = platform::GetCountryReader(localFile, MapFileType::Map);
|
||||
ModelReaderPtr reader = platform::GetCountryReader(localFile, MapFileType::Map);
|
||||
|
||||
// while (!rects.empty())
|
||||
// {
|
||||
// m2::RectD const r = rects.back();
|
||||
// rects.pop_back();
|
||||
while (!rects.empty())
|
||||
{
|
||||
m2::RectD const r = rects.back();
|
||||
rects.pop_back();
|
||||
|
||||
// int const scale = scales::GetScaleLevel(r);
|
||||
int const scale = max(scales::GetUpperCountryScale(), scales::GetScaleLevel(r));
|
||||
|
||||
// Cont v1, v2;
|
||||
// {
|
||||
// AccumulatorBase acc(scale, v1);
|
||||
// src1.ForEachFeature(r, acc, scale);
|
||||
// sort(v1.begin(), v1.end(), FeatureIDCmp());
|
||||
// }
|
||||
// {
|
||||
// AccumulatorEtalon acc(r, scale, v2);
|
||||
// feature::ForEachFeature(reader, acc);
|
||||
// sort(v2.begin(), v2.end(), FeatureIDCmp());
|
||||
// }
|
||||
Cont v1, v2;
|
||||
{
|
||||
AccumulatorBase acc(scale, v1);
|
||||
src1.ForEachFeature(r, acc, scale);
|
||||
sort(v1.begin(), v1.end(), FeatureIDCmp());
|
||||
}
|
||||
{
|
||||
AccumulatorEtalon acc(r, scale, v2);
|
||||
feature::ForEachFeature(reader, acc);
|
||||
sort(v2.begin(), v2.end(), FeatureIDCmp());
|
||||
}
|
||||
|
||||
// size_t const emptyInd = size_t(-1);
|
||||
// size_t errInd = emptyInd;
|
||||
// if (!compare_sequence(v2, v1, FeatureIDCmp(), errInd))
|
||||
// {
|
||||
// if (errInd != emptyInd)
|
||||
// {
|
||||
// FindOffset doFind(scale, v2[errInd]);
|
||||
// feature::ForEachFeature(reader, doFind);
|
||||
// }
|
||||
size_t const emptyInd = size_t(-1);
|
||||
size_t errInd = emptyInd;
|
||||
if (!compare_sequence(v2, v1, FeatureIDCmp(), errInd))
|
||||
{
|
||||
if (errInd != emptyInd)
|
||||
{
|
||||
FindOffset doFind(scale, v2[errInd]);
|
||||
feature::ForEachFeature(reader, doFind);
|
||||
}
|
||||
|
||||
// TEST(false, ("Failed for rect:", r, "; Scale level:", scale, "; Etalon size:", v2.size(), "; Index size:", v1.size()));
|
||||
// }
|
||||
TEST(false, ("Failed for rect:", r, "; Scale level:", scale, "; Etalon size:", v2.size(), "; Index size:", v1.size()));
|
||||
}
|
||||
|
||||
// if (!v2.empty() && (scale < scales::GetUpperScale()))
|
||||
// {
|
||||
// m2::RectD r1, r2;
|
||||
// r.DivideByGreaterSize(r1, r2);
|
||||
// rects.push_back(r1);
|
||||
// rects.push_back(r2);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
if (!v2.empty() && (scale < scales::GetUpperScale()))
|
||||
{
|
||||
m2::RectD r1, r2;
|
||||
r.DivideByGreaterSize(r1, r2);
|
||||
rects.push_back(r1);
|
||||
rects.push_back(r2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// @todo The concept of this test became invalid after POI filtering when overlap in geometry index.
|
||||
/// Probably, will restore it with a new idea someday. Like build and check separate index without filtering.
|
||||
//UNIT_TEST(ForEach_QueryResults)
|
||||
//{
|
||||
// GetStyleReader().SetCurrentStyle(MapStyleMerged);
|
||||
// RunTest("minsk-pass");
|
||||
// //RunTestForChoice("london-center");
|
||||
//}
|
||||
|
||||
} // namespace
|
||||
} // namespace mwm_for_each_test
|
||||
|
|
|
@ -71,9 +71,8 @@ UNIT_TEST(ForEachFeatureID_Test)
|
|||
{
|
||||
classificator::Load();
|
||||
|
||||
/// @todo Uncomment World* checking after next map data update.
|
||||
// TEST(RunTest("World", 0, scales::GetUpperWorldScale()), ());
|
||||
// TEST(RunTest("WorldCoasts.mwm", 0, scales::GetUpperWorldScale()), ());
|
||||
TEST(RunTest("World", 0, scales::GetUpperWorldScale()), ());
|
||||
TEST(RunTest("WorldCoasts", 0, scales::GetUpperWorldScale()), ());
|
||||
// TEST(RunTest("Belarus", scales::GetUpperWorldScale() + 1, scales::GetUpperStyleScale()), ());
|
||||
TEST(RunTest("minsk-pass", scales::GetUpperWorldScale() + 1, scales::GetUpperStyleScale()), ());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue