OSDN Git Service

2003-09-23 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / num_get / get / wchar_t / 1.cc
1 // 2001-11-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.2.1.1  num_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 istreambuf_iterator<wchar_t> iterator_type;
31
32   bool test __attribute__((unused)) = true;
33
34   // basic construction
35   locale loc_c = locale::classic();
36   locale loc_hk = __gnu_test::try_named_locale("en_HK");
37   locale loc_fr = __gnu_test::try_named_locale("fr_FR@euro");
38   locale loc_de = __gnu_test::try_named_locale("de_DE");
39   VERIFY( loc_c != loc_de );
40   VERIFY( loc_hk != loc_fr );
41   VERIFY( loc_hk != loc_de );
42   VERIFY( loc_de != loc_fr );
43
44   // sanity check the data is correct.
45   const wstring empty;
46
47   bool b1 = true;
48   bool b0 = false;
49   unsigned long ul1 = 1294967294;
50   unsigned long ul2 = 0;
51   unsigned long ul;
52   double d1 =  1.02345e+308;
53   double d2 = 3.15e-308;
54   double d;
55   long double ld1 = 6.630025e+4;
56   long double ld;
57   void* v;
58   const void* cv = &ul2;
59
60   // cache the num_get facet
61   wistringstream iss;
62   iss.imbue(loc_de);
63   const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc()); 
64   const ios_base::iostate goodbit = ios_base::goodbit;
65   const ios_base::iostate eofbit = ios_base::eofbit;
66   ios_base::iostate err = ios_base::goodbit;
67
68   // bool, simple
69   iss.str(L"1");
70   iterator_type os_it00 = iss.rdbuf();
71   iterator_type os_it01 = ng.get(os_it00, 0, iss, err, b1);
72   VERIFY( b1 == true );
73   VERIFY( err & ios_base::eofbit );
74
75   iss.str(L"0");
76   err = goodbit;
77   ng.get(iss.rdbuf(), 0, iss, err, b0);
78   VERIFY( b0 == false );
79   VERIFY( err & eofbit );
80
81   // ... and one that does
82   iss.str(L"1.294.967.294+++++++");
83   iss.clear();
84   iss.width(20);
85   iss.setf(ios_base::left, ios_base::adjustfield);
86   err = goodbit;
87   ng.get(iss.rdbuf(), 0, iss, err, ul);
88   VERIFY( ul == ul1 );
89   VERIFY( err == goodbit );
90
91   iss.str(L"+1,02345e+308");
92   iss.clear();
93   iss.width(20);
94   iss.setf(ios_base::right, ios_base::adjustfield);
95   iss.setf(ios_base::scientific, ios_base::floatfield);
96   err = goodbit;
97   ng.get(iss.rdbuf(), 0, iss, err, d);
98   VERIFY( d == d1 );
99   VERIFY( err == eofbit );
100
101   iss.str(L"3,15E-308 ");
102   iss.clear();
103   iss.width(20);
104   iss.precision(10);
105   iss.setf(ios_base::right, ios_base::adjustfield);
106   iss.setf(ios_base::scientific, ios_base::floatfield);
107   iss.setf(ios_base::uppercase);
108   err = goodbit;
109   ng.get(iss.rdbuf(), 0, iss, err, d);
110   VERIFY( d == d2 );
111   VERIFY( err == goodbit );
112
113   // long double
114   iss.str(L"6,630025e+4");
115   iss.clear();
116   err = goodbit;
117   ng.get(iss.rdbuf(), 0, iss, err, ld);
118   VERIFY( ld == ld1 );
119   VERIFY( err == eofbit );
120
121   iss.str(L"0 ");
122   iss.clear();
123   iss.precision(0);
124   iss.setf(ios_base::fixed, ios_base::floatfield);
125   err = goodbit;
126   ng.get(iss.rdbuf(), 0, iss, err, ld);
127   VERIFY( ld == 0 );
128   VERIFY( err == goodbit );
129
130   // const void
131   iss.str(L"0xbffff74c,");
132   iss.clear();
133   err = goodbit;
134   ng.get(iss.rdbuf(), 0, iss, err, v);
135   VERIFY( &v != &cv );
136   VERIFY( err == goodbit );
137
138 #ifdef _GLIBCXX_USE_LONG_LONG
139   long long ll1 = 9223372036854775807LL;
140   long long ll;
141
142   iss.str(L"9.223.372.036.854.775.807");
143   iss.clear();
144   err = goodbit;
145   ng.get(iss.rdbuf(), 0, iss, err, ll);
146   VERIFY( ll == ll1 );
147   VERIFY( err == eofbit );
148 #endif
149 }
150
151 int main()
152 {
153   test01();
154   return 0;
155 }
156
157
158 // Kathleen Hannah, humanitarian, woman, art-thief