]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/money_get/get/char/1.cc
sol2.h (TARGET_DEFAULT): Add back MASK_APP_REGS.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / money_get / get / char / 1.cc
CommitLineData
5f8d36fe
BK
1// 2001-09-12 Benjamin Kosnik <bkoz@redhat.com>
2
d9010fca 3// Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation
5f8d36fe
BK
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.1.1 money_get members
22
23#include <locale>
24#include <sstream>
25#include <testsuite_hooks.h>
26
27// test string version
28void test01()
29{
30 using namespace std;
5f8d36fe
BK
31 typedef istreambuf_iterator<char> iterator_type;
32
11f10e6b 33 bool test __attribute__((unused)) = true;
5f8d36fe
BK
34
35 // basic construction
36 locale loc_c = locale::classic();
aecf642c 37 locale loc_de = __gnu_test::try_named_locale("de_DE@euro");
5f8d36fe 38 VERIFY( loc_c != loc_de );
5f8d36fe 39
5f8d36fe
BK
40 // sanity check the data is correct.
41 const string empty;
42
43 // total EPA budget FY 2002
44 const string digits1("720000000000");
45
5f8d36fe
BK
46 iterator_type end;
47 istringstream iss;
48 iss.imbue(loc_de);
49 // cache the money_get facet
50 const money_get<char>& mon_get = use_facet<money_get<char> >(iss.getloc());
51
5f8d36fe
BK
52 iss.str("7.200.000.000,00 ");
53 iterator_type is_it01(iss);
54 string result1;
55 ios_base::iostate err01 = ios_base::goodbit;
26c691a8 56 mon_get.get(is_it01, end, true, iss, err01, result1); // xxx
5f8d36fe
BK
57 VERIFY( result1 == digits1 );
58 VERIFY( err01 == ios_base::eofbit );
59
60 iss.str("7.200.000.000,00 ");
61 iterator_type is_it02(iss);
62 string result2;
63 ios_base::iostate err02 = ios_base::goodbit;
64 mon_get.get(is_it02, end, true, iss, err02, result2);
65 VERIFY( result2 == digits1 );
66 VERIFY( err02 == ios_base::eofbit );
67
68 iss.str("7.200.000.000,00 a");
69 iterator_type is_it03(iss);
70 string result3;
71 ios_base::iostate err03 = ios_base::goodbit;
72 mon_get.get(is_it03, end, true, iss, err03, result3);
73 VERIFY( result3 == digits1 );
74 VERIFY( err03 == ios_base::goodbit );
75
76 iss.str("");
77 iterator_type is_it04(iss);
78 string result4;
79 ios_base::iostate err04 = ios_base::goodbit;
80 mon_get.get(is_it04, end, true, iss, err04, result4);
81 VERIFY( result4 == empty );
1b451306 82 VERIFY( err04 == (ios_base::failbit | ios_base::eofbit) );
5f8d36fe
BK
83
84 iss.str("working for enlightenment and peace in a mad world");
85 iterator_type is_it05(iss);
86 string result5;
87 ios_base::iostate err05 = ios_base::goodbit;
88 mon_get.get(is_it05, end, true, iss, err05, result5);
89 VERIFY( result5 == empty );
90 VERIFY( err05 == ios_base::failbit );
91
92 // now try with showbase, to get currency symbol in format
93 iss.setf(ios_base::showbase);
94
95 iss.str("7.200.000.000,00 EUR ");
96 iterator_type is_it06(iss);
97 string result6;
98 ios_base::iostate err06 = ios_base::goodbit;
99 mon_get.get(is_it06, end, true, iss, err06, result6);
100 VERIFY( result6 == digits1 );
101 VERIFY( err06 == ios_base::eofbit );
102
103 iss.str("7.200.000.000,00 EUR "); // Extra space.
104 iterator_type is_it07(iss);
105 string result7;
106 ios_base::iostate err07 = ios_base::goodbit;
107 mon_get.get(is_it07, end, true, iss, err07, result7);
108 VERIFY( result7 == digits1 );
109 VERIFY( err07 == ios_base::goodbit );
110
111 iss.str("7.200.000.000,00 \244");
112 iterator_type is_it08(iss);
113 string result8;
114 ios_base::iostate err08 = ios_base::goodbit;
115 mon_get.get(is_it08, end, false, iss, err08, result8);
116 VERIFY( result8 == digits1 );
117 VERIFY( err08 == ios_base::eofbit );
118}
119
120int main()
121{
3d838e28 122 test01();
5f8d36fe
BK
123 return 0;
124}