OSDN Git Service

426d0e3963861775bffb2cbb126c2918b0ef1eef
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / element_access / char / 3.cc
1 // 1999-06-08 bkoz
2
3 // Copyright (C) 1999, 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // 21.3 template class basic_string
22
23 #include <string>
24 #include <stdexcept>
25 #include <testsuite_hooks.h>
26
27 // Do another sanity check, this time for member functions that return
28 // iterators, namely insert and erase.
29 bool test02(void)
30 {
31   bool test = true;
32   typedef std::string::size_type csize_type;
33   typedef std::string::iterator siterator;
34   typedef std::string::reverse_iterator sriterator;
35   csize_type npos = std::string::npos;
36   csize_type csz01, csz02;
37   siterator it1;
38   sriterator rit1;  
39
40   const std::string str01("its beach, santa cruz");
41
42   std::string str02 = str01;
43   std::string str05 = str02; // optional, so that begin below causes a mutate
44   std::string::iterator p = str02.insert(str02.begin(), ' ');
45   std::string str03 = str02;
46   VERIFY( str03 == str02 );
47   *p = '!';
48   VERIFY( *str03.c_str() == ' ' );
49   str03[0] = '@';
50   VERIFY( str02[0] == '!' );
51   VERIFY( *p == '!' );
52   VERIFY( str02 != str05 );
53   VERIFY( str02 != str03 );
54
55   std::string str10 = str01;
56   std::string::iterator p2 = str10.insert(str10.begin(), 'a');
57   std::string str11 = str10;
58   *p2 = 'e';
59   VERIFY( str11 != str10 );
60
61   std::string str06 = str01;
62   std::string str07 = str06; // optional, so that begin below causes a mutate
63   p = str06.erase(str06.begin());
64   std::string str08 = str06;
65   VERIFY( str08 == str06 );
66   *p = '!';
67   VERIFY( *str08.c_str() == 't' );
68   str08[0] = '@';
69   VERIFY( str06[0] == '!' );
70   VERIFY( *p == '!' );
71   VERIFY( str06 != str07 );
72   VERIFY( str06 != str08 );
73
74   std::string str12 = str01;
75   p2 = str12.erase(str12.begin(), str12.begin() + str12.size() - 1);
76   std::string str13 = str12;
77   *p2 = 'e';
78   VERIFY( str12 != str13 );
79
80 #ifdef DEBUG_ASSERT
81   assert(test);
82 #endif
83   return test;
84 }
85
86 int main()
87
88   test02();
89   return 0;
90 }