gcc/libstdc++-v3/testsuite/21_strings/append.cc
Benjamin Kosnik b2dad0e372 libstdc++-v3: New directory.
2000-04-21  Benjamin Kosnik  <bkoz@redhat.com>

	* libstdc++-v3: New directory.

From-SVN: r33317
2000-04-21 20:33:34 +00:00

171 lines
3.9 KiB
C++

// 1999-07-08 bkoz
// Copyright (C) 1999 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING. If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
// 21.3.5.3 basic_string::assign
#include <string>
#include <stdexcept>
#ifdef DEBUG_ASSERT
#include <assert.h>
#endif
bool test01(void)
{
bool test = true;
typedef std::string::size_type csize_type;
typedef std::string::const_reference cref;
typedef std::string::reference ref;
csize_type npos = std::string::npos;
csize_type csz01, csz02;
const char str_lit01[] = "point bolivar, texas";
const std::string str01(str_lit01);
const std::string str02("corpus, ");
const std::string str03;
std::string str05;
// string& append(const string&)
str05 = str02;
str05.append(str05);
test &= str05 == "corpus, corpus, ";
str05.append(str01);
test &= str05 == "corpus, corpus, point bolivar, texas";
str05.append(str03);
test &= str05 == "corpus, corpus, point bolivar, texas";
std::string str06;
str06.append(str05);
test &= str06 == str05;
// string& append(const string&, size_type pos, size_type n)
str05.erase();
str06.erase();
csz01 = str03.size();
try {
str06.append(str03, csz01 + 1, 0);
test &= false;
}
catch(std::out_of_range& fail) {
test &= true;
}
catch(...) {
test &= false;
}
csz01 = str01.size();
try {
str06.append(str01, csz01 + 1, 0);
test &= false;
}
catch(std::out_of_range& fail) {
test &= true;
}
catch(...) {
test &= false;
}
str05 = str02;
str05.append(str01, 0, std::string::npos);
test &= str05 == "corpus, point bolivar, texas";
test &= str05 != str02;
str06 = str02;
str06.append(str01, 15, std::string::npos);
test &= str06 == "corpus, texas";
test &= str02 != str06;
// string& append(const char* s)
str05.erase();
str06.erase();
str05.append("");
test &= str05 == str03;
str05.append(str_lit01);
test &= str05 == str01;
str06 = str02;
str06.append("corpus, ");
test &= str06 == "corpus, corpus, ";
// string& append(const char* s, size_type n)
str05.erase();
str06.erase();
str05.append("", 0);
test &= str05.size() == 0;
test &= str05 == str03;
str05.append(str_lit01, sizeof(str_lit01) - 1);
test &= str05 == str01;
str06 = str02;
str06.append("corpus, ", 6);
test &= str06 == "corpus, corpus";
str06 = str02;
str06.append("corpus, ", 12);
test &= str06 != "corpus, corpus, ";
// string& append(size_type n, char c)
str05.erase();
str06.erase();
str05.append(0, 'a');
test &= str05 == str03;
str06.append(8, '.');
test &= str06 == "........";
// template<typename InputIter>
// string& append(InputIter first, InputIter last)
str05.erase();
str06.erase();
str05.append(str03.begin(), str03.end());
test &= str05 == str03;
str06 = str02;
str06.append(str01.begin(), str01.begin() + str01.find('r'));
test &= str06 == "corpus, point boliva";
test &= str06 != str01;
test &= str06 != str02;
str05 = str01;
str05.append(str05.begin(), str05.begin() + str05.find('r'));
test &= str05 == "point bolivar, texaspoint boliva";
test &= str05 != str01;
#ifdef DEBUG_ASSERT
assert(test);
#endif
return test;
}
int main()
{
test01();
}