blob: fa094d79074aae4cb91263f4dfea6ba89a80e13a [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <istream>
// template <class charT, class traits = char_traits<charT> >
// class basic_istream::sentry;
// explicit sentry(basic_istream<charT,traits>& is, bool noskipws = false);
#include <istream>
#include <cassert>
#include "test_macros.h"
int sync_called = 0;
template <class CharT>
struct testbuf
: public std::basic_streambuf<CharT>
{
typedef std::basic_string<CharT> string_type;
typedef std::basic_streambuf<CharT> base;
private:
string_type str_;
public:
testbuf() {}
testbuf(const string_type& str)
: str_(str)
{
base::setg(const_cast<CharT*>(str_.data()),
const_cast<CharT*>(str_.data()),
const_cast<CharT*>(str_.data()) + str_.size());
}
CharT* eback() const {return base::eback();}
CharT* gptr() const {return base::gptr();}
CharT* egptr() const {return base::egptr();}
protected:
int virtual sync()
{
++sync_called;
return 1;
}
};
int main(int, char**)
{
{
std::istream is((testbuf<char>*)0);
std::istream::sentry sen(is, true);
assert(!(bool)sen);
assert(!is.good());
assert(is.gcount() == 0);
assert(sync_called == 0);
}
{
testbuf<char> sb(" 123");
std::istream is(&sb);
std::istream::sentry sen(is, true);
assert((bool)sen);
assert(is.good());
assert(is.gcount() == 0);
assert(sync_called == 0);
assert(sb.gptr() == sb.eback());
}
{
testbuf<char> sb(" 123");
std::istream is(&sb);
std::istream::sentry sen(is);
assert((bool)sen);
assert(is.good());
assert(sync_called == 0);
assert(sb.gptr() == sb.eback() + 3);
}
{
testbuf<char> sb(" ");
std::istream is(&sb);
std::istream::sentry sen(is);
assert(!(bool)sen);
assert(is.fail());
assert(is.eof());
assert(sync_called == 0);
assert(sb.gptr() == sb.eback() + 6);
}
{
testbuf<char> sb(" ");
std::istream is(&sb);
std::istream::sentry sen(is, true);
assert((bool)sen);
assert(is.good());
assert(sync_called == 0);
assert(sb.gptr() == sb.eback());
}
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
std::wistream is((testbuf<wchar_t>*)0);
std::wistream::sentry sen(is, true);
assert(!(bool)sen);
assert(!is.good());
assert(is.gcount() == 0);
assert(sync_called == 0);
}
{
testbuf<wchar_t> sb(L" 123");
std::wistream is(&sb);
std::wistream::sentry sen(is, true);
assert((bool)sen);
assert(is.good());
assert(is.gcount() == 0);
assert(sync_called == 0);
assert(sb.gptr() == sb.eback());
}
{
testbuf<wchar_t> sb(L" 123");
std::wistream is(&sb);
std::wistream::sentry sen(is);
assert((bool)sen);
assert(is.good());
assert(sync_called == 0);
assert(sb.gptr() == sb.eback() + 3);
}
#endif
return 0;
}