forked from organicmaps/organicmaps-tmp
Add tests. Make all tests pass.
This commit is contained in:
parent
d1f5d92c13
commit
1d379d9f57
5 changed files with 60 additions and 19 deletions
|
@ -510,6 +510,46 @@ BOOST_AUTO_TEST_CASE(OpeningHoursMonthdayRanges_TestParseUnparse)
|
|||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "Jan 11-Dec 10,Apr 01-Jun 02";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "2011 Jan";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "1989 Mar 10+";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "Jan 11 +Mo+";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "Jan 11 +3 days+";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "Feb 03 -Mo -2 days+";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "Feb 03 -Mo -2 days-Jan 11 +3 days";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
{
|
||||
auto const rule = "Feb 03 -Mo -2 days-Jan 11 +3 days,Mar,Apr";
|
||||
auto const parsedUnparsed = ParseAndUnparse<osmoh::TMonthdayRanges>(rule);
|
||||
BOOST_CHECK_EQUAL(parsedUnparsed, rule);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -162,23 +162,23 @@ class month_selector : public qi::grammar<Iterator, TMonthdayRanges(), space_typ
|
|||
using qi::_3;
|
||||
using qi::_a;
|
||||
using qi::_val;
|
||||
using qi::int_;
|
||||
using qi::uint_;
|
||||
using qi::ushort_;
|
||||
using qi::lit;
|
||||
using qi::double_;
|
||||
using qi::lexeme;
|
||||
using charset::char_;
|
||||
|
||||
static const qi::int_parser<unsigned, 10, 4, 4> year = {};
|
||||
|
||||
day_offset = ((lit('+')[_a = 1] | lit('-')[_a = -1]) >>
|
||||
int_ >> charset::no_case[(lit("days") | lit("day"))]) [_val = _a * _1];
|
||||
ushort_ >> charset::no_case[(lit("days") | lit("day"))]) [_val = _a * _1];
|
||||
|
||||
date_offset = ((lit('+')[_a = true] | lit('-')[_a = false]) >> wdays >> day_offset)
|
||||
date_offset = ((lit('+')[_a = true] | lit('-')[_a = false])
|
||||
>> charset::no_case[wdays] >> day_offset)
|
||||
[bind(&osmoh::DateOffset::SetWDayOffset, _val, _1),
|
||||
bind(&osmoh::DateOffset::SetOffset, _val, _2),
|
||||
bind(&osmoh::DateOffset::SetWDayOffsetPositive, _val, _a)]
|
||||
| ((lit('+')[_a = true] | lit('-') [_a = false]) >> wdays)
|
||||
| ((lit('+')[_a = true] | lit('-') [_a = false]) >> charset::no_case[wdays])
|
||||
[bind(&osmoh::DateOffset::SetWDayOffset, _val, _1),
|
||||
bind(&osmoh::DateOffset::SetWDayOffsetPositive, _val, _a)]
|
||||
| day_offset [bind(&osmoh::DateOffset::SetOffset, _val, _1)]
|
||||
|
|
|
@ -52,13 +52,13 @@ struct wdays_ : qi::symbols<char, osmoh::EWeekday>
|
|||
}
|
||||
} wdays;
|
||||
|
||||
struct month_ : qi::symbols<wchar_t, osmoh::MonthDay::EMonth>
|
||||
struct month_ : qi::symbols<char, osmoh::MonthDay::EMonth>
|
||||
{
|
||||
month_()
|
||||
{
|
||||
add
|
||||
(L"jan", 1_M)(L"feb", 2_M)(L"mar", 3_M)(L"apr", 4_M)(L"may", 5_M)(L"jun", 6_M)
|
||||
(L"jul", 7_M)(L"aug", 8_M)(L"sep", 9_M)(L"oct", 10_M)(L"nov", 11_M)(L"dec", 12_M)
|
||||
("jan", 1_M)("feb", 2_M)("mar", 3_M)("apr", 4_M)("may", 5_M)("jun", 6_M)
|
||||
("jul", 7_M)("aug", 8_M)("sep", 9_M)("oct", 10_M)("nov", 11_M)("dec", 12_M)
|
||||
;
|
||||
}
|
||||
} month;
|
||||
|
|
|
@ -46,12 +46,13 @@ void PrintVector(std::ostream & ost, std::vector<T> const & v)
|
|||
}
|
||||
}
|
||||
|
||||
void PrintOffset(std::ostream & ost, int32_t const offset)
|
||||
void PrintOffset(std::ostream & ost, int32_t const offset, bool const space)
|
||||
{
|
||||
if (offset == 0)
|
||||
return;
|
||||
|
||||
ost << ' ';
|
||||
if (space)
|
||||
ost << ' ';
|
||||
if (offset > 0)
|
||||
ost << '+';
|
||||
ost << offset;
|
||||
|
@ -504,7 +505,7 @@ std::ostream & operator<<(std::ostream & ost, WeekdayRange const & range)
|
|||
{
|
||||
PrintVector(ost, range.GetNths());
|
||||
}
|
||||
PrintOffset(ost, range.GetOffset());
|
||||
PrintOffset(ost, range.GetOffset(), true);
|
||||
}
|
||||
return ost;
|
||||
}
|
||||
|
@ -543,7 +544,7 @@ std::ostream & operator<<(std::ostream & ost, Holiday const & holiday)
|
|||
else
|
||||
{
|
||||
ost << "SH";
|
||||
PrintOffset(ost, holiday.GetOffset());
|
||||
PrintOffset(ost, holiday.GetOffset(), true);
|
||||
}
|
||||
return ost;
|
||||
}
|
||||
|
@ -655,7 +656,7 @@ std::ostream & operator<<(std::ostream & ost, DateOffset const & offset)
|
|||
if (offset.HasWDayOffset())
|
||||
ost << (offset.IsWDayOffsetPositive() ? '+' : '-')
|
||||
<< offset.GetWDayOffset();
|
||||
PrintOffset(ost, offset.GetOffset());
|
||||
PrintOffset(ost, offset.GetOffset(), offset.HasWDayOffset());
|
||||
return ost;
|
||||
}
|
||||
|
||||
|
@ -804,7 +805,7 @@ std::ostream & operator<<(std::ostream & ost, MonthDay::EVariableDate const date
|
|||
std::ostream & operator<<(std::ostream & ost, MonthDay const md)
|
||||
{
|
||||
if (md.HasYear())
|
||||
ost << md.GetYear();
|
||||
ost << md.GetYear() << ' ';
|
||||
|
||||
if (md.IsVariable())
|
||||
ost << md.GetVariableDate();
|
||||
|
@ -815,10 +816,10 @@ std::ostream & operator<<(std::ostream & ost, MonthDay const md)
|
|||
if (md.HasDayNum())
|
||||
{
|
||||
ost << ' ';
|
||||
PrintPaddedNumber(ost, md.GetDayNum(), 0);
|
||||
PrintPaddedNumber(ost, md.GetDayNum(), 2);
|
||||
}
|
||||
if (md.HasOffset())
|
||||
ost << md.GetOffset();
|
||||
ost << ' ' << md.GetOffset();
|
||||
}
|
||||
return ost;
|
||||
}
|
||||
|
|
|
@ -53,17 +53,17 @@ bool ParseImp(std::string const & str, Context & context)
|
|||
|
||||
namespace osmoh
|
||||
{
|
||||
bool Parse(std::string const & str, osmoh::TTimespans & s)
|
||||
bool Parse(std::string const & str, TTimespans & s)
|
||||
{
|
||||
return ParseImp(str, s);
|
||||
}
|
||||
|
||||
bool Parse(std::string const & str, osmoh::Weekdays & w)
|
||||
bool Parse(std::string const & str, Weekdays & w)
|
||||
{
|
||||
return ParseImp(str, w);
|
||||
}
|
||||
|
||||
bool Parse(std::string const & str, osmoh::TMonthdayRanges & m)
|
||||
bool Parse(std::string const & str, TMonthdayRanges & m)
|
||||
{
|
||||
return ParseImp(str, m);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue