]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / inserters_extractors / wchar_t / 1.cc
1 // 1999-07-01 bkoz
2
3 // Copyright (C) 1999-2020 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 // 21.3.7.9 inserters and extractors
21
22 // NB: This file is predicated on sstreams, istreams, and ostreams
23 // working, not to mention other major details like char_traits, and
24 // all of the string class.
25
26 #include <string>
27 #include <stdexcept>
28 #include <sstream>
29 #include <fstream>
30 #include <iostream>
31 #include <testsuite_hooks.h>
32
33 void test01(void)
34 {
35 typedef std::wstring::size_type csize_type;
36 typedef std::wstring::const_reference cref;
37 typedef std::wstring::reference ref;
38
39 const std::wstring str01(L"sailing grand traverse bay\n"
40 L"\t\t\t from Elk Rapids to the point reminds me of miles");
41 const std::wstring str02(L"sailing");
42 const std::wstring str03(L"grand");
43 const std::wstring str04(L"traverse");
44 const std::wstring str05;
45 std::wstring str10;
46
47 // istream& operator>>(istream&, string&)
48 std::wistringstream istrs01(str01);
49 istrs01 >> str10;
50 VERIFY( str10 == str02 );
51 try
52 {
53 std::wistringstream::int_type i01 = istrs01.peek(); //a-boo
54 VERIFY( std::wistringstream::traits_type::to_char_type(i01) == L' ' );
55 }
56 catch(std::exception& fail)
57 {
58 VERIFY( false ); // shouldn't throw
59 }
60
61 istrs01.clear();
62 istrs01 >> str10;
63 VERIFY( str10 == str03 );
64 istrs01.clear();
65 istrs01 >> str10;
66 VERIFY( str10 == str04 ); // sentry picks out the white spaces. .
67
68 std::wistringstream istrs02(str05); // empty
69 istrs02 >> str10;
70 VERIFY( str10 == str04 );
71
72 // istream& getline(istream&, string&, char)
73 // istream& getline(istream&, string&)
74 try
75 {
76 istrs01.clear();
77 getline(istrs01, str10);
78 VERIFY( !istrs01.fail() );
79 VERIFY( !istrs01.eof() );
80 VERIFY( istrs01.good() );
81 VERIFY( str10 == L" bay" );
82 }
83 catch(std::exception& fail)
84 {
85 VERIFY( false ); // shouldn't throw
86 }
87
88 try
89 {
90 istrs01.clear();
91 getline(istrs01, str10, L'\t');
92 VERIFY( !istrs01.fail() );
93 VERIFY( !istrs01.eof() );
94 VERIFY( istrs01.good() );
95 VERIFY( str10 == str05 );
96 }
97 catch(std::exception& fail)
98 {
99 VERIFY( false ); // shouldn't throw
100 }
101
102 try
103 {
104 istrs01.clear();
105 getline(istrs01, str10, L'\t');
106 VERIFY( !istrs01.fail() );
107 VERIFY( !istrs01.eof() );
108 VERIFY( istrs01.good() );
109 VERIFY( str10 == str05 );
110 }
111 catch(std::exception& fail)
112 {
113 VERIFY( false ); // shouldn't throw
114 }
115
116 try
117 {
118 istrs01.clear();
119 getline(istrs01, str10, L'.');
120 VERIFY( !istrs01.fail() );
121 VERIFY( istrs01.eof() );
122 VERIFY( !istrs01.good() );
123 VERIFY( str10 == L"\t from Elk Rapids to the point reminds me of miles" );
124 }
125 catch(std::exception& fail)
126 {
127 VERIFY( false ); // shouldn't throw
128 }
129
130 try
131 {
132 getline(istrs02, str10);
133 VERIFY( istrs02.fail() );
134 VERIFY( istrs02.eof() );
135 VERIFY( str10 == L"\t from Elk Rapids to the point reminds me of miles" );
136 }
137 catch(std::exception& fail)
138 {
139 VERIFY( false ); // shouldn't throw
140 }
141
142 // ostream& operator<<(ostream&, const basic_string&)
143 std::wostringstream ostrs01;
144 try
145 {
146 ostrs01 << str01;
147 VERIFY( ostrs01.str() == str01 );
148 }
149 catch(std::exception& fail)
150 {
151 VERIFY( false );
152 }
153
154 std::wstring hello_world;
155 std::wcout << hello_world;
156 }
157
158 int main()
159 {
160 test01();
161 return 0;
162 }