Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / inserters_extractors / char / 10.cc
1 // Copyright (C) 2004-2013 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library.  This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3.  If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // 21.3.7.9 inserters and extractors
19
20 // { dg-require-fileio "" }
21
22 #include <istream>
23 #include <string>
24 #include <fstream>
25 #include <cstdlib>
26 #include <testsuite_hooks.h>
27
28 using namespace std;
29
30 string prepare(string::size_type len, unsigned nchunks, char delim)
31 {
32   string ret;
33   for (unsigned i = 0; i < nchunks; ++i)
34     {
35       for (string::size_type j = 0; j < len; ++j)
36         ret.push_back('a' + rand() % 26);
37       len *= 2;
38       ret.push_back(delim);
39     }
40   return ret;
41 }
42
43 void check(istream& stream, const string& str, unsigned nchunks, char delim)
44 {
45   bool test __attribute__((unused)) = true;
46
47   string chunk;
48   string::size_type index = 0, index_new = 0;
49   unsigned n = 0;
50
51   while (getline(stream, chunk, delim))
52     {
53       index_new = str.find(delim, index);
54       VERIFY( !str.compare(index, index_new - index, chunk) );
55       index = index_new + 1;
56       ++n;
57     }
58   VERIFY( stream.eof() );
59   VERIFY( n == nchunks );
60 }
61
62 // istream& getline(istream&, string&, char)
63 void test01()
64 {
65   const char filename[] = "inserters_extractors-2.txt";
66
67   const char delim = '|';
68   const unsigned nchunks = 10;
69   const string data = prepare(777, nchunks, delim);
70
71   ofstream ofstrm;
72   ofstrm.open(filename);
73   ofstrm.write(data.data(), data.size());
74   ofstrm.close();
75
76   ifstream ifstrm;
77   ifstrm.open(filename);
78   check(ifstrm, data, nchunks, delim);
79   ifstrm.close();
80 }
81
82 int main()
83 {
84   test01();
85   return 0;
86 }