summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/27_io/basic_ostringstream/assign/1.cc
blob: f8ac1a3d60acdc273d912d29e3cd0637b99f1368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// { dg-do run { target c++11 } }

// Copyright (C) 2014-2019 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 3, 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 COPYING3.  If not see
// <http://www.gnu.org/licenses/>.

// 27.8.4.2 Assign and swap [ostringstream.assign]

#include <sstream>
#include <string>
#include <testsuite_hooks.h>

const std::string strings[] = {
  "one could carry out the description of a machine, ",
  "no matter how complicated, ",
  "in characters which would be merely the letters of the alphabet, and so ",
  "provide the mind with a method of knowing the machine and all its parts"
};

void
append(std::ostringstream& ss, std::string& s, const std::string& t)
{
  ss << t;
  s += t;
}

// assign
void
test01()
{
  std::string exp;
  std::ostringstream s1;
  append(s1, exp, strings[0]);

  std::ostringstream s2;
  s2 = std::move(s1);
  VERIFY( s2.str() == exp );
  append(s2, exp, strings[1]);
  VERIFY( s2.str() == exp );

  std::ostringstream s3;
  s3 = std::move(s2);
  VERIFY( s3.str() == exp );
  append(s3, exp, strings[2]);
  VERIFY( s3.str() == exp );

  s1.setstate(std::ios::failbit);
  s1 = std::move(s3);
  VERIFY( s1.good() );
  VERIFY( s1.str() == exp );
  append(s1, exp, strings[3]);
  VERIFY( s1.str() == exp );
}

// swap
void
test02()
{
  std::string exp;
  std::ostringstream s1;
  append(s1, exp, strings[0]);

  std::ostringstream s2;
  s2.swap(s1);
  VERIFY( s1.str().empty() );
  VERIFY( s2.str() == exp );
  append(s2, exp, strings[1]);
  VERIFY( s2.str() == exp );

  std::ostringstream s3;
  swap(s3, s2);
  VERIFY( s2.str().empty() );
  VERIFY( s3.str() == exp );
  append(s3, exp, strings[2]);
  VERIFY( s3.str() == exp );

  s1.setstate(std::ios::failbit);
  swap(s1, s3);
  VERIFY( s1.good() );
  VERIFY( s3.fail() );
  VERIFY( s2.str().empty() );
  VERIFY( s1.str() == exp );
  append(s1, exp, strings[3]);
  VERIFY( s1.str() == exp );
}

void
test03()
{
#ifdef _GLIBCXX_USE_WCHAR_T
  std::wistringstream s0, s;
  s = std::move(s0);
  s.swap(s0);
  swap(s, s0);
#endif
}

int
main()
{
  test01();
  test02();
  test03();
}