]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/getline/wchar_t/4.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / getline / wchar_t / 4.cc
CommitLineData
99dee823 1// Copyright (C) 2004-2021 Free Software Foundation, Inc.
75a25e3f
PC
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
748086b7 6// Free Software Foundation; either version 3, or (at your option)
75a25e3f
PC
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
75a25e3f 17
75a25e3f
PC
18
19// 27.6.1.3 unformatted input functions
20
21#include <cwchar> // for wcslen
22#include <istream>
23#include <testsuite_hooks.h>
24
25class Inbuf : public std::wstreambuf
26{
27 static const wchar_t buf[];
28 const wchar_t* current;
29 int size;
30
31public:
32 Inbuf()
33 {
34 current = buf;
35 size = std::wcslen(buf);
36 }
37
38 int_type underflow()
39 {
40 if (current < buf + size)
41 return traits_type::to_int_type(*current);
42 return traits_type::eof();
43 }
44
45 int_type uflow()
46 {
47 if (current < buf + size)
48 return traits_type::to_int_type(*current++);
49 return traits_type::eof();
50 }
51};
52
53const wchar_t Inbuf::buf[] = L"1234567890abcdefghij";
54
55void test01()
56{
57 using namespace std;
75a25e3f
PC
58
59 typedef char_traits<wchar_t> traits_type;
60
61 Inbuf inbuf1;
62 wistream is(&inbuf1);
63
64 wchar_t buffer[10];
65 traits_type::assign(buffer, sizeof(buffer) / sizeof(wchar_t), L'X');
66
67 is.getline(buffer, sizeof(buffer) / sizeof(wchar_t), L'0');
68 VERIFY( is.rdstate() == ios_base::goodbit );
69 VERIFY( !traits_type::compare(buffer, L"123456789\0",
70 sizeof(buffer) / sizeof(wchar_t)) );
71 VERIFY( is.gcount() == 10 );
72
73 is.clear();
fcfbdb74 74 traits_type::assign(buffer, sizeof(buffer) / sizeof(wchar_t), L'X');
75a25e3f
PC
75 is.getline(buffer, sizeof(buffer) / sizeof(wchar_t));
76 VERIFY( is.rdstate() == ios_base::failbit );
77 VERIFY( !traits_type::compare(buffer, L"abcdefghi\0",
78 sizeof(buffer) / sizeof(wchar_t)) );
79 VERIFY( is.gcount() == 9 );
80
81 is.clear();
82 traits_type::assign(buffer, sizeof(buffer) / sizeof(wchar_t), L'X');
83 is.getline(buffer, sizeof(buffer) / sizeof(wchar_t));
84 VERIFY( is.rdstate() == ios_base::eofbit );
85 VERIFY( !traits_type::compare(buffer, L"j\0XXXXXXXX",
86 sizeof(buffer) / sizeof(wchar_t)) );
87 VERIFY( is.gcount() == 1 );
88
89 is.clear();
90 traits_type::assign(buffer, sizeof(buffer) / sizeof(wchar_t), L'X');
91 is.getline(buffer, sizeof(buffer) / sizeof(wchar_t));
92 VERIFY( is.rdstate() == (ios_base::eofbit | ios_base::failbit) );
93 VERIFY( !traits_type::compare(buffer, L"\0XXXXXXXXX",
94 sizeof(buffer) / sizeof(wchar_t)) );
95 VERIFY( is.gcount() == 0 );
96}
97
98int main()
99{
100 test01();
101 return 0;
102}