#include #include "boost/date_time/gregorian/gregorian.hpp" #include "boost/date_time/testfrmwk.hpp" int main() { using namespace boost::gregorian; //various constructors date d(2000,1,1); date d1(1900,1,1); date d2 = d; date d3(d2); check("Copy constructor", d3 == d2); date d4(2000,12,31); date d4a(2000,Dec,31); //d4a.print(std::cout); std::cout << std::endl; check("month_rep constructor", d4 == d4a); //std::cout << d3 << std::endl; //retrieval functions check("1900-01-01 day is 01", d1.day() == 1); check("1900-01-01 month is 01", d1.month() == 1); check("1900-01-01 year is 1900", d1.year() == 1900); check("1900-12-31 day is 31", d4.day() == 31); check("1900-12-31 month is 12", d4.month() == 12); check("1900-12-31 year is 2000", d4.year() == 2000); //operator< check("1900-01-01 is less than 2000-01-01", d1 < d2); check("2000-01-01 is NOT less than 2000-01-01", !(d1 < d1)); //operator<= check("2000-01-01 is less equal than 2000-01-01", d1 <= d1); //operator> check("2000-01-01 is greater than 1900-01-01", d2 > d1); check("2000-01-01 is NOT greater than 2000-01-01", !(d1 < d1)); //operator>= check("2000-01-01 is greater equal than 2000-01-01", d1 >= d1); //operator!= check("2000-01-01 is NOT equal to 1900-01-01", d2 != d1); //operator== check("2000-01-01 is equal 2000-01-01", d3 == d2); check("2000-01-01 is greater equal 2000-01-01", d3 >= d2); check("2000-01-01 is greater equal 2000-01-01", d3 <= d2); date::ymd_type ymd = d1.year_month_day(); check("ymd year", ymd.year == 1900); check("ymd month", ymd.month == 1); check("ymd day", ymd.day == 1); //The max function will not compile with Borland 5.5 //Complains about must specialize basic_data ??? // std::cout << "Max date is " << date::max() << std::endl; // //std::cout << "Max date is " << basic_date< date_limits >::max() << std::endl; // //std::cout << "Max date is " << date_limits::max() << std::endl; const date answers[] = {date(1900,Jan,1),date(1900,Jan,4),date(1900,Jan,7), date(1900,Jan,10),date(1900,Jan,13)}; date_duration off(3); date d5(1900,1,1); for (int i=0; i < 5; ++i) { //std::cout << d5 << " "; check(" addition ", d5 == answers[i]); d5 = d5 + off; } std::cout << std::endl; const date answers1[] = {date(2000,2,26),date(2000,2,28),date(2000,Mar,1)}; date d8(2000,Feb,26); for (int j=0; j < 3; ++j) { //std::cout << d8 << " "; check(" more addition ", d8 == answers1[j]); d8 = d8 + days(2); } // std::cout << std::endl; date d6(2000,2,28); date d7(2000,3,1); date_duration twoDays(2); date_duration negtwoDays(-2); date_duration zeroDays(0); check("2000-03-01 - 2000-02-28 == 2 days", twoDays == (d7-d6)); check("2000-02-28 - 2000-03-01 == - 2 days", negtwoDays == (d6-d7)); check("2000-02-28 - 2000-02-28 == 0 days", zeroDays == (d6-d6)); check("2000-02-28 + 2 days == 2000-03-01 ", d6 + twoDays == d7); check("2000-03-01 - 2 days == 2000-02-28 ", d7 - twoDays == d6); check("Add duration to date", date(1999,1,1) + date_duration(365) == date(2000,1,1)); check("Add zero days", date(1999,1,1) + zeroDays == date(1999,1,1)); //can't do this... //check("Add date to duration", date_duration(365) + date(1999,1,1) == date(2000,1,1)); try { date d9(2000, Jan, 32); check("day out of range", false); //never reached if working -- but stops compiler warnings :-) std::cout << "Oops: " << to_iso_string(d9) << std::endl; } catch (bad_day_of_month) { check("day out of range", true); } try { date d9(2000, Jan, 0); check("day out of range", false); //never reached if working -- but stops compiler warnings :-) std::cout << "Oops: " << to_iso_string(d9) << std::endl; } catch (bad_day_of_month) { check("day out of range", true); } //check out some special values check("check not a date - false", !d7.is_not_a_date()); check("check positive infinity - false", !d7.is_pos_infinity()); check("check negative infinity - false", !d7.is_neg_infinity()); date d10(neg_infin); check("check negative infinity - true", d10.is_infinity()); d10 = d10 + twoDays; //still neg infinity check("check negative infinity - true", d10.is_neg_infinity()); date d11(pos_infin); check("check positive infinity - true", d11.is_infinity()); d11 = d11 + twoDays; check("check positive infinity add - true", d11.is_pos_infinity()); date d12(not_a_date_time); check("check not a date", d12.is_not_a_date()); check("check infinity compare ", d10 != d11); check("check infinity compare ", d10 < d11); check("check infinity nad compare ", d12 != d11); date d13(max_date_time); check("check infinity - max compare ", d13 < d11); date d14(min_date_time); check("check infinity - min compare ", d14 > d10); // std::cout << to_simple_string(d14) << std::endl; date d15(1400,1,1); std::cout << d15.day_of_week().as_long_string() << std::endl; check("check infinity - min compare ", d10 < d15); printTestStats(); return 0; };