forked from organicmaps/organicmaps-tmp
Split tests into library, integration and supported features tests.
This commit is contained in:
parent
4e9cab0a30
commit
946205ce75
8 changed files with 2656 additions and 2597 deletions
|
@ -8,12 +8,14 @@ SUBDIRS = freetype fribidi minizip jansson tomcrypt protobuf osrm expat \
|
|||
!linux* {
|
||||
SUBDIRS += opening_hours
|
||||
CONFIG(desktop):!CONFIG(no-tests) {
|
||||
SUBDIRS += opening_hours/opening_hours_tests
|
||||
SUBDIRS += opening_hours/opening_hours_tests \
|
||||
opening_hours/opening_hours_integration_tests \
|
||||
opening_hours/opening_hours_supported_features_tests
|
||||
}
|
||||
}
|
||||
|
||||
!iphone*:!tizen*:!android* {
|
||||
SUBDIRS += gflags \
|
||||
libtess2 \
|
||||
gmock \
|
||||
gmock
|
||||
}
|
||||
|
|
|
@ -0,0 +1,215 @@
|
|||
#include "parse.hpp"
|
||||
#include "rules_evaluation.hpp"
|
||||
|
||||
#define BOOST_TEST_MODULE OpeningHoursIntegration
|
||||
|
||||
#include <algorithm>
|
||||
#include <ctime>
|
||||
#include <map>
|
||||
|
||||
#include <boost/algorithm/string/case_conv.hpp>
|
||||
#include <boost/algorithm/string/replace.hpp>
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
|
||||
namespace
|
||||
{
|
||||
template <typename T>
|
||||
std::string ToString(T const & t)
|
||||
{
|
||||
std::stringstream sstr;
|
||||
sstr << t;
|
||||
return sstr.str();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool HasPeriod(std::vector<T> const & v)
|
||||
{
|
||||
auto const hasPeriod = [](T const & t) { return t.HasPeriod(); };
|
||||
return std::any_of(begin(v), end(v), hasPeriod);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool HasPlus(std::vector<T> const & v)
|
||||
{
|
||||
auto const hasPlus = [](T const & t) { return t.HasPlus(); };
|
||||
return std::any_of(begin(v), end(v), hasPlus);
|
||||
}
|
||||
|
||||
bool HasEHours(osmoh::TTimespans const & spans)
|
||||
{
|
||||
auto const hasEHours = [](osmoh::Timespan const & s) -> bool {
|
||||
if (!s.HasEnd())
|
||||
return false;
|
||||
return s.GetEnd().GetMinutes() + s.GetEnd().GetHours() > 24 * std::chrono::minutes(60);
|
||||
};
|
||||
return std::any_of(begin(spans), end(spans), hasEHours);
|
||||
}
|
||||
|
||||
bool HasOffset(osmoh::TMonthdayRanges const & mr)
|
||||
{
|
||||
auto const hasOffset = [](osmoh::MonthdayRange const & md) {
|
||||
return
|
||||
md.GetStart().HasOffset() ||
|
||||
md.GetEnd().HasOffset();
|
||||
};
|
||||
return std::any_of(begin(mr), end(mr), hasOffset);
|
||||
}
|
||||
|
||||
bool HasOffset(osmoh::Weekdays const & wd)
|
||||
{
|
||||
auto const hasOffset = [](osmoh::WeekdayRange const & w) { return w.HasOffset(); };
|
||||
return std::any_of(begin(wd.GetWeekdayRanges()), end(wd.GetWeekdayRanges()), hasOffset);
|
||||
}
|
||||
|
||||
template <typename ParserResult>
|
||||
bool CompareNormalized(std::string const & original, ParserResult const & pretendent)
|
||||
{
|
||||
auto original_copy = original;
|
||||
auto pretendent_copy = ToString(pretendent);
|
||||
|
||||
boost::to_lower(original_copy);
|
||||
boost::to_lower(pretendent_copy);
|
||||
|
||||
boost::replace_all(original_copy, "off", "closed");
|
||||
|
||||
boost::replace_all(original_copy, " ", "");
|
||||
boost::replace_all(pretendent_copy, " ", "");
|
||||
|
||||
return pretendent_copy == original_copy;
|
||||
}
|
||||
|
||||
enum
|
||||
{
|
||||
Parsed,
|
||||
Unparsed,
|
||||
Period,
|
||||
Plus,
|
||||
Ehours,
|
||||
Offset
|
||||
};
|
||||
using TRuleFeatures = std::array<bool, 6>;
|
||||
|
||||
std::ostream & operator<<(std::ostream & ost, TRuleFeatures const & f)
|
||||
{
|
||||
ost << f[Parsed] << '\t'
|
||||
<< f[Unparsed] << '\t'
|
||||
<< f[Period] << '\t'
|
||||
<< f[Plus] << '\t'
|
||||
<< f[Ehours] << '\t'
|
||||
<< f[Offset] << '\t';
|
||||
return ost;
|
||||
}
|
||||
|
||||
TRuleFeatures DescribeRule(osmoh::TRuleSequences const & rule)
|
||||
{
|
||||
TRuleFeatures features{};
|
||||
for (auto const & r : rule)
|
||||
{
|
||||
features[Period] |= HasPeriod(r.GetTimes());
|
||||
features[Period] |= HasPeriod(r.GetMonths());
|
||||
features[Period] |= HasPeriod(r.GetYears());
|
||||
features[Period] |= HasPeriod(r.GetWeeks());
|
||||
|
||||
features[Plus] |= HasPlus(r.GetTimes());
|
||||
features[Plus] |= HasPlus(r.GetMonths());
|
||||
features[Plus] |= HasPlus(r.GetYears());
|
||||
|
||||
features[Offset] |= HasOffset(r.GetMonths());
|
||||
features[Offset] |= HasOffset(r.GetWeekdays());
|
||||
|
||||
features[Ehours] |= HasEHours(r.GetTimes());
|
||||
}
|
||||
|
||||
return features;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
/// How to run:
|
||||
/// 1. copy opening-count.lst to where the binary is
|
||||
/// 2. run with --log_level=message
|
||||
BOOST_AUTO_TEST_CASE(OpeningHours_CountFailed)
|
||||
{
|
||||
std::ifstream datalist("opening-count.lst");
|
||||
BOOST_REQUIRE_MESSAGE(datalist.is_open(),
|
||||
"Can't open ./opening-count.lst: " << std::strerror(errno));
|
||||
|
||||
std::string line;
|
||||
|
||||
size_t line_num = 0;
|
||||
size_t num_failed = 0;
|
||||
size_t num_total = 0;
|
||||
|
||||
std::map<size_t, size_t> hist;
|
||||
std::map<TRuleFeatures, size_t> featuresDistrib;
|
||||
|
||||
while (std::getline(datalist, line))
|
||||
{
|
||||
size_t count = 1;
|
||||
std::string datastr;
|
||||
|
||||
auto d = line.find('|');
|
||||
if (d == std::string::npos)
|
||||
{
|
||||
BOOST_WARN_MESSAGE((d != std::string::npos),
|
||||
"Incorrect line " << line_num << " format: " << line);
|
||||
datastr = line;
|
||||
}
|
||||
else
|
||||
{
|
||||
count = std::stol(line.substr(0,d));
|
||||
datastr = line.substr(d+1);
|
||||
}
|
||||
|
||||
line_num++;
|
||||
|
||||
osmoh::TRuleSequences rule;
|
||||
auto const isParsed = Parse(datastr, rule);
|
||||
TRuleFeatures features{};
|
||||
|
||||
if (isParsed)
|
||||
features = DescribeRule(rule);
|
||||
features[Parsed] = true;
|
||||
features[Unparsed] = true;
|
||||
|
||||
if (!isParsed)
|
||||
{
|
||||
num_failed += count;
|
||||
++hist[count];
|
||||
features[Parsed] = false;
|
||||
features[Unparsed] = false;
|
||||
BOOST_TEST_MESSAGE("-- " << count << " :[" << datastr << "]");
|
||||
}
|
||||
else if (!CompareNormalized(datastr, rule))
|
||||
{
|
||||
num_failed += count;
|
||||
++hist[count];
|
||||
features[Unparsed] = false;
|
||||
BOOST_TEST_MESSAGE("- " << count << " :[" << datastr << "]");
|
||||
BOOST_TEST_MESSAGE("+ " << count << " :[" << ToString(rule) << "]");
|
||||
}
|
||||
|
||||
featuresDistrib[features] += count;
|
||||
num_total += count;
|
||||
}
|
||||
|
||||
BOOST_CHECK_MESSAGE((num_failed == 0),
|
||||
"Failed " << num_failed <<
|
||||
" of " << num_total <<
|
||||
" (" << double(num_failed)/(double(num_total)/100) << "%)");
|
||||
|
||||
{
|
||||
std::stringstream message;
|
||||
for (auto const & e : hist)
|
||||
message << "Weight: " << e.first << " Count: " << e.second << std::endl;
|
||||
|
||||
BOOST_TEST_MESSAGE(message.str());
|
||||
}
|
||||
{
|
||||
std::stringstream message;
|
||||
message << "Parsed\tUnparsed\tPeriod\tPlus\tEhours\tOffset\tCount\n";
|
||||
for (auto const & e : featuresDistrib)
|
||||
message << e.first << '\t' << e.second << std::endl;
|
||||
|
||||
BOOST_TEST_MESSAGE(message.str());
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
TARGET = opening_hours_integration_tests
|
||||
CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
TEMPLATE = app
|
||||
|
||||
ROOT_DIR = ../../..
|
||||
DEPENDENCIES += opening_hours \
|
||||
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
OPENING_HOURS_INCLUDE = $$ROOT_DIR/3party/opening_hours
|
||||
INCLUDEPATH += $$OPENING_HOURS_INCLUDE
|
||||
|
||||
HEADERS += $$OPENING_HOURS_INCLUDE/osm_time_range.hpp \
|
||||
$$OPENING_HOURS_INCLUDE/parse.hpp \
|
||||
$$OPENING_HOURS_INCLUDE/rules_evaluation.hpp \
|
||||
$$OPENING_HOURS_INCLUDE/rules_evaluation_private.hpp \
|
||||
|
||||
SOURCES += opening_hours_integration_tests.cpp
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,19 @@
|
|||
TARGET = opening_hours_supported_features_tests
|
||||
CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
TEMPLATE = app
|
||||
|
||||
ROOT_DIR = ../../..
|
||||
DEPENDENCIES += opening_hours \
|
||||
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
OPENING_HOURS_INCLUDE = $$ROOT_DIR/3party/opening_hours
|
||||
INCLUDEPATH += $$OPENING_HOURS_INCLUDE
|
||||
|
||||
HEADERS += $$OPENING_HOURS_INCLUDE/osm_time_range.hpp \
|
||||
$$OPENING_HOURS_INCLUDE/parse.hpp \
|
||||
$$OPENING_HOURS_INCLUDE/rules_evaluation.hpp \
|
||||
$$OPENING_HOURS_INCLUDE/rules_evaluation_private.hpp \
|
||||
|
||||
SOURCES += opening_hours_supported_features_tests.cpp
|
|
@ -1,5 +1,5 @@
|
|||
TARGET = opening_hours_tests
|
||||
CONFIG += console worn_off
|
||||
CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
TEMPLATE = app
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue