OSDN Git Service

* testsuite/lib/libstdc++.exp (check_v3_target_fileio,
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / seekoff / char / 2-out.cc
1 // 2001-05-21 Benjamin Kosnik  <bkoz@redhat.com>
2
3 // Copyright (C) 2001, 2002, 2003 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 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 27.8.1.4 Overridden virtual functions
22
23 // { dg-require-fileio "" }
24
25 #include <fstream>
26 #include <testsuite_hooks.h>
27 #include <testsuite_io.h>
28
29 // @require@ %-*.tst %-*.txt
30 // @diff@ %-*.tst %*.txt
31
32 const char name_01[] = "seekoff-2out.tst";
33
34 void test05() 
35 {
36   using namespace std;
37   using namespace __gnu_test;
38
39   typedef filebuf::int_type     int_type;
40   typedef filebuf::pos_type     pos_type;
41   typedef filebuf::off_type     off_type;
42   typedef filebuf::traits_type  traits_type;
43
44   bool test __attribute__((unused)) = true;
45   streamsize                    strmsz_1, strmsz_2;
46
47   int_type c1;
48   int_type c2;
49   int_type c3;
50
51   pos_type pt_1(off_type(-1));
52   pos_type pt_2(off_type(0));
53   off_type off_1 = 0;
54   off_type off_2 = 0;
55
56   // seekoff
57   // pubseekoff(off_type off, ios_base::seekdir way, ios_base::openmode which)
58   // alters the stream position to off
59
60   // out
61   {
62     constraint_filebuf fb;
63     fb.pubsetbuf(0, 0);
64     fb.open(name_01, ios_base::out);
65     VERIFY( fb.unbuffered() );
66
67     //beg
68     strmsz_1 = fb.in_avail(); 
69     pt_1 = fb.pubseekoff(2, ios_base::beg);
70     strmsz_2 = fb.in_avail(); 
71     off_1 = off_type(pt_1);
72     VERIFY( off_1 > 0 );
73     c1 = fb.snextc(); //current in pointer +1
74     VERIFY( c1 == traits_type::eof() );
75     fb.pubseekoff(3, ios_base::beg);
76     c2 = fb.sputc('\n');  //current in pointer +1
77     fb.pubseekoff(4, ios_base::beg);
78     c3 = fb.sgetc();
79     VERIFY( c2 != c3 ); 
80     VERIFY( c3 == traits_type::eof() );
81     fb.pubsync(); 
82     c1 = fb.sgetc();
83     VERIFY( c1 == c3 );
84
85     //cur
86     pt_2 = fb.pubseekoff(2, ios_base::cur);
87     off_2 = off_type(pt_2);
88     VERIFY( (off_2 == (off_1 + 2 + 1 + 1)) );
89     c1 = fb.snextc(); //current in pointer +1
90     VERIFY( c1 == traits_type::eof() );
91     fb.pubseekoff(0, ios_base::cur);
92     c2 = fb.sputc('x');  //test current out pointer
93     c3 = fb.sputc('\n');
94     fb.pubseekoff(0, ios_base::cur);
95     c1 = fb.sgetc();
96     fb.pubsync(); 
97     c3 = fb.sgetc();
98     VERIFY( c1 == c3 );
99
100     //end
101     pt_2 = fb.pubseekoff(0, ios_base::end);
102     off_1 = off_type(pt_2);
103     VERIFY( off_1 > off_2 ); //weak, but don't know exactly where it ends
104     c3 = fb.sputc('\n');
105     strmsz_1 = fb.sputn("because because because. . .", 28);  
106     VERIFY( strmsz_1 == 28 );
107     fb.pubseekoff(-1, ios_base::end);
108     fb.sgetc();
109     c1 = fb.sungetc();
110     // Defect?  retval of sungetc is not necessarily the character ungotten.
111     // So re-get it.
112     c1 = fb.sgetc();
113     fb.pubsync(); 
114     c3 = fb.sgetc();
115     VERIFY( c1 == c3 );
116     VERIFY( fb.unbuffered() );
117   }
118 }
119
120 int main() 
121 {
122   test05();
123   return 0;
124 }