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