OSDN Git Service

4cdca1afc6ee1065833944ae239e2179db68e08d
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_stringbuf / seekpos / char / 1.cc
1 // 981208 bkoz test functionality of basic_stringbuf for char_type == char
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2009
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21 #include <sstream>
22 #include <testsuite_hooks.h>
23
24 std::string str_01("mykonos. . . or what?");
25 std::stringbuf strb_01(str_01);
26
27 // test overloaded virtual functions
28 void test04() 
29 {
30   bool test __attribute__((unused)) = true;
31   std::string           str_tmp;
32   typedef std::stringbuf::int_type int_type;
33   typedef std::stringbuf::pos_type pos_type;
34   typedef std::stringbuf::off_type off_type;
35
36   int_type c1 = strb_01.sbumpc();
37   int_type c2; 
38   int_type c3 = strb_01.sbumpc();
39
40   pos_type pt_1(off_type(-1));
41   pos_type pt_2(off_type(0));
42   off_type off_1 = 0;
43   off_type off_2 = 0;
44   
45   // BUFFER MANAGEMENT & POSITIONING
46
47   // seekpos
48   // pubseekpos(pos_type sp, ios_base::openmode)
49   // alters the stream position to sp
50   strb_01.str(str_01); //in|out ("mykonos. . . or what?");
51
52   //IN|OUT
53   //beg
54   pt_1 = strb_01.pubseekoff(2, std::ios_base::beg);
55   off_1 = off_type(pt_1);
56   VERIFY( off_1 >= 0 );
57   pt_1 = strb_01.pubseekoff(0, std::ios_base::cur, std::ios_base::out);
58   off_1 = off_type(pt_1);
59   c1 = strb_01.snextc(); //current in pointer +1
60   VERIFY( c1 == 'o' );
61   c2 = strb_01.sputc('x');  //test current out pointer
62   str_tmp = std::string("myxonos. . . or what?");
63   VERIFY( strb_01.str() == str_tmp );
64   strb_01.pubsync(); //resets pointers
65   pt_2 = strb_01.pubseekpos(pt_1, std::ios_base::in|std::ios_base::out);
66   off_2 = off_type(pt_2);
67   VERIFY( off_1 == off_2 );
68   c3 = strb_01.snextc(); //current in pointer +1
69   VERIFY( c1 == c3 );
70   c2 = strb_01.sputc('x');  //test current out pointer
71   str_tmp = std::string("myxonos. . . or what?");
72   VERIFY( strb_01.str() == str_tmp );
73 }
74
75 int main()
76 {
77   test04();
78   return 0;
79 }
80
81
82
83 // more candy!!!