1// 2001-08-23 Benjamin Kosnik  <bkoz@redhat.com>
2
3// Copyright (C) 2001, 2002, 2003, 2009 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 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.3.1 moneypunct members
21
22#include <locale>
23#include <string>
24#include <testsuite_hooks.h>
25
26void test01()
27{
28  using namespace std;
29  typedef money_base::part part;
30  typedef money_base::pattern pattern;
31
32  bool test __attribute__((unused)) = true;
33
34  // basic construction
35  locale loc_c = locale::classic();
36
37  // cache the moneypunct facets
38  typedef moneypunct<wchar_t, true> __money_true;
39  typedef moneypunct<wchar_t, false> __money_false;
40  const __money_true& monp_c_t = use_facet<__money_true>(loc_c);
41  const __money_false& monp_c_f = use_facet<__money_false>(loc_c);
42
43  // quick sanity check for data.
44  wchar_t q1 = monp_c_t.decimal_point();
45  wchar_t q2 = monp_c_t.thousands_sep();
46  wchar_t q3 = monp_c_f.decimal_point();
47  wchar_t q4 = monp_c_f.thousands_sep();
48  string g1 = monp_c_t.grouping();
49  string g2 = monp_c_f.grouping();
50  wstring cs1 = monp_c_t.curr_symbol();
51  wstring cs2 = monp_c_f.curr_symbol();
52  wstring ps1 = monp_c_t.positive_sign();
53  wstring ns1 = monp_c_t.negative_sign();
54  wstring ps2 = monp_c_f.positive_sign();
55  wstring ns2 = monp_c_f.negative_sign();
56  int fd1 = monp_c_t.frac_digits();
57  int fd2 = monp_c_f.frac_digits();
58  pattern pos1 = monp_c_t.pos_format();
59  pattern neg1 = monp_c_t.neg_format();
60  pattern pos2 = monp_c_f.pos_format();
61  pattern neg2 = monp_c_f.neg_format();
62
63  VERIFY( q1 == L'.' );
64  VERIFY( q3 == L'.' );
65  VERIFY( q2 == L',' );
66  VERIFY( q4 == L',' );
67  VERIFY( g1 == "" );
68  VERIFY( g2 == "" );
69  VERIFY( cs1 == L"" );
70  VERIFY( cs2 == L"" );
71  VERIFY( ps1 == L"" );
72  VERIFY( ps2 == L"" );
73  VERIFY( ns1 == L"" );
74  VERIFY( ns2 == L"" );
75  VERIFY( fd1 == 0 );
76  VERIFY( fd2 == 0 );
77
78  VERIFY(static_cast<part>(pos1.field[0]) == static_cast<part>(pos2.field[0]));
79  VERIFY(static_cast<part>(pos1.field[1]) == static_cast<part>(pos2.field[1]));
80  VERIFY(static_cast<part>(pos1.field[2]) == static_cast<part>(pos2.field[2]));
81  VERIFY(static_cast<part>(pos1.field[3]) == static_cast<part>(pos2.field[3]));
82
83#if 0
84  VERIFY( pos1[0] == money_base::_S_default_pattern[0] );
85  VERIFY( pos1[1] == money_base::_S_default_pattern[1] );
86  VERIFY( pos1[2] == money_base::_S_default_pattern[2] );
87  VERIFY( pos1[3] == money_base::_S_default_pattern[3] );
88  VERIFY( pos2 == money_base::_S_default_pattern );
89  VERIFY( neg1 == money_base::_S_default_pattern );
90  VERIFY( neg2 == money_base::_S_default_pattern );
91#endif
92}
93
94int main()
95{
96  test01();
97  return 0;
98}
99