OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / read / wchar_t / 1.cc
1 // Copyright (C) 2004, 2009 Free Software Foundation
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
6 // Free Software Foundation; either version 3, or (at your option)
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
15 // with this library; see the file COPYING3.  If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // 27.6.1.3 unformatted input functions
19
20 #include <cwchar> // for wcsncmp,...
21 #include <istream>
22 #include <sstream>
23 #include <testsuite_hooks.h>
24
25 void
26 test01()
27 {
28   bool test __attribute__((unused)) = true;
29   const std::wstring str_02(L"soul eyes: john coltrane quartet");
30
31   std::wstringbuf isbuf_03(str_02, std::ios_base::in);
32   std::wstringbuf isbuf_04(str_02, std::ios_base::in);
33
34   std::wistream is_00(NULL);
35   std::wistream is_03(&isbuf_03);
36   std::wistream is_04(&isbuf_04);
37   std::ios_base::iostate state1, state2, statefail, stateeof;
38   statefail = std::ios_base::failbit;
39   stateeof = std::ios_base::eofbit;
40
41   // istream& read(char_type* s, streamsize n)
42   wchar_t carray[60] = L"";
43   state1 = is_04.rdstate();
44   is_04.read(carray, 0);
45   state2 = is_04.rdstate();
46   VERIFY( state1 == state2 );
47
48   state1 = is_04.rdstate();
49   is_04.read(carray, 9);
50   state2 = is_04.rdstate();
51   VERIFY( state1 == state2 );
52   VERIFY( !std::wcsncmp(carray, L"soul eyes", 9) );
53   VERIFY( is_04.peek() == L':' );
54
55   state1 = is_03.rdstate();
56   is_03.read(carray, 60);
57   state2 = is_03.rdstate();
58   VERIFY( state1 != state2 );
59   VERIFY( static_cast<bool>(state2 & stateeof) ); 
60   VERIFY( static_cast<bool>(state2 & statefail) ); 
61   VERIFY( !std::wcsncmp(carray, L"soul eyes: john coltrane quartet", 35) );
62 }
63
64 int 
65 main()
66 {
67   test01();
68   return 0;
69 }