]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/conversions/buffer/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / conversions / buffer / 1.cc
1 // { dg-do run { target c++11 } }
2
3 // Copyright (C) 2015-2019 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 3, 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 COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 // 22.3.3.2.3 Buffer conversions
21
22 #include <locale>
23 #include <sstream>
24 #include <testsuite_hooks.h>
25 #include <testsuite_common_types.h>
26
27 template<typename Elem>
28 struct cvt : std::codecvt<Elem, char, std::mbstate_t> { };
29
30 template<typename Elem>
31 using buf_conv = std::wbuffer_convert<cvt<Elem>, Elem>;
32
33 using std::string;
34 using std::stringstream;
35 using std::wstring;
36 using std::wstringstream;
37
38 void test01()
39 {
40 buf_conv<wchar_t> buf;
41 std::stringbuf sbuf;
42 VERIFY( buf.rdbuf() == nullptr );
43 VERIFY( buf.rdbuf(&sbuf) == nullptr );
44 VERIFY( buf.rdbuf() == &sbuf );
45 VERIFY( buf.rdbuf(nullptr) == &sbuf );
46
47 __gnu_test::implicitly_default_constructible test;
48 test.operator()<buf_conv<wchar_t>>(); // P0935R0
49 }
50
51 void test02()
52 {
53 std::stringbuf sbuf;
54 buf_conv<char> buf(&sbuf); // noconv
55
56 stringstream ss;
57 ss.std::ios::rdbuf(&buf);
58 string input = "King for a day...";
59 ss << input << std::flush;
60 string output = sbuf.str();
61 VERIFY( input == output );
62 }
63
64 void test03()
65 {
66 std::stringbuf sbuf;
67 buf_conv<wchar_t> buf(&sbuf);
68
69 wstringstream ss;
70 ss.std::wios::rdbuf(&buf);
71 wstring input = L"Fool for a lifetime";
72 ss << input << std::flush;
73 string output = sbuf.str();
74 VERIFY( output == "Fool for a lifetime" );
75 }
76
77 int main()
78 {
79 test01();
80 test02();
81 test03();
82 }