1// 2001-06-25  Benjamin Kosnik  <bkoz@redhat.com>
2
3// Copyright (C) 2001, 2003, 2009 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// 24.5.1 Template class istream_iterator
21
22#include <iterator>
23#include <sstream>
24#include <testsuite_hooks.h>
25
26void test02()
27{
28  using namespace std;
29  bool test __attribute__((unused)) = true;
30
31  string st("R.Rorty");
32
33  string re_01, re_02, re_03;
34  re_02 = ",H.Putnam";
35  re_03 = "D.Dennett,xxx,H.Putnam";
36
37  stringbuf sb_01(st);
38  istream is_01(&sb_01);
39  istream_iterator<char> inb_01(is_01);
40  istream_iterator<char> ine_01;
41  re_01.assign(inb_01, ine_01);
42  VERIFY( re_01 == "R.Rorty" );
43
44  stringbuf sb_02(st);
45  istream is_02(&sb_02);
46  istream_iterator<char> inb_02(is_02);
47  istream_iterator<char> ine_02;
48  re_02.insert(re_02.begin(), inb_02, ine_02);
49  VERIFY( re_02 == "R.Rorty,H.Putnam" );
50
51  stringbuf sb_03(st);
52  istream is_03(&sb_03);
53  istream_iterator<char> inb_03(is_03);
54  istream_iterator<char> ine_03;
55  re_03.replace(re_03.begin() + 10, re_03.begin() + 13,
56		inb_03, ine_03);
57  VERIFY( re_03 == "D.Dennett,R.Rorty,H.Putnam" );
58}
59
60int main()
61{
62  test02();
63  return 0;
64}
65