a89507234552d375bcd7626abe93c6a734e3019f
[gcc.git] / libstdc++-v3 / testsuite / 22_locale / money_get / get / wchar_t / 1.cc
1 // 2001-09-12 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.6.1.1 money_get members
22
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
26
27 // test wstring version
28 void test01()
29 {
30 using namespace std;
31 typedef money_base::part part;
32 typedef money_base::pattern pattern;
33 typedef istreambuf_iterator<wchar_t> iterator_type;
34
35 bool test __attribute__((unused)) = true;
36
37 // basic construction
38 locale loc_c = locale::classic();
39 locale loc_hk = __gnu_test::try_named_locale("en_HK");
40 locale loc_fr = __gnu_test::try_named_locale("fr_FR@euro");
41 locale loc_de = __gnu_test::try_named_locale("de_DE@euro");
42 VERIFY( loc_c != loc_de );
43 VERIFY( loc_hk != loc_fr );
44 VERIFY( loc_hk != loc_de );
45 VERIFY( loc_de != loc_fr );
46
47 // cache the moneypunct facets
48 typedef moneypunct<wchar_t, true> __money_true;
49 typedef moneypunct<wchar_t, false> __money_false;
50
51 // sanity check the data is correct.
52 const wstring empty;
53
54 // total EPA budget FY 2002
55 const wstring digits1(L"720000000000");
56
57 // est. cost, national missile "defense", expressed as a loss in USD 2001
58 const wstring digits2(L"-10000000000000");
59
60 // not valid input
61 const wstring digits3(L"-A");
62
63 // input less than frac_digits
64 const wstring digits4(L"-1");
65
66 iterator_type end;
67 wistringstream iss;
68 iss.imbue(loc_de);
69 // cache the money_get facet
70 const money_get<wchar_t>& mon_get = use_facet<money_get<wchar_t> >(iss.getloc());
71
72
73 iss.str(L"7.200.000.000,00 ");
74 iterator_type is_it01(iss);
75 wstring result1;
76 ios_base::iostate err01 = ios_base::goodbit;
77 mon_get.get(is_it01, end, true, iss, err01, result1);
78 VERIFY( result1 == digits1 );
79 VERIFY( err01 == ios_base::eofbit );
80
81 iss.str(L"7.200.000.000,00 ");
82 iterator_type is_it02(iss);
83 wstring result2;
84 ios_base::iostate err02 = ios_base::goodbit;
85 mon_get.get(is_it02, end, true, iss, err02, result2);
86 VERIFY( result2 == digits1 );
87 VERIFY( err02 == ios_base::eofbit );
88
89 iss.str(L"7.200.000.000,00 a");
90 iterator_type is_it03(iss);
91 wstring result3;
92 ios_base::iostate err03 = ios_base::goodbit;
93 mon_get.get(is_it03, end, true, iss, err03, result3);
94 VERIFY( result3 == digits1 );
95 VERIFY( err03 == ios_base::goodbit );
96
97 iss.str(L"");
98 iterator_type is_it04(iss);
99 wstring result4;
100 ios_base::iostate err04 = ios_base::goodbit;
101 mon_get.get(is_it04, end, true, iss, err04, result4);
102 VERIFY( result4 == empty );
103 VERIFY( err04 == (ios_base::failbit | ios_base::eofbit) );
104
105 iss.str(L"working for enlightenment and peace in a mad world");
106 iterator_type is_it05(iss);
107 wstring result5;
108 ios_base::iostate err05 = ios_base::goodbit;
109 mon_get.get(is_it05, end, true, iss, err05, result5);
110 VERIFY( result5 == empty );
111 VERIFY( err05 == ios_base::failbit );
112
113 // now try with showbase, to get currency symbol in format
114 iss.setf(ios_base::showbase);
115
116 iss.str(L"7.200.000.000,00 EUR ");
117 iterator_type is_it06(iss);
118 wstring result6;
119 ios_base::iostate err06 = ios_base::goodbit;
120 mon_get.get(is_it06, end, true, iss, err06, result6);
121 VERIFY( result6 == digits1 );
122 VERIFY( err06 == ios_base::eofbit );
123
124 iss.str(L"7.200.000.000,00 EUR "); // Extra space.
125 iterator_type is_it07(iss);
126 wstring result7;
127 ios_base::iostate err07 = ios_base::goodbit;
128 mon_get.get(is_it07, end, true, iss, err07, result7);
129 VERIFY( result7 == digits1 );
130 VERIFY( err07 == ios_base::goodbit );
131
132 iss.str(L"7.200.000.000,00 \x20ac");
133 iterator_type is_it08(iss);
134 wstring result8;
135 ios_base::iostate err08 = ios_base::goodbit;
136 mon_get.get(is_it08, end, false, iss, err08, result8);
137 VERIFY( result8 == digits1 );
138 VERIFY( err08 == ios_base::eofbit );
139 }
140
141 int main()
142 {
143 test01();
144 return 0;
145 }