1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/* Copyright (c) 2002,2003,2005 CrystalClear Software, Inc.
* Use, modification and distribution is subject to the
* Boost Software License, Version 1.0. (See accompanying
* file LICENSE-1.0 or http://www.boost.org/LICENSE-1.0)
* Author: Jeff Garland, Bart Garst
*/
#include "boost/date_time/wrapping_int.hpp"
//#define BOOST_INCLUDE_MAIN
//#include <boost/test/test_tools.hpp>
#include "boost/date_time/testfrmwk.hpp"
#include "boost/cstdint.hpp"
#include <iostream>
int
main()
// int
// test_main(int, char*[])
{
using namespace boost::date_time;
wrapping_int<int, 3600> wi(3599);
check("construction/conversion", wi == 3599);
check("add with wrap", wi.add(1) == 1);
check("added value ok", wi == 0);
check("add with 2 wraps", wi.add(7201) == 2);
check("added value ok", wi == 1);
check("add with 3 wraps", wi.add(10800) == 3);
check("added value ok", wi == 1);
check("subtract no wrap", wi.subtract(1) == 0);
check("subtract val ok", wi == 0);
check("subtract no wrap", wi.subtract(3601) == 2);
check("subtract val ok", wi == 3599);
check("add again", (wi.add(2) == 1) && (wi == 1));
check("subtract again", (wi.subtract(2) == 1) && (wi == 3599));
check("add again", (wi.add(2) == 1) && (wi == 1));
check("subtract again", (wi.subtract(3600) == 1) && (wi == 1));
check("subtract again", (wi.subtract(3599) == 1) && (wi == 2));
check("subtract again", (wi.subtract(1) == 0) && (wi == 1));
std::cout << wi << std::endl;
wrapping_int<short, 60> wi2(0);
check("add with wrap - return", wi2.add(121) == 2);
check("add with wrap - value", wi2 == 1);
wrapping_int<short, 60> wi3(-5);
check("signed int - add return", wi3.add(5) == 0);
check("signed int - value", wi3 == 0);
{ // subtracting negative values
wrapping_int<short, 10> wi3(5);
check("subtract negative value to cause wrap",
(wi3.subtract(-8) == -1 && wi3 == 3));
check("reset", wi3.add(2) == 0 && wi3 ==5);
check("add negative value to cause wrap",
(wi3.add(-8) == -1 && wi3 == 7));
}
wrapping_int2<short, 1, 5> wi4(1);
check("construct", wi4 == 1);
check("add up to wrap value", (wi4.add(4) == 0 && wi4 == 5));
check("add over the wrap value", (wi4.add(1) == 1 && wi4 == 1));
check("add over the wrap value X 2", (wi4.add(10) == 2 && wi4 == 1));
check("add over the wrap value X 3", (wi4.add(15) == 3 && wi4 == 1));
wrapping_int2<short, 1, 12> wi5(12);
check("construct", wi5 == 12);
check("add over the wrap value", (wi5.add(1) == 1 && wi5 == 1));
check("subtract of the wrap value", (wi5.subtract(1) == -1 && wi5 == 12));
check("subtract of the wrap value", (wi5.subtract(13) == -1 && wi5 == 11));
// min_values other than 1
wrapping_int2<short, 2, 6> wi6(2);
check("construct", wi6 == 2);
check("add up to wrap value", (wi6.add(4) == 0 && wi6 == 6));
check("add over the wrap value", (wi6.add(1) == 1 && wi6 == 2));
check("add over the wrap value X 2", wi6.add(11) == 2);
check("add over the wrap value X 2", wi6 == 3);
check("sub down to wrap value", wi6.subtract(1) == 0 && wi6 == 2);
check("sub under the wrap value", wi6.subtract(1) == -1 && wi6 == 6);
check("sub under the wrap value X 2", wi6.subtract(11) == -2 && wi6 == 5);
//std::cout << wi6 << std::endl;
// adding & subtracting negative values
wrapping_int2<short, 1, 12> wi7(6);
wrapping_int2<short, -5, 5> wi8(0);
check("add negative value", (wi7.add(-2) == 0 && wi7 == 4));
check("add negative value", (wi8.add(-2) == 0 && wi8 == -2));
check("add negative value to cause single wrap",
(wi7.add(-6) == -1 && wi7 == 10));
check("add negative value to cause single wrap",
(wi8.add(-5) == -1 && wi8 == 4));
check("add negative value to cause multiple wrap",
(wi7.add(-22) == -2 && wi7 == 12));
check("add negative value to cause multiple wrap",
(wi8.add(-22) == -2 && wi8 == 4));
// reset values to mid range
wi7.subtract(6);
check("reset", wi7 == 6);
wi8.subtract(4);
check("reset", wi8 == 0);
check("subtract negative value", (wi7.subtract(-2) == 0 && wi7 == 8));
check("subtract negative value", (wi8.subtract(-2) == 0 && wi8 == 2));
check("subtract negative value to cause single wrap",
(wi7.subtract(-6) == 1 && wi7 == 2));
check("subtract negative value to cause single wrap",
(wi8.subtract(-5) == 1 && wi8 == -4));
check("subtract negative value to cause multiple wrap",
(wi7.subtract(-23) == 2 && wi7 == 1));
check("subtract negative value to cause multiple wrap",
(wi8.subtract(-22) == 2 && wi8 == -4));
// #ifdef BOOST_HAS_LONG_LONG
// wrapping_int<boost::int64_t, 86400*100000LL> wi4(0);
// check("construction/conversion", wi4 == 0);
// boost::int64_t off2 = 372300000;
// boost::int64_t wrap = 86400LL*100000LL;
// boost::int64_t wrap2 = 86400000000;
// wrapping_int<boost::int64_t,86400000000LL> wi5((3600*1 + 60*2 + 3)*100000);
// std::cout << wi5 << std::endl;
// boost::int64_t over = wi4.add(off2);
// std::cout << over << std::endl;
// std::cout << wrap << std::endl;
// std::cout << wrap2 << std::endl;
// // check("construction/conversion", wi4 == 0);
// #endif
// wrapping_int<int, 60> wi(121);
// check("construction/conversion", wi == 121);
// check("add with wrap", wi.add(1) == 1);
return printTestStats();
}
|