OSDN Git Service

2004-08-21 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / money_put / put / wchar_t / 2.cc
1 // 2001-08-27 Benjamin Kosnik  <bkoz@redhat.com>
2
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.
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.2.1 money_put members
22
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
26
27 // test wstring version
28 void test02()
29 {
30   using namespace std;
31   typedef ostreambuf_iterator<wchar_t> iterator_type;
32
33   bool test __attribute__((unused)) = true;
34
35   // basic construction
36   locale loc_c = locale::classic();
37   locale loc_hk = __gnu_test::try_named_locale("en_HK");
38   VERIFY( loc_c != loc_hk );
39
40   // sanity check the data is correct.
41   const wstring empty;
42
43   // total EPA budget FY 2002
44   const wstring digits1(L"720000000000");
45
46   // est. cost, national missile "defense", expressed as a loss in USD 2001
47   const wstring digits2(L"-10000000000000");  
48
49   // not valid input
50   const wstring digits3(L"-A"); 
51
52   // input less than frac_digits
53   const wstring digits4(L"-1");
54   
55   // cache the money_put facet
56   wostringstream oss;
57   oss.imbue(loc_hk);
58   const money_put<wchar_t>& mon_put =
59     use_facet<money_put<wchar_t> >(oss.getloc()); 
60
61   // now try with showbase, to get currency symbol in format
62   oss.setf(ios_base::showbase);
63
64   // test sign of more than one digit, say hong kong.
65   oss.str(empty);
66   iterator_type os_it05 = mon_put.put(oss.rdbuf(), false, oss, L' ', digits1);
67   wstring result5 = oss.str();
68   VERIFY( result5 == L"HK$7,200,000,000.00" );
69
70   oss.str(empty);
71   iterator_type os_it06 = mon_put.put(oss.rdbuf(), true, oss, L' ', digits2);
72   wstring result6 = oss.str();
73   VERIFY( result6 == L"(HKD 100,000,000,000.00)" );
74
75   // test one-digit formats without zero padding
76   oss.imbue(loc_c);
77   oss.str(empty);
78   const money_put<wchar_t>& mon_put2 =
79     use_facet<money_put<wchar_t> >(oss.getloc()); 
80   iterator_type os_it07 = mon_put2.put(oss.rdbuf(), true, oss, L' ', digits4);
81   wstring result7 = oss.str();
82   VERIFY( result7 == L"1" );
83
84   // test one-digit formats with zero padding, zero frac widths
85   oss.imbue(loc_hk);
86   oss.str(empty);
87   const money_put<wchar_t>& mon_put3 =
88     use_facet<money_put<wchar_t> >(oss.getloc()); 
89   iterator_type os_it08 = mon_put3.put(oss.rdbuf(), true, oss, L' ', digits4);
90   wstring result8 = oss.str();
91   VERIFY( result8 == L"(HKD .01)" );
92
93   oss.unsetf(ios_base::showbase);
94
95   // test bunk input
96   oss.str(empty);
97   iterator_type os_it09 = mon_put.put(oss.rdbuf(), true, oss, L' ', digits3);
98   wstring result9 = oss.str();
99   VERIFY( result9 == L"" );
100 }
101
102 int main()
103 {
104   test02();
105   return 0;
106 }