OSDN Git Service

1fceb2799715865213ee626a56edc2598bd7afbf
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / money_put / put / wchar_t / 1.cc
1 // { dg-require-namedlocale "" }
2
3 // 2001-08-27 Benjamin Kosnik  <bkoz@redhat.com>
4
5 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2009 Free Software Foundation
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
12
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3.  If not see
20 // <http://www.gnu.org/licenses/>.
21
22 // 22.2.6.2.1 money_put members
23
24 #include <locale>
25 #include <sstream>
26 #include <testsuite_hooks.h>
27
28 // test wstring version
29 void test01()
30 {
31   using namespace std;
32   typedef ostreambuf_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@euro");
39   VERIFY( loc_c != loc_de );
40
41   // sanity check the data is correct.
42   const wstring empty;
43
44   // total EPA budget FY 2002
45   const wstring digits1(L"720000000000");
46
47   // input less than frac_digits
48   const wstring digits2(L"-1");
49   
50   // cache the money_put facet
51   wostringstream oss;
52   oss.imbue(loc_de);
53   const money_put<wchar_t>& mon_put =
54     use_facet<money_put<wchar_t> >(oss.getloc()); 
55
56   iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, L' ', digits1);
57   wstring result1 = oss.str();
58   VERIFY( result1 == L"7.200.000.000,00 " );
59
60   oss.str(empty);
61   iterator_type os_it02 = mon_put.put(oss.rdbuf(), false, oss, L' ', digits1);
62   wstring result2 = oss.str();
63   VERIFY( result2 == L"7.200.000.000,00 " );
64
65   // intl and non-intl versions should be the same.
66   VERIFY( result1 == result2 );
67
68   // now try with showbase, to get currency symbol in format
69   oss.setf(ios_base::showbase);
70
71   oss.str(empty);
72   iterator_type os_it03 = mon_put.put(oss.rdbuf(), true, oss, L' ', digits1);
73   wstring result3 = oss.str();
74   VERIFY( result3 == L"7.200.000.000,00 EUR " );
75
76   oss.str(empty);
77   iterator_type os_it04 = mon_put.put(oss.rdbuf(), false, oss, L' ', digits1);
78   wstring result4 = oss.str();
79   VERIFY( result4 == L"7.200.000.000,00 \x20ac" );
80
81   // intl and non-intl versions should be different.
82   VERIFY( result3 != result4 );
83   VERIFY( result3 != result1 );
84   VERIFY( result4 != result2 );
85
86   oss.unsetf(ios_base::showbase);
87
88   // test io.width() > length
89   // test various fill strategies
90   oss.str(empty);
91   oss.width(20);
92   iterator_type os_it10 = mon_put.put(oss.rdbuf(), true, oss, L'*', digits2);
93   wstring result10 = oss.str();
94   VERIFY( result10 == L"***************-,01*" );
95
96   oss.str(empty);
97   oss.width(20);
98   oss.setf(ios_base::internal);
99   iterator_type os_it11 = mon_put.put(oss.rdbuf(), true, oss, L'*', digits2);
100   wstring result11 = oss.str();
101   VERIFY( result11 == L"-,01****************" );
102 }
103
104 int main()
105 {
106   test01();
107   return 0;
108 }