]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string_view/inserters/char/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string_view / inserters / char / 2.cc
1
2 // Copyright (C) 2013-2023 Free Software Foundation, Inc.
3 //
4 // This file is part of the GNU ISO C++ Library. This library is free
5 // software; you can redistribute it and/or modify it under the
6 // terms of the GNU General Public License as published by the
7 // Free Software Foundation; either version 3, or (at your option)
8 // any later version.
9
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14
15 // You should have received a copy of the GNU General Public License along
16 // with this library; see the file COPYING3. If not see
17 // <http://www.gnu.org/licenses/>.
18
19 // inserters
20
21 // NB: This file is predicated on sstreams, ostreams
22 // working, not to mention other major details like char_traits, and
23 // all of the string_view class.
24
25 // { dg-do run { target c++17 } }
26 // { dg-require-fileio "" }
27
28 #include <string_view>
29 #include <string>
30 #include <fstream>
31 #include <iostream>
32 #include <testsuite_hooks.h>
33
34 // testing basic_filebuf::xsputn via stress testing with large string_views
35 // based on a bug report libstdc++ 9
36 // mode == out
37 void
38 test05(std::size_t size)
39 {
40 bool test = true;
41
42 const char filename[] = "inserters_extractors-2.txt";
43 const char fillc = 'f';
44 std::ofstream ofs(filename);
45 std::string str(size, fillc);
46 std::string_view strv{str};
47
48 // sanity checks
49 VERIFY( str.size() == size );
50 VERIFY( ofs.good() );
51
52 // stress test
53 ofs << str << std::endl;
54 if (!ofs.good())
55 test = false;
56
57 ofs << str << std::endl;
58 if (!ofs.good())
59 test = false;
60
61 VERIFY( str.size() == size );
62 VERIFY( ofs.good() );
63
64 ofs.close();
65
66 // sanity check on the written file
67 std::ifstream ifs(filename);
68 std::size_t count = 0;
69 char c;
70 while (count <= (2 * size) + 4)
71 {
72 ifs >> c;
73 if (ifs.good() && c == fillc)
74 {
75 ++count;
76 c = '0';
77 }
78 else
79 break;
80 }
81
82 VERIFY( count == 2 * size );
83 }
84
85 int
86 main()
87 {
88 test05(1);
89 test05(1000);
90 test05(10000);
91
92 return 0;
93 }