Files
date_time/test/gregorian/testparse_date.cpp
Björn Karlsson d095bd24c1 Added copyright statement and untabified
[SVN r17200]
2003-02-04 14:25:27 +00:00

132 lines
3.7 KiB
C++

/* Copyright (c) 2001 CrystalClear Software, Inc.
* Disclaimer & Full Copyright at end of file
* Author: Jeff Garland
*/
#include "boost/date_time/gregorian/gregorian.hpp"
#include "boost/date_time/testfrmwk.hpp"
#include <iostream>
#include <string>
int
main()
{
// Examples from 8601
// Full date
// Extended CCYY-MM-DD
std::string s("2001-10-5");
//This one aborts gcc2.95.3 on mandrake 8.1 linux with
//bad lexical cast?
try {
boost::gregorian::date d(boost::gregorian::from_string(s));
std::cout << "here" << std::endl;
check("check year", d.year() == 2001);
check("check month", d.month() == 10);
check("check day", d.day() == 5);
}
catch(std::exception& e) {
check("parse 2001-10-5", false);
std::cout << "Fail: " << e.what() << std::endl;
}
try {
std::string s2("2001-12-41"); //oops should be 31
boost::gregorian::date bad_day(boost::gregorian::from_string(s2)); //won't construct
check("check bad day", false);
//The line below won't execute, but make the compiler think
//we are using bad day....
std::cout << "Oh oh, this shouldn't be reached: "
<< boost::gregorian::to_iso_string(bad_day) << std::endl;
}
catch(boost::gregorian::bad_day_of_month) { //expected
check("check bad day", true);
}
catch(std::exception& e) {
//oops wrong exception
check("check bad day", false);
std::cout << "Fail: " << e.what() << std::endl;
}
try {
std::string s2("2001-14-1"); //oops should be <= 12
boost::gregorian::date bad_month(boost::date_time::parse_date<boost::gregorian::date>(s2));
check("check bad month", false); //fail the test
//The line below won't execute, but make the compiler think
//we are using bad day....
std::cout << "Oh oh, this shouldn't be reached: "
<< boost::gregorian::to_iso_string(bad_month) << std::endl;
}
catch(boost::gregorian::bad_month) { //expected
check("check bad month", true);
}
catch(std::exception& e) {
//oops wrong exception
check("check bad month", false);
std::cout << "Fail: " << e.what() << std::endl;
}
//This one aborts gcc2.95.3 on mandrake 8.1 linux with
//bad lexical cast?
try {
//Example of ISO Standard -- CCYYMMDD
using namespace boost::gregorian;
std::string ud("20011009"); //2001-Oct-09
date d1(boost::gregorian::from_undelimited_string(ud));
// std::cout << to_string(d1) << std::endl;
check("undelimited date string", d1 == date(2001,Oct,9));
std::string ad("2001/10/09");
date d2(boost::date_time::parse_date<date>(ad));
check("check american date", d2 == date(2001,Oct,9));
}
catch(std::exception& e) {
check("more parsing", false);
std::cout << "Fail: " << e.what() << std::endl;
}
// std::string s1("2001-Oct-5");
// gregorian::date d1(parse_date<gregorian::date>(s1));
// check("check month", d1.month() == 10);
//Calendar Week + Day Number
// CCYYWwwDThhmmss
// 1986W105T
// week == 10 day=5
// see page 5
//Duration rep
//CCYYMMDDThhmmss/PnYnMnDTnHnMnS
return printTestStats();
}
/*
* Copyright (c) 2001
* CrystalClear Software, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. CrystalClear Software makes no
* representations about the suitability of this software for any
* purpose. It is provided as is without express or implied warranty.
*
*
* Author: Jeff Garland (jeff@CrystalClearSoftware.com)
*
*/