OSDN Git Service

2007-03-02 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / ignore / wchar_t / 2.cc
1 // Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation
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 2, 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 COPYING.  If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
18
19 // 27.6.1.3 unformatted input functions
20
21 #include <istream>
22 #include <string>
23 #include <fstream>
24 #include <limits>
25 #include <cstdlib>
26 #include <testsuite_hooks.h>
27
28 using namespace std;
29
30 wstring
31 prepare(wstring::size_type len, unsigned nchunks, wchar_t delim)
32 {
33   wstring ret;
34   for (unsigned i = 0; i < nchunks; ++i)
35     {
36       for (wstring::size_type j = 0; j < len; ++j)
37         ret.push_back(L'a' + rand() % 26);
38       len *= 2;
39       ret.push_back(delim);
40     }
41   return ret;
42 }
43
44 void
45 check(wistream& stream, const wstring& str, unsigned nchunks, wchar_t delim)
46 {
47   bool test __attribute__((unused)) = true;
48
49   wstring::size_type index = 0, index_new = 0;
50   unsigned n = 0;
51
52   while (stream.ignore(numeric_limits<streamsize>::max(), delim).good())
53     {
54       index_new = str.find(delim, index);
55       VERIFY( static_cast<string::size_type>(stream.gcount()) ==
56               index_new - index + 1 );
57       index = index_new + 1;
58       ++n;
59     }
60   VERIFY( stream.gcount() == 0 );
61   VERIFY( !stream.fail() );
62   VERIFY( n == nchunks );
63 }
64
65 void test01()
66 {
67   const char filename[] = "wistream_ignore.txt";
68
69   const wchar_t delim = L'|';
70   const unsigned nchunks = 10;
71   const wstring data = prepare(555, nchunks, delim);
72
73   wofstream ofstrm;
74   ofstrm.open(filename);
75   ofstrm.write(data.data(), data.size());
76   ofstrm.close();
77
78   wifstream ifstrm;
79   ifstrm.open(filename);
80   check(ifstrm, data, nchunks, delim);
81   ifstrm.close();
82 }
83
84 int main()
85 {
86   test01();
87   return 0;
88 }