• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // <iomanip>
10 
11 // template <class moneyT> T7 get_money(moneyT& mon, bool intl = false);
12 
13 // REQUIRES: locale.en_US.UTF-8
14 
15 #include <iomanip>
16 #include <istream>
17 #include <cassert>
18 
19 #include "test_macros.h"
20 #include "platform_support.h" // locale name macros
21 
22 template <class CharT>
23 struct testbuf
24     : public std::basic_streambuf<CharT>
25 {
26     typedef std::basic_string<CharT> string_type;
27     typedef std::basic_streambuf<CharT> base;
28 private:
29     string_type str_;
30 public:
31 
testbuftestbuf32     testbuf() {}
testbuftestbuf33     testbuf(const string_type& str)
34         : str_(str)
35     {
36         base::setg(const_cast<CharT*>(str_.data()),
37                    const_cast<CharT*>(str_.data()),
38                    const_cast<CharT*>(str_.data()) + str_.size());
39     }
40 };
41 
main(int,char **)42 int main(int, char**)
43 {
44     {
45         testbuf<char> sb("  -$1,234,567.89");
46         std::istream is(&sb);
47         is.imbue(std::locale(LOCALE_en_US_UTF_8));
48         long double x = 0;
49         is >> std::get_money(x, false);
50         assert(x == -123456789);
51     }
52     {
53         testbuf<char> sb("  -USD 1,234,567.89");
54         std::istream is(&sb);
55         is.imbue(std::locale(LOCALE_en_US_UTF_8));
56         long double x = 0;
57         is >> std::get_money(x, true);
58         assert(x == -123456789);
59     }
60     {
61         testbuf<wchar_t> sb(L"  -$1,234,567.89");
62         std::wistream is(&sb);
63         is.imbue(std::locale(LOCALE_en_US_UTF_8));
64         long double x = 0;
65         is >> std::get_money(x, false);
66         assert(x == -123456789);
67     }
68     {
69         testbuf<wchar_t> sb(L"  -USD 1,234,567.89");
70         std::wistream is(&sb);
71         is.imbue(std::locale(LOCALE_en_US_UTF_8));
72         long double x = 0;
73         is >> std::get_money(x, true);
74         assert(x == -123456789);
75     }
76 
77   return 0;
78 }
79