OSDN Git Service

2010-06-07 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / num_get / get / wchar_t / 1.cc
1 // { dg-require-namedlocale "" }
2
3 // 2001-11-21 Benjamin Kosnik  <bkoz@redhat.com>
4
5 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010
6 // Free Software Foundation
7 //
8 // This file is part of the GNU ISO C++ Library.  This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 3, or (at your option)
12 // any later version.
13
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING3.  If not see
21 // <http://www.gnu.org/licenses/>.
22
23 // 22.2.2.1.1  num_get members
24
25 #include <locale>
26 #include <sstream>
27 #include <testsuite_hooks.h>
28
29 void test01()
30 {
31   using namespace std;
32   typedef istreambuf_iterator<wchar_t> iterator_type;
33
34   bool test __attribute__((unused)) = true;
35
36   // basic construction
37   locale loc_c = locale::classic();
38   locale loc_de = locale("de_DE");
39   VERIFY( loc_c != loc_de );
40
41   // sanity check the data is correct.
42   const wstring empty;
43
44   bool b1 = true;
45   bool b0 = false;
46   unsigned long ul1 = 1294967294;
47   unsigned long ul;
48   double d1 =  1.02345e+308;
49   double d2 = 3.15e-308;
50   double d;
51   long double ld1 = 6.630025e+4;
52   long double ld;
53   void* v = 0;
54
55   // cache the num_get facet
56   wistringstream iss;
57   iss.imbue(loc_de);
58   const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc()); 
59   const ios_base::iostate goodbit = ios_base::goodbit;
60   const ios_base::iostate eofbit = ios_base::eofbit;
61   ios_base::iostate err = ios_base::goodbit;
62
63   // bool, simple
64   iss.str(L"1");
65   iterator_type os_it00 = iss.rdbuf();
66   ng.get(os_it00, 0, iss, err, b1);
67   VERIFY( b1 == true );
68   VERIFY( err & ios_base::eofbit );
69
70   iss.str(L"0");
71   err = goodbit;
72   ng.get(iss.rdbuf(), 0, iss, err, b0);
73   VERIFY( b0 == false );
74   VERIFY( err & eofbit );
75
76   // ... and one that does
77   iss.str(L"1.294.967.294+++++++");
78   iss.clear();
79   iss.width(20);
80   iss.setf(ios_base::left, ios_base::adjustfield);
81   err = goodbit;
82   ng.get(iss.rdbuf(), 0, iss, err, ul);
83   VERIFY( ul == ul1 );
84   VERIFY( err == goodbit );
85
86   iss.str(L"+1,02345e+308");
87   iss.clear();
88   iss.width(20);
89   iss.setf(ios_base::right, ios_base::adjustfield);
90   iss.setf(ios_base::scientific, ios_base::floatfield);
91   err = goodbit;
92   ng.get(iss.rdbuf(), 0, iss, err, d);
93   VERIFY( d == d1 );
94   VERIFY( err == eofbit );
95
96   iss.str(L"3,15E-308 ");
97   iss.clear();
98   iss.width(20);
99   iss.precision(10);
100   iss.setf(ios_base::right, ios_base::adjustfield);
101   iss.setf(ios_base::scientific, ios_base::floatfield);
102   iss.setf(ios_base::uppercase);
103   err = goodbit;
104   ng.get(iss.rdbuf(), 0, iss, err, d);
105   VERIFY( d == d2 );
106   VERIFY( err == goodbit );
107
108   // long double
109   iss.str(L"6,630025e+4");
110   iss.clear();
111   err = goodbit;
112   ng.get(iss.rdbuf(), 0, iss, err, ld);
113   VERIFY( ld == ld1 );
114   VERIFY( err == eofbit );
115
116   iss.str(L"0 ");
117   iss.clear();
118   iss.precision(0);
119   iss.setf(ios_base::fixed, ios_base::floatfield);
120   err = goodbit;
121   ng.get(iss.rdbuf(), 0, iss, err, ld);
122   VERIFY( ld == 0 );
123   VERIFY( err == goodbit );
124
125   // void*
126   iss.str(L"0xbffff74c,");
127   iss.clear();
128   err = goodbit;
129   ng.get(iss.rdbuf(), 0, iss, err, v);
130   VERIFY( v != 0 );
131   VERIFY( err == goodbit );
132
133 #ifdef _GLIBCXX_USE_LONG_LONG
134   long long ll1 = 9223372036854775807LL;
135   long long ll;
136
137   iss.str(L"9.223.372.036.854.775.807");
138   iss.clear();
139   err = goodbit;
140   ng.get(iss.rdbuf(), 0, iss, err, ll);
141   VERIFY( ll == ll1 );
142   VERIFY( err == eofbit );
143 #endif
144 }
145
146 int main()
147 {
148   test01();
149   return 0;
150 }
151
152
153 // Kathleen Hannah, humanitarian, woman, art-thief