]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/6.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / money_get / get / wchar_t / 6.cc
1 // 2001-09-12 Benjamin Kosnik <bkoz@redhat.com>
2
3 // Copyright (C) 2001-2023 Free Software Foundation, Inc.
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 3, 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 COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 // 22.2.6.1.1 money_get members
21
22 #include <locale>
23 #include <sstream>
24 #include <testsuite_hooks.h>
25
26 struct My_money_io : public std::moneypunct<wchar_t,false>
27 {
28 char_type do_decimal_point() const { return '.'; }
29 std::string do_grouping() const { return "\004"; }
30
31 std::wstring do_curr_symbol() const { return L"$"; }
32 std::wstring do_positive_sign() const { return L""; }
33 std::wstring do_negative_sign() const { return L"-"; }
34
35 int do_frac_digits() const { return 2; }
36
37 pattern do_neg_format() const
38 {
39 pattern pat = { { symbol, none, sign, value } };
40 return pat;
41 }
42 };
43
44 // libstdc++/5579
45 void test06()
46 {
47 using namespace std;
48 typedef istreambuf_iterator<wchar_t> InIt;
49
50 locale loc(locale::classic(), new My_money_io);
51
52 wstring bufferp(L"$1234.56");
53 wstring buffern(L"$-1234.56");
54 wstring bufferp_ns(L"1234.56");
55 wstring buffern_ns(L"-1234.56");
56
57 bool intl = false;
58
59 InIt iendp, iendn, iendp_ns, iendn_ns;
60 ios_base::iostate err;
61 wstring valp, valn, valp_ns, valn_ns;
62
63 const money_get<wchar_t,InIt>& mg = use_facet<money_get<wchar_t, InIt> >(loc);
64 wistringstream fmtp(bufferp);
65 fmtp.imbue(loc);
66 InIt ibegp(fmtp);
67 mg.get(ibegp,iendp,intl,fmtp,err,valp);
68 VERIFY( valp == L"123456" );
69
70 wistringstream fmtn(buffern);
71 fmtn.imbue(loc);
72 InIt ibegn(fmtn);
73 mg.get(ibegn,iendn,intl,fmtn,err,valn);
74 VERIFY( valn == L"-123456" );
75
76 wistringstream fmtp_ns(bufferp_ns);
77 fmtp_ns.imbue(loc);
78 InIt ibegp_ns(fmtp_ns);
79 mg.get(ibegp_ns,iendp_ns,intl,fmtp_ns,err,valp_ns);
80 VERIFY( valp_ns == L"123456" );
81
82 wistringstream fmtn_ns(buffern_ns);
83 fmtn_ns.imbue(loc);
84 InIt ibegn_ns(fmtn_ns);
85 mg.get(ibegn_ns,iendn_ns,intl,fmtn_ns,err,valn_ns);
86 VERIFY( valn_ns == L"-123456" );
87 }
88
89 int main()
90 {
91 test06();
92 return 0;
93 }