OSDN Git Service

2000-06-29 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / ostream_manip.cc
1 // 1999-07-22 bkoz
2
3 // Copyright (C) 1994, 1999, 2000 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // 27.6.2.7 standard basic_ostream manipulators
22
23 #include <ostream>
24 #include <sstream>
25 #include <stdexcept>
26 #ifdef DEBUG_ASSERT
27 #include <assert.h>
28 #endif
29
30 bool test01(void)
31 {
32   bool test = true;
33
34   const char str_lit01[] = "  venice ";
35   const std::string str01(" santa barbara ");
36   std::string str02(str_lit01);
37   std::string str04;
38   std::string str05;
39   std::ios_base::iostate flag1, flag2, flag3, flag4, flag5;
40
41   // template<_CharT, _Traits>
42   //  basic_ostream<_CharT, _Traits>& endl(basic_ostream<_Char, _Traits>& os)
43   std::ostringstream oss01(str01);
44   std::ostringstream oss02;
45   std::ostringstream::int_type i01, i02;
46   typedef std::ostringstream::traits_type traits_type;
47
48   oss01 << std::endl;
49   str04 = oss01.str();
50   test &= str04.size() == str01.size();
51
52   oss02 << std::endl;
53   str05 = oss02.str();
54   test &= str05.size() == 1;
55
56   // template<_CharT, _Traits>
57   //  basic_ostream<_CharT, _Traits>& ends(basic_ostream<_Char, _Traits>& os)
58   oss01 << std::ends;
59   str04 = oss01.str();
60   test &= str04.size() == str01.size();
61   test &= str04[1] == char();
62
63   oss02 << std::ends;
64   str05 = oss02.str();
65   test &= str05.size() == 2;
66   test &= str05[1] == char();
67
68   // template<_CharT, _Traits>
69   //  basic_ostream<_CharT, _Traits>& flush(basic_ostream<_Char, _Traits>& os)
70   oss01.flush();
71   str04 = oss01.str();
72   test &= str04.size() == str01.size();
73
74   oss02.flush();
75   str05 = oss02.str();
76   test &= str05.size() == 2;
77
78 #ifdef DEBUG_ASSERT
79   assert(test);
80 #endif
81   return test;
82 }
83
84
85 // based vaguely on this:
86 // http://sourceware.cygnus.com/ml/libstdc++/2000-q2/msg00109.html
87 bool test02()
88 {
89   using namespace std;
90   typedef ostringstream::int_type int_type;
91
92   bool test = true;
93   ostringstream osst_01;
94   const string str_00("herbie_hancock");
95   int_type len1 = str_00.size();
96   osst_01 << str_00;
97   test &= osst_01.str().size() == len1;
98
99   osst_01 << ends;
100
101   const string str_01("speak like a child");
102   int_type len2 = str_01.size();
103   osst_01 << str_01;
104   int_type len3 = osst_01.str().size();
105   test &= len1 < len3;
106   test &= len3 == len1 + len2 + 1;
107
108   osst_01 << ends;
109
110   const string str_02("+ inventions and dimensions");
111   int_type len4 = str_02.size();
112   osst_01 << str_02;
113   int_type len5 = osst_01.str().size();
114   test &= len3 < len5;
115   test &= len5 == len3 + len4 + 1;
116
117 #ifdef DEBUG_ASSERT
118   assert(test);
119 #endif
120   return test;
121 }
122
123 int main()
124
125   test01();
126 }
127
128
129
130
131