1// 2001-09-12 Benjamin Kosnik  <bkoz@redhat.com>
2
3// Copyright (C) 2001-2015 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// We were appending to the string val passed by reference, instead
27// of constructing a temporary candidate, eventually copied into
28// val in case of successful parsing.
29void test07()
30{
31  using namespace std;
32  bool test __attribute__((unused)) = true;
33
34  typedef istreambuf_iterator<char> InIt;
35  InIt iend1, iend2, iend3;
36
37  locale loc_c = locale::classic();
38  string buffer1("123");
39  string buffer2("456");
40  string buffer3("Golgafrincham"); // From Nathan's original idea.
41
42  string val;
43
44  ios_base::iostate err;
45
46  const money_get<char, InIt>& mg = use_facet<money_get<char, InIt> >(loc_c);
47
48  istringstream fmt1(buffer1);
49  fmt1.imbue(loc_c);
50  InIt ibeg1(fmt1);
51  mg.get(ibeg1, iend1, false, fmt1, err, val);
52  VERIFY( val == buffer1 );
53
54  istringstream fmt2(buffer2);
55  fmt2.imbue(loc_c);
56  InIt ibeg2(fmt2);
57  mg.get(ibeg2, iend2, false, fmt2, err, val);
58  VERIFY( val == buffer2 );
59
60  val = buffer3;
61  istringstream fmt3(buffer3);
62  fmt3.imbue(loc_c);
63  InIt ibeg3(fmt3);
64  mg.get(ibeg3, iend3, false, fmt3, err, val);
65  VERIFY( val == buffer3 );
66}
67
68int main()
69{
70  test07();
71  return 0;
72}
73