f44ade4f69e1a1e64815cfecff5adafab29cd3f1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_year / wchar_t / 1.cc
1 // 2001-09-21 Benjamin Kosnik  <bkoz@redhat.com>
2
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.
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   // basic construction
34   locale loc_c = locale::classic();
35
36   const wstring empty;
37
38   // create an ostream-derived object, cache the time_get facet
39   iterator_type end;
40
41   wistringstream iss;
42   iss.imbue(loc_c);
43   const time_get<wchar_t>& tim_get = use_facet<time_get<wchar_t> >(iss.getloc()); 
44
45   const ios_base::iostate good = ios_base::goodbit;
46   ios_base::iostate errorstate = good;
47
48    // create "C" time objects
49   const tm time_bday = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
50
51   // iter_type 
52   // get_year(iter_type, iter_type, ios_base&, ios_base::iostate&, tm*) const
53
54   // sanity checks for "C" locale
55   iss.str(L"1971");
56   iterator_type is_it01(iss);
57   tm time01;
58   errorstate = good;
59   tim_get.get_year(is_it01, end, iss, errorstate, &time01);
60   VERIFY( time01.tm_year == time_bday.tm_year );
61   VERIFY( errorstate == ios_base::eofbit );
62
63   iss.str(L"1971 ");
64   iterator_type is_it02(iss);
65   tm time02;
66   errorstate = good;
67   iterator_type ret02 = tim_get.get_year(is_it02, end, iss, errorstate,
68                                          &time02);
69   VERIFY( time02.tm_year == time_bday.tm_year );
70   VERIFY( errorstate == good );
71   VERIFY( *ret02 == L' ' );
72
73   iss.str(L"197d1 ");
74   iterator_type is_it03(iss);
75   tm time03;
76   time03.tm_year = 3;
77   errorstate = good;
78   iterator_type ret03 = tim_get.get_year(is_it03, end, iss, errorstate,
79                                          &time03);
80   VERIFY( time03.tm_year == 3 );
81   VERIFY( errorstate == ios_base::failbit );
82   VERIFY( *ret03 == L'd' );
83
84   iss.str(L"71d71");
85   iterator_type is_it04(iss);
86   tm time04;
87   errorstate = good;
88   iterator_type ret04 = tim_get.get_year(is_it04, end, iss, errorstate,
89                                          &time04);
90   VERIFY( time04.tm_year == time_bday.tm_year );
91   VERIFY( errorstate == good );
92   VERIFY( *ret04 == L'd' );
93
94   iss.str(L"71");
95   iterator_type is_it05(iss);
96   tm time05;
97   errorstate = good;
98   tim_get.get_year(is_it05, end, iss, errorstate, &time05);
99   VERIFY( time05.tm_year == time_bday.tm_year );
100   VERIFY( errorstate == ios_base::eofbit );
101 }
102
103 int main()
104 {
105   test01();
106   return 0;
107 }