OSDN Git Service

2003-09-23 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_time / char / 1.cc
1 // 2001-09-21 Benjamin Kosnik  <bkoz@redhat.com>
2
3 // Copyright (C) 2001, 2002, 2003 Free Software Foundation
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // 22.2.5.1.1 time_get members
22
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
26
27 void test01()
28 {
29   using namespace std;
30   bool test __attribute__((unused)) = true;
31   typedef time_base::dateorder dateorder;
32   typedef istreambuf_iterator<char> iterator_type;
33
34   // basic construction and sanity checks.
35   locale loc_c = locale::classic();
36   locale loc_hk = __gnu_test::try_named_locale("en_HK");
37   locale loc_fr = __gnu_test::try_named_locale("fr_FR@euro");
38   locale loc_de = __gnu_test::try_named_locale("de_DE");
39   VERIFY( loc_hk != loc_c );
40   VERIFY( loc_hk != loc_fr );
41   VERIFY( loc_hk != loc_de );
42   VERIFY( loc_de != loc_fr );
43
44   const string empty;
45
46   // create an ostream-derived object, cache the time_get facet
47   iterator_type end;
48   istringstream iss;
49   iss.imbue(loc_c);
50   const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc()); 
51
52   const ios_base::iostate good = ios_base::goodbit;
53   ios_base::iostate errorstate = good;
54
55   // create "C" time objects
56   const tm time_bday = { 0, 0, 12, 4, 3, 71, 0, 93, 0 };
57
58   // 2
59   // iter_type 
60   // get_time(iter_type, iter_type, ios_base&, ios_base::iostate&, tm*) const
61
62   // sanity checks for "C" locale
63   iss.str("12:00:00");
64   iterator_type is_it01(iss);
65   tm time01;
66   errorstate = good;
67   tim_get.get_time(is_it01, end, iss, errorstate, &time01);
68   VERIFY( time01.tm_sec == time_bday.tm_sec );
69   VERIFY( time01.tm_min == time_bday.tm_min );
70   VERIFY( time01.tm_hour == time_bday.tm_hour );
71   VERIFY( errorstate == ios_base::eofbit );
72
73   iss.str("12:00:00 ");
74   iterator_type is_it02(iss);
75   tm time02;
76   errorstate = good;
77   tim_get.get_time(is_it02, end, iss, errorstate, &time02);
78   VERIFY( time01.tm_sec == time_bday.tm_sec );
79   VERIFY( time01.tm_min == time_bday.tm_min );
80   VERIFY( time01.tm_hour == time_bday.tm_hour );
81   VERIFY( errorstate == good );
82
83   iss.str("12:61:00 ");
84   iterator_type is_it03(iss);
85   tm time03;
86   errorstate = good;
87   tim_get.get_time(is_it03, end, iss, errorstate, &time03);
88   VERIFY( time01.tm_hour == time_bday.tm_hour );
89   VERIFY( errorstate == ios_base::failbit );
90
91   iss.str("12:a:00 ");
92   iterator_type is_it04(iss);
93   tm time04;
94   errorstate = good;
95   tim_get.get_time(is_it04, end, iss, errorstate, &time04);
96   VERIFY( time01.tm_hour == time_bday.tm_hour );
97   VERIFY( *is_it04 == 'a');
98   VERIFY( errorstate == ios_base::failbit );
99
100   // inspection of named locales, de_DE
101   iss.imbue(loc_de);
102   iss.str("12:00:00");
103   iterator_type is_it10(iss);
104   tm time10;
105   errorstate = good;
106   tim_get.get_time(is_it10, end, iss, errorstate, &time10);
107   VERIFY( time10.tm_sec == time_bday.tm_sec );
108   VERIFY( time10.tm_min == time_bday.tm_min );
109   VERIFY( time10.tm_hour == time_bday.tm_hour );
110   VERIFY( errorstate == ios_base::eofbit );
111 }
112
113 int main()
114 {
115   test01();
116   return 0;
117 }