First version committed to git
[zpugcc/jano.git] / toolchain / gcc / libstdc++-v3 / testsuite / 22_locale / money_put / put / char / 1.cc
blob85998856cd58af40e23204b3b12daafa97bc548b
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 string version
28 void test01()
30 using namespace std;
31 typedef ostreambuf_iterator<char> 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 string empty;
43 // total EPA budget FY 2002
44 const string digits1("720000000000");
46 // input less than frac_digits
47 const string digits2("-1");
49 // cache the money_put facet
50 ostringstream oss;
51 oss.imbue(loc_de);
52 const money_put<char>& mon_put = use_facet<money_put<char> >(oss.getloc());
54 iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, ' ', digits1);
55 string result1 = oss.str();
56 VERIFY( result1 == "7.200.000.000,00 ");
58 oss.str(empty);
59 iterator_type os_it02 = mon_put.put(oss.rdbuf(), false, oss, ' ', digits1);
60 string result2 = oss.str();
61 VERIFY( result2 == "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 string result3 = oss.str();
72 VERIFY( result3 == "7.200.000.000,00 EUR ");
74 oss.str(empty);
75 iterator_type os_it04 = mon_put.put(oss.rdbuf(), false, oss, ' ', digits1);
76 string result4 = oss.str();
77 VERIFY( result4 == "7.200.000.000,00 \244");
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 string result10 = oss.str();
92 VERIFY( result10 == "***************-,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 string result11 = oss.str();
99 VERIFY( result11 == "-,01****************");
102 int main()
104 test01();
105 return 0;