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   typedef time_base::dateorder dateorder;
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   bool test __attribute__((unused)) = true;
37 
38   // basic construction and sanity checks.
39   locale loc_c = locale::classic();
40   locale loc_hk = __gnu_test::try_named_locale("en_HK");
41   locale loc_fr = __gnu_test::try_named_locale("fr_FR@euro");
42   locale loc_de = __gnu_test::try_named_locale("de_DE");
43   VERIFY( loc_hk != loc_c );
44   VERIFY( loc_hk != loc_fr );
45   VERIFY( loc_hk != loc_de );
46   VERIFY( loc_de != loc_fr );
47 
48   // create "C" time objects
49   const tm time_bday = { 0, 0, 12, 4, 3, 71, 0, 93, 0 };
50 
51   // iter_type
52   // get_monthname(iter_type, iter_type, ios_base&,
53   //               ios_base::iostate&, tm*) const
54 
55   // sanity checks for "C" locale
56   iterator_type end;
57   wistringstream iss;
58   iss.imbue(loc_c);
59   const time_get<wchar_t>& tim_get = use_facet<time_get<wchar_t> >(iss.getloc());
60 
61   iss.str(L"April");
62   iterator_type is_it01(iss);
63   tm time01;
64   errorstate = good;
65   tim_get.get_monthname(is_it01, end, iss, errorstate, &time01);
66   VERIFY( time01.tm_mon == time_bday.tm_mon );
67   VERIFY( errorstate == ios_base::eofbit );
68 
69   iss.str(L"Apr");
70   iterator_type is_it02(iss);
71   tm time02;
72   errorstate = good;
73   tim_get.get_monthname(is_it02, end, iss, errorstate, &time02);
74   VERIFY( time02.tm_mon == time_bday.tm_mon );
75   VERIFY( errorstate == ios_base::eofbit );
76 
77   iss.str(L"Apr ");
78   iterator_type is_it03(iss);
79   tm time03;
80   errorstate = good;
81   tim_get.get_monthname(is_it03, end, iss, errorstate, &time03);
82   VERIFY( time03.tm_mon == time_bday.tm_mon );
83   VERIFY( errorstate == good );
84   VERIFY( *is_it03 == L' ' );
85 
86   iss.str(L"Aar");
87   iterator_type is_it04(iss);
88   tm time04;
89   time04.tm_mon = 5;
90   errorstate = good;
91   tim_get.get_monthname(is_it04, end, iss, errorstate, &time04);
92   VERIFY( time04.tm_mon == 5 );
93   VERIFY( *is_it04 == L'a' );
94   VERIFY( errorstate == ios_base::failbit );
95 
96   iss.str(L"December ");
97   iterator_type is_it05(iss);
98   tm time05;
99   errorstate = good;
100   tim_get.get_monthname(is_it05, end, iss, errorstate, &time05);
101   VERIFY( time05.tm_mon == 11 );
102   VERIFY( errorstate == good );
103   VERIFY( *is_it05 == L' ' );
104 
105   iss.str(L"Decelember ");
106   iterator_type is_it06(iss);
107   tm time06;
108   time06.tm_mon = 4;
109   errorstate = good;
110   tim_get.get_monthname(is_it06, end, iss, errorstate, &time06);
111   VERIFY( time06.tm_mon == 4 );
112   VERIFY( errorstate == ios_base::failbit );
113   VERIFY( *is_it05 == L'l' );
114 }
115 
116 int main()
117 {
118   test01();
119   return 0;
120 }
121