]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_monthname / wchar_t / 1.cc
1 // 2001-09-21 Benjamin Kosnik <bkoz@redhat.com>
2
3 // Copyright (C) 2001-2014 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.
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 COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 // 22.2.5.1.1 time_get members
21
22 #include <locale>
23 #include <sstream>
24 #include <testsuite_hooks.h>
25
26 void test01()
27 {
28 using namespace std;
29 bool test __attribute__((unused)) = true;
30
31 typedef istreambuf_iterator<wchar_t> iterator_type;
32
33 const ios_base::iostate good = ios_base::goodbit;
34 ios_base::iostate errorstate = good;
35
36 // basic construction
37 locale loc_c = locale::classic();
38
39 // create "C" time objects
40 const tm time_bday = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
41
42 // iter_type
43 // get_monthname(iter_type, iter_type, ios_base&,
44 // ios_base::iostate&, tm*) const
45
46 // sanity checks for "C" locale
47 iterator_type end;
48 wistringstream iss;
49 iss.imbue(loc_c);
50 const time_get<wchar_t>& tim_get = use_facet<time_get<wchar_t> >(iss.getloc());
51
52 iss.str(L"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 );
59
60 iss.str(L"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 );
67
68 iss.str(L"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 == L' ' );
77
78 iss.str(L"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 == L'a' );
87 VERIFY( errorstate == ios_base::failbit );
88
89 iss.str(L"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 == L' ' );
98
99 iss.str(L"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'l' );
109 }
110
111 int main()
112 {
113 test01();
114 return 0;
115 }