OSDN Git Service

2003-09-23 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / getline / char / 2.cc
1 // 1999-08-11 bkoz
2
3 // Copyright (C) 1999, 2000, 2001, 2002, 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 // 27.6.1.3 unformatted input functions
22 // @require@ %-*.tst %-*.txt
23 // @diff@ %-*.tst %-*.txt
24
25 #include <cstring> // for strncmp,...
26 #include <istream>
27 #include <sstream>
28 #include <fstream>
29 #include <testsuite_hooks.h>
30
31 // [patch] bits/istream.tcc - getline(char_type*,streamsize,char_type)
32 // http://gcc.gnu.org/ml/libstdc++/2000-07/msg00003.html
33 void
34 test05()
35 {
36   const char* charray = "\n"
37 "a\n"
38 "aa\n"
39 "aaa\n"
40 "aaaa\n"
41 "aaaaa\n"
42 "aaaaaa\n"
43 "aaaaaaa\n"
44 "aaaaaaaa\n"
45 "aaaaaaaaa\n"
46 "aaaaaaaaaa\n"
47 "aaaaaaaaaaa\n"
48 "aaaaaaaaaaaa\n"
49 "aaaaaaaaaaaaa\n"
50 "aaaaaaaaaaaaaa\n";
51
52   bool test __attribute__((unused)) = true;
53   const std::streamsize it = 5;
54   std::streamsize br = 0;
55   char tmp[it];
56   std::stringbuf sb(charray, std::ios_base::in);
57   std::istream ifs(&sb);
58   std::streamsize blen = std::strlen(charray);
59   VERIFY(!(!ifs));
60   while(ifs.getline(tmp, it) || ifs.gcount())
61     {
62       br += ifs.gcount();
63       if(ifs.eof())
64         {
65           // Just sanity checks to make sure we've extracted the same
66           // number of chars that were in the streambuf
67           VERIFY(br == blen);
68           // Also, we should only set the failbit if we could
69           // _extract_ no chars from the stream, i.e. the first read
70           // returned EOF. 
71           VERIFY(ifs.fail() && ifs.gcount() == 0);
72         }
73       else if(ifs.fail())
74         {
75           // delimiter not read
76           //
77           // either
78           // -> extracted no characters
79           // or
80           // -> n - 1 characters are stored
81           ifs.clear(ifs.rdstate() & ~std::ios::failbit);
82           VERIFY((ifs.gcount() == 0) || (std::strlen(tmp) == it - 1));
83           VERIFY(!(!ifs));
84           continue;
85         }
86       else 
87         {
88           // delimiter was read.
89           //
90           // -> strlen(__s) < n - 1 
91           // -> delimiter was seen -> gcount() > strlen(__s)
92           VERIFY(ifs.gcount() == static_cast<std::streamsize>(std::strlen(tmp) + 1) );
93           continue;
94         }
95     }
96 }
97
98 int 
99 main()
100 {
101   test05();
102   return 0;
103 }