Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_monthname / char / 1.cc
blob204bd9ca2c89bf59b158ae2208bf6000c13df00f
1 // 2001-09-21 Benjamin Kosnik <bkoz@redhat.com>
3 // Copyright (C) 2001-2013 Free Software Foundation, Inc.
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 3, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // 22.2.5.1.1 time_get members
22 #include <locale>
23 #include <sstream>
24 #include <testsuite_hooks.h>
26 void test01()
28 using namespace std;
29 bool test __attribute__((unused)) = true;
31 typedef istreambuf_iterator<char> iterator_type;
33 const ios_base::iostate good = ios_base::goodbit;
34 ios_base::iostate errorstate = good;
36 // basic construction
37 locale loc_c = locale::classic();
39 // create "C" time objects
40 const tm time_bday = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
42 // iter_type
43 // get_monthname(iter_type, iter_type, ios_base&,
44 // ios_base::iostate&, tm*) const
46 // sanity checks for "C" locale
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());
52 iss.str("April");
53 iterator_type is_it01(iss);
54 tm time01;
55 errorstate = good;
56 tim_get.get_monthname(is_it01, end, iss, errorstate, &time01);
57 VERIFY( time01.tm_mon == time_bday.tm_mon );
58 VERIFY( errorstate == ios_base::eofbit );
60 iss.str("Apr");
61 iterator_type is_it02(iss);
62 tm time02;
63 errorstate = good;
64 tim_get.get_monthname(is_it02, end, iss, errorstate, &time02);
65 VERIFY( time02.tm_mon == time_bday.tm_mon );
66 VERIFY( errorstate == ios_base::eofbit );
68 iss.str("Apr ");
69 iterator_type is_it03(iss);
70 tm time03;
71 errorstate = good;
72 iterator_type ret03 = tim_get.get_monthname(is_it03, end, iss, errorstate,
73 &time03);
74 VERIFY( time03.tm_mon == time_bday.tm_mon );
75 VERIFY( errorstate == good );
76 VERIFY( *ret03 == ' ' );
78 iss.str("Aar");
79 iterator_type is_it04(iss);
80 tm time04;
81 time04.tm_mon = 5;
82 errorstate = good;
83 iterator_type ret04 = tim_get.get_monthname(is_it04, end, iss, errorstate,
84 &time04);
85 VERIFY( time04.tm_mon == 5 );
86 VERIFY( *ret04 == 'a' );
87 VERIFY( errorstate == ios_base::failbit );
89 iss.str("December ");
90 iterator_type is_it05(iss);
91 tm time05;
92 errorstate = good;
93 iterator_type ret05 = tim_get.get_monthname(is_it05, end, iss, errorstate,
94 &time05);
95 VERIFY( time05.tm_mon == 11 );
96 VERIFY( errorstate == good );
97 VERIFY( *ret05 == ' ' );
99 iss.str("Decelember ");
100 iterator_type is_it06(iss);
101 tm time06;
102 time06.tm_mon = 4;
103 errorstate = good;
104 iterator_type ret06 = tim_get.get_monthname(is_it06, end, iss, errorstate,
105 &time06);
106 VERIFY( time06.tm_mon == 4 );
107 VERIFY( errorstate == ios_base::failbit );
108 VERIFY( *ret06 == 'l' );
111 int main()
113 test01();
114 return 0;