OSDN Git Service

2005-08-17 Kelley Cook <kcook@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / num_put / put / wchar_t / 4.cc
1 // 2001-11-19 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 22.2.2.2.1  num_put members
22
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
26
27 void test04()
28 {
29   using namespace std;
30   bool test __attribute__((unused)) = true;
31
32   // Check num_put works with other iterators besides streambuf
33   // output iterators. (As long as output_iterator requirements are met.)
34   typedef wstring::iterator iter_type;
35   typedef char_traits<wchar_t> traits;
36   typedef num_put<wchar_t, iter_type> num_put_type;
37   const locale loc_c = locale::classic();
38   const wstring str(L"1798 Lady Elgin");
39   const wstring x(18, L'x'); // have to have allocated wstring!
40   wstring res;               // allow for "0x" + 16 hex digits (64-bit pointer)
41
42   wostringstream oss; 
43   oss.imbue(locale(loc_c, new num_put_type));
44
45   // Iterator advanced, state, output.
46   const num_put_type& tp = use_facet<num_put_type>(oss.getloc());
47
48   // 01 put(long)
49   // 02 put(long double)
50   // 03 put(bool)
51   // 04 put(void*)
52
53   // 01 put(long)
54   const long l = 1798;
55   res = x;
56   iter_type ret1 = tp.put(res.begin(), oss, L' ', l);
57   wstring sanity1(res.begin(), ret1);
58   VERIFY( res == L"1798xxxxxxxxxxxxxx" );
59   VERIFY( sanity1 == L"1798" );
60
61   // 02 put(long double)
62   const long double ld = 1798.0;
63   res = x;
64   iter_type ret2 = tp.put(res.begin(), oss, L' ', ld);
65   wstring sanity2(res.begin(), ret2);
66   VERIFY( res == L"1798xxxxxxxxxxxxxx" );
67   VERIFY( sanity2 == L"1798" );
68
69   // 03 put(bool)
70   bool b = 1;
71   res = x;
72   iter_type ret3 = tp.put(res.begin(), oss, L' ', b);
73   wstring sanity3(res.begin(), ret3);
74   VERIFY( res == L"1xxxxxxxxxxxxxxxxx" );
75   VERIFY( sanity3 == L"1" );
76
77   b = 0;
78   res = x;
79   oss.setf(ios_base::boolalpha);
80   iter_type ret4 = tp.put(res.begin(), oss, L' ', b);
81   wstring sanity4(res.begin(), ret4);
82   VERIFY( res == L"falsexxxxxxxxxxxxx" );
83   VERIFY( sanity4 == L"false" );
84
85   // 04 put(void*)
86   oss.clear();
87   const void* cv = &ld;
88   res = x;
89   oss.setf(ios_base::fixed, ios_base::floatfield);
90   iter_type ret5 = tp.put(res.begin(), oss, L' ', cv);
91   wstring sanity5(res.begin(), ret5);
92   VERIFY( sanity5.size() );
93   VERIFY( sanity5[1] == L'x' );
94 }
95
96 int main()
97 {
98   test04();
99   return 0;
100 }