]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/seekoff/char/1-in.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / seekoff / char / 1-in.cc
CommitLineData
ed242935
PC
1// 2001-05-21 Benjamin Kosnik <bkoz@redhat.com>
2
83ffe9cd 3// Copyright (C) 2001-2023 Free Software Foundation, Inc.
ed242935
PC
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
ed242935
PC
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
ed242935
PC
19
20// 27.8.1.4 Overridden virtual functions
21
0c20e4ec
NS
22// { dg-require-fileio "" }
23
ed242935
PC
24#include <fstream>
25#include <testsuite_hooks.h>
26#include <testsuite_io.h>
27
28// @require@ %-*.tst %-*.txt
29// @diff@ %-*.tst %*.txt
30
7d6a0993 31const char name_01[] = "seekoff.txt";
ed242935
PC
32
33void test05()
34{
35 using namespace std;
aecf642c 36 using namespace __gnu_test;
ed242935
PC
37
38 typedef filebuf::int_type int_type;
39 typedef filebuf::pos_type pos_type;
40 typedef filebuf::off_type off_type;
7d6a0993 41 typedef filebuf::traits_type traits_type;
ed242935 42
567d4027 43 streamsize strmsz_1;
ed242935
PC
44
45 int_type c1;
46 int_type c2;
47 int_type c3;
48
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;
53
54 // seekoff
55 // pubseekoff(off_type off, ios_base::seekdir way, ios_base::openmode which)
56 // alters the stream position to off
57
7d6a0993 58 // in
ed242935 59 {
7d6a0993
BK
60 constraint_filebuf fb;
61 fb.open(name_01, ios_base::in);
62 VERIFY( !fb.write_position() );
63
ed242935 64 //beg
7d6a0993
BK
65 strmsz_1 = fb.in_avail();
66 pt_1 = fb.pubseekoff(2, ios_base::beg);
567d4027 67 fb.in_avail();
4c4809c1 68 off_1 = off_type(pt_1);
ed242935 69 VERIFY( off_1 > 0 );
7d6a0993 70 c1 = fb.snextc(); //current in pointer +1
ed242935 71 VERIFY( c1 == '9' );
7d6a0993
BK
72 fb.pubseekoff(3, ios_base::beg);
73 c2 = fb.sputc('\n'); //current in pointer +1
74 fb.pubseekoff(4, ios_base::beg);
75 c3 = fb.sgetc();
76 VERIFY( c2 == traits_type::eof() );
ed242935 77 VERIFY( c3 == '9' );
7d6a0993
BK
78 fb.pubsync();
79 c1 = fb.sgetc();
ed242935 80 VERIFY( c1 == c3 );
7d6a0993 81
ed242935 82 //cur
7d6a0993 83 pt_2 = fb.pubseekoff(2, ios_base::cur);
4c4809c1 84 off_2 = off_type(pt_2);
ed242935 85 VERIFY( (off_2 == (off_1 + 2 + 1 + 1)) );
7d6a0993 86 c1 = fb.snextc(); //current in pointer +1
ed242935 87 VERIFY( c1 == '1' );
7d6a0993
BK
88 fb.pubseekoff(0, ios_base::cur);
89 c2 = fb.sputc('x'); //test current out pointer
90 c3 = fb.sputc('\n');
91 VERIFY( c2 == traits_type::eof() );
92 VERIFY( c3 == traits_type::eof() );
93 fb.pubseekoff(0, ios_base::cur);
94 c1 = fb.sgetc();
95 fb.pubsync();
96 c3 = fb.sgetc();
ed242935 97 VERIFY( c1 == c3 );
7d6a0993 98
ed242935 99 //end
7d6a0993 100 pt_2 = fb.pubseekoff(0, ios_base::end);
4c4809c1 101 off_1 = off_type(pt_2);
ed242935 102 VERIFY( off_1 > off_2 ); //weak, but don't know exactly where it ends
7d6a0993
BK
103 c3 = fb.sputc('\n');
104 strmsz_1 = fb.sputn("because because because. . .", 28);
105 VERIFY( strmsz_1 == 0 );
106 fb.pubseekoff(-1, ios_base::end);
107 fb.sgetc();
108 c1 = fb.sungetc();
ed242935
PC
109 // Defect? retval of sungetc is not necessarily the character ungotten.
110 // So re-get it.
7d6a0993
BK
111 c1 = fb.sgetc();
112 fb.pubsync();
113 c3 = fb.sgetc();
ed242935 114 VERIFY( c1 == c3 );
7d6a0993 115 VERIFY( !fb.write_position() );
ed242935
PC
116 }
117}
118
11f10e6b 119int main()
ed242935
PC
120{
121 test05();
122 return 0;
123}