mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
184 lines
7.9 KiB
C++
184 lines
7.9 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright 2015 - 2018, Paul Beckingham, Federico Hernandez.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
//
|
|
// http://www.opensource.org/licenses/mit-license.php
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <cmake.h>
|
|
#include <Interval.h>
|
|
#include <test.h>
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
int main (int, char**)
|
|
{
|
|
UnitTest t (40);
|
|
|
|
// bool is_started () const;
|
|
// bool is_ended () const;
|
|
Interval i1;
|
|
t.is (i1.empty (), true, "Interval().empty -> true");
|
|
t.is (i1.range.is_started (), false, "Interval().is_started -> false");
|
|
t.is (i1.range.is_ended (), false, "Interval().is_ended -> false");
|
|
|
|
// void start (Datetime);
|
|
i1.range.start = Datetime ();
|
|
t.is (i1.empty (), false, "Interval().empty -> false");
|
|
t.is (i1.range.is_started (), true, "Interval(start=now).is_started -> true");
|
|
t.is (i1.range.is_ended (), false, "Interval(start=now).is_ended -> false");
|
|
|
|
// void end (Datetime);
|
|
i1.range.end = Datetime ();
|
|
t.is (i1.range.is_started (), true, "Interval(start=now,end=now).is_started -> true");
|
|
t.is (i1.range.is_ended (), true, "Interval(start=now,end=now).is_ended -> true");
|
|
|
|
// std::set <std::string> tags () const;
|
|
// void tag (const std::string&);
|
|
Interval i2;
|
|
t.ok (i2.tags () == std::set <std::string> {}, "Interval(tag=) -> {}");
|
|
i2.tag ("foo");
|
|
t.ok (i2.tags () == std::set <std::string> {"foo"}, "Interval(tag=foo) -> {foo}");
|
|
i2.tag ("foo"); // Duplicate
|
|
t.ok (i2.tags () == std::set <std::string> {"foo"}, "Interval(tag=foo,foo) -> {foo}");
|
|
i2.tag ("bar");
|
|
t.ok (i2.tags () == std::set <std::string> {"foo", "bar"}, "Interval(tag=foo,bar) -> {foo,bar}");
|
|
i2.tag ("baz");
|
|
t.ok (i2.tags () == std::set <std::string> {"foo", "bar", "baz"}, "Interval(tag=foo,bar,baz) -> {foo,bar,baz}");
|
|
i2.untag ("foo");
|
|
t.ok (i2.tags () == std::set <std::string> {"bar", "baz"}, "Interval(tag=bar,baz) -> {bar,baz}");
|
|
|
|
// std::string serialize () const;
|
|
Interval i3;
|
|
t.is (i3.serialize (), "inc", "Interval().serialize -> 'inc'");
|
|
i3.tag ("foo");
|
|
t.is (i3.serialize (), "inc # foo", "Interval().serialize -> 'inc # foo'");
|
|
i3.tag ("bar");
|
|
t.is (i3.serialize (), "inc # bar foo", "Interval().serialize -> 'inc # bar foo'");
|
|
i3.range.start = Datetime(1);
|
|
t.is (i3.serialize (), "inc 19700101T000001Z # bar foo", "Interval(Datetime(1)).serialize -> 'inc 19700101T000001Z # bar foo'");
|
|
i3.range.end = Datetime(2);
|
|
t.is (i3.serialize (), "inc 19700101T000001Z - 19700101T000002Z # bar foo", "Interval(Datetime(1)).serialize -> 'inc 19700101T000001Z - 19700101T000002Z # bar foo'");
|
|
i3.tag ("Trans-Europe Express");
|
|
t.is (i3.serialize (), "inc 19700101T000001Z - 19700101T000002Z # \"Trans-Europe Express\" bar foo", "Interval(Datetime(1)).serialize -> 'inc 19700101T000001Z - 19700101T000002Z # \"Trans-Europe Express\" bar foo'");
|
|
|
|
// Round-trip parsing.
|
|
Interval i4;
|
|
i4.initialize ( "inc");
|
|
t.is (i4.serialize (), "inc",
|
|
"Round-trip 'inc'");
|
|
|
|
Interval i5;
|
|
i5.initialize ( "inc # foo");
|
|
t.is (i5.serialize (), "inc # foo",
|
|
"Round-trip 'inc # foo'");
|
|
|
|
Interval i6;
|
|
i6.initialize ( "inc # bar foo");
|
|
t.is (i6.serialize (), "inc # bar foo",
|
|
"Round-trip 'inc # bar foo'");
|
|
|
|
Interval i7;
|
|
i7.initialize ( "inc 19700101T000001Z");
|
|
t.is (i7.serialize (), "inc 19700101T000001Z",
|
|
"Round-trip 'inc 19700101T000001Z'");
|
|
|
|
Interval i8;
|
|
i8.initialize ( "inc 19700101T000001Z - 19700101T000002Z");
|
|
t.is (i8.serialize (), "inc 19700101T000001Z - 19700101T000002Z",
|
|
"Round-trip 'inc 19700101T000001Z - 19700101T000002Z'");
|
|
|
|
Interval i9;
|
|
i9.initialize ( "inc 19700101T000001Z # bar foo");
|
|
t.is (i9.serialize (), "inc 19700101T000001Z # bar foo",
|
|
"Round-trip 'inc 19700101T000001Z # bar foo'");
|
|
|
|
Interval i10;
|
|
i10.initialize ( "inc 19700101T000001Z - 19700101T000002Z # bar foo");
|
|
t.is (i10.serialize (), "inc 19700101T000001Z - 19700101T000002Z # bar foo",
|
|
"Round-trip 'inc 19700101T000001Z - 19700101T000002Z # bar foo'");
|
|
|
|
Interval i11;
|
|
i11.initialize ( "inc 19700101T000001Z - 19700101T000002Z # \"Trans-Europe Express\" bar foo");
|
|
t.is (i11.serialize (), "inc 19700101T000001Z - 19700101T000002Z # \"Trans-Europe Express\" bar foo",
|
|
"Round-trip 'inc 19700101T000001Z - 19700101T000002Z # \"Trans-Europe Express\" bar foo'");
|
|
|
|
// std::string json () const;
|
|
Interval i12;
|
|
i12.initialize ( "inc");
|
|
t.is (i12.json (), "{}",
|
|
"JSON '{}'");
|
|
|
|
Interval i13;
|
|
i13.initialize ( "inc # foo");
|
|
t.is (i13.json (), "{\"tags\":[\"foo\"]}",
|
|
"JSON '{\"tags\":[\"foo\"]}'");
|
|
|
|
Interval i14;
|
|
i14.initialize ( "inc # bar foo");
|
|
t.is (i14.json (), "{\"tags\":[\"bar\",\"foo\"]}",
|
|
"JSON '{\"tags\":[\"bar\",\"foo\"]}'");
|
|
|
|
Interval i15;
|
|
i15.initialize ( "inc 19700101T000001Z");
|
|
t.is (i15.json (), "{\"start\":\"19700101T000001Z\"}",
|
|
"JSON '{\"start\":\"19700101T000001Z\"}'");
|
|
|
|
Interval i16;
|
|
i16.initialize ( "inc 19700101T000001Z - 19700101T000002Z");
|
|
t.is (i16.json (), "{\"start\":\"19700101T000001Z\",\"end\":\"19700101T000002Z\"}",
|
|
"JSON '{\"start\":\"19700101T000001Z\",\"end\":\"19700101T000002Z\"}'");
|
|
|
|
Interval i17;
|
|
i17.initialize ( "inc 19700101T000001Z # bar foo");
|
|
t.is (i17.json (), "{\"start\":\"19700101T000001Z\",\"tags\":[\"bar\",\"foo\"]}",
|
|
"JSON '{\"start\":\"19700101T000001Z\",\"tags\":[\"bar\",\"foo\"]}'");
|
|
|
|
Interval i18;
|
|
i18.initialize ( "inc 19700101T000001Z - 19700101T000002Z # bar foo");
|
|
t.is (i18.json (), "{\"start\":\"19700101T000001Z\",\"end\":\"19700101T000002Z\",\"tags\":[\"bar\",\"foo\"]}",
|
|
"JSON '{\"start\":\"19700101T000001Z\",\"end\":\"19700101T000002Z\",\"tags\":[\"bar\",\"foo\"]}'");
|
|
|
|
Interval i19;
|
|
i19.initialize ( "inc 19700101T000001Z - 19700101T000002Z # \"Trans-Europe Express\" bar foo");
|
|
t.is (i19.json (), "{\"start\":\"19700101T000001Z\",\"end\":\"19700101T000002Z\",\"tags\":[\"Trans-Europe Express\",\"bar\",\"foo\"]}",
|
|
"JSON '{\"start\":\"19700101T000001Z\",\"end\":\"19700101T000002Z\",\"tags\":[\"Trans-Europe Express\",\"bar\",\"foo\"]}'");
|
|
|
|
Interval i20;
|
|
i20.tag ("foo");
|
|
t.ok (i20.hasTag ("foo"), "hasTag positive");
|
|
t.notok (i20.hasTag ("bar"), "hasTag negative");
|
|
|
|
Interval i21;
|
|
i21.tag ("one-two");
|
|
i21.tag ("three");
|
|
t.is (i21.json (), "{\"tags\":[\"one-two\",\"three\"]}",
|
|
"JSON '{\"tags\":[\"one-two\",\"three\"]}'");
|
|
|
|
// make sure that underscores are escaped
|
|
Interval i22;
|
|
i22.tag ("foo_bar");
|
|
t.is (i22.serialize (), "inc # \"foo_bar\"", "Interval().serialize -> 'inc # \"foo_bar\"'");
|
|
|
|
return 0;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|