First version committed to git
[zpugcc/jano.git] / toolchain / gcc / libstdc++-v3 / testsuite / 22_locale / money_put / put / wchar_t / 1.cc
blob9518d16f37afcf566b2096c824c26caee71e9ddc
1 // 2001-08-27 Benjamin Kosnik <bkoz@redhat.com>
3 // Copyright (C) 2001, 2002, 2003, 2004 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.
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.
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.
21 // 22.2.6.2.1 money_put members
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
27 // test wstring version
28 void test01()
30 using namespace std;
31 typedef ostreambuf_iterator<wchar_t> iterator_type;
33 bool test __attribute__((unused)) = true;
35 // basic construction
36 locale loc_c = locale::classic();
37 locale loc_de = __gnu_test::try_named_locale("de_DE@euro");
38 VERIFY( loc_c != loc_de );
40 // sanity check the data is correct.
41 const wstring empty;
43 // total EPA budget FY 2002
44 const wstring digits1(L"720000000000");
46 // input less than frac_digits
47 const wstring digits2(L"-1");
49 // cache the money_put facet
50 wostringstream oss;
51 oss.imbue(loc_de);
52 const money_put<wchar_t>& mon_put = use_facet<money_put<wchar_t> >(oss.getloc());
54 iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, ' ', digits1);
55 wstring result1 = oss.str();
56 VERIFY( result1 == L"7.200.000.000,00 ");
58 oss.str(empty);
59 iterator_type os_it02 = mon_put.put(oss.rdbuf(), false, oss, ' ', digits1);
60 wstring result2 = oss.str();
61 VERIFY( result2 == L"7.200.000.000,00 ");
63 // intl and non-intl versions should be the same.
64 VERIFY( result1 == result2 );
66 // now try with showbase, to get currency symbol in format
67 oss.setf(ios_base::showbase);
69 oss.str(empty);
70 iterator_type os_it03 = mon_put.put(oss.rdbuf(), true, oss, ' ', digits1);
71 wstring result3 = oss.str();
72 VERIFY( result3 == L"7.200.000.000,00 EUR ");
74 oss.str(empty);
75 iterator_type os_it04 = mon_put.put(oss.rdbuf(), false, oss, ' ', digits1);
76 wstring result4 = oss.str();
77 VERIFY( result4 == L"7.200.000.000,00 \x20ac");
79 // intl and non-intl versions should be different.
80 VERIFY( result3 != result4 );
81 VERIFY( result3 != result1 );
82 VERIFY( result4 != result2 );
84 oss.unsetf(ios_base::showbase);
86 // test io.width() > length
87 // test various fill strategies
88 oss.str(empty);
89 oss.width(20);
90 iterator_type os_it10 = mon_put.put(oss.rdbuf(), true, oss, '*', digits2);
91 wstring result10 = oss.str();
92 VERIFY( result10 == L"***************-,01*");
94 oss.str(empty);
95 oss.width(20);
96 oss.setf(ios_base::internal);
97 iterator_type os_it11 = mon_put.put(oss.rdbuf(), true, oss, '*', digits2);
98 wstring result11 = oss.str();
99 VERIFY( result11 == L"-,01****************");
102 int main()
104 test01();
105 return 0;