OSDN Git Service

2003-09-23 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / moneypunct_byname / 1.cc
1 // 2001-08-24 Benjamin Kosnik  <bkoz@redhat.com>
2
3 // Copyright (C) 2001, 2003 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // 22.2.6.4 Template class moneypunct_byname
22
23 #include <locale>
24 #include <testsuite_hooks.h>
25
26 void 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   string str;
34
35   locale loc_de = __gnu_test::try_named_locale("de_DE");
36   str = loc_de.name();
37
38   locale loc_byname(locale::classic(), new moneypunct_byname<char>("de_DE"));
39   str = loc_byname.name();
40
41   locale loc_c = locale::classic();
42
43   VERIFY( loc_de != loc_byname );
44
45   // cache the moneypunct facets
46   const moneypunct<char>& monp_c = use_facet<moneypunct<char> >(loc_c); 
47   const moneypunct<char>& monp_byname = 
48                                     use_facet<moneypunct<char> >(loc_byname); 
49   const moneypunct<char>& monp_de = use_facet<moneypunct<char> >(loc_de); 
50
51   // sanity check that the data match
52   char dp1 = monp_de.decimal_point();
53   char th1 = monp_de.thousands_sep();
54   string g1 = monp_de.grouping();
55   string cs1 = monp_de.curr_symbol();
56   string ps1 = monp_de.positive_sign();
57   string ns1 = monp_de.negative_sign();
58   int fd1 = monp_de.frac_digits();
59   pattern pos1 = monp_de.pos_format();
60   pattern neg1 = monp_de.neg_format();
61
62   char dp2 = monp_byname.decimal_point();
63   char th2 = monp_byname.thousands_sep();
64   string g2 = monp_byname.grouping();
65   string cs2 = monp_byname.curr_symbol();
66   string ps2 = monp_byname.positive_sign();
67   string ns2 = monp_byname.negative_sign();
68   int fd2 = monp_byname.frac_digits();
69   pattern pos2 = monp_byname.pos_format();
70   pattern neg2 = monp_byname.neg_format();
71
72   VERIFY( dp1 == dp2 );
73   VERIFY( th1 == th2 );
74   VERIFY( g1 == g2 );
75   VERIFY( cs1 == cs2 );
76   VERIFY( ps1 == ps2 );
77   VERIFY( ns1 == ns2 );
78   VERIFY( fd1 == fd2 );
79   VERIFY(static_cast<part>(pos1.field[0]) == static_cast<part>(pos2.field[0]));
80   VERIFY(static_cast<part>(pos1.field[1]) == static_cast<part>(pos2.field[1]));
81   VERIFY(static_cast<part>(pos1.field[2]) == static_cast<part>(pos2.field[2]));
82   VERIFY(static_cast<part>(pos1.field[3]) == static_cast<part>(pos2.field[3]));
83
84   VERIFY(static_cast<part>(neg1.field[0]) == static_cast<part>(neg2.field[0]));
85   VERIFY(static_cast<part>(neg1.field[1]) == static_cast<part>(neg2.field[1]));
86   VERIFY(static_cast<part>(neg1.field[2]) == static_cast<part>(neg2.field[2]));
87   VERIFY(static_cast<part>(neg1.field[3]) == static_cast<part>(neg2.field[3]));
88
89   // ...and don't match "C"
90   char dp3 = monp_c.decimal_point();
91   VERIFY( dp1 != dp3 );
92 }
93
94 int main()
95 {
96   test01();
97   return 0;
98 }