]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/time_get/get_weekday/char/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_weekday / char / 1.cc
1 // 2001-09-21 Benjamin Kosnik <bkoz@redhat.com>
2
3 // Copyright (C) 2001-2024 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.2.5.1.1 time_get members
21
22 #include <locale>
23 #include <sstream>
24 #include <testsuite_hooks.h>
25
26 void test01()
27 {
28 using namespace std;
29
30 typedef istreambuf_iterator<char> iterator_type;
31
32 // basic construction
33 locale loc_c = locale::classic();
34
35 const string empty;
36
37 // create an ostream-derived object, cache the time_get facet
38 iterator_type end;
39
40 istringstream iss;
41 iss.imbue(loc_c);
42 const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc());
43
44 const ios_base::iostate good = ios_base::goodbit;
45 ios_base::iostate errorstate = good;
46
47 // create "C" time objects
48 const tm time_bday = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
49
50 // iter_type
51 // get_weekday(iter_type, iter_type, ios_base&,
52 // ios_base::iostate&, tm*) const
53
54 // sanity checks for "C" locale
55 iss.str("Sunday");
56 iterator_type is_it01(iss);
57 tm time01;
58 errorstate = good;
59 tim_get.get_weekday(is_it01, end, iss, errorstate, &time01);
60 VERIFY( time01.tm_wday == time_bday.tm_wday );
61 VERIFY( errorstate == ios_base::eofbit );
62
63 iss.str("Sun");
64 iterator_type is_it02(iss);
65 tm time02;
66 errorstate = good;
67 tim_get.get_weekday(is_it02, end, iss, errorstate, &time02);
68 VERIFY( time02.tm_wday == time_bday.tm_wday );
69 VERIFY( errorstate == ios_base::eofbit );
70
71 iss.str("Sun ");
72 iterator_type is_it03(iss);
73 tm time03;
74 errorstate = good;
75 iterator_type ret03 = tim_get.get_weekday(is_it03, end, iss, errorstate,
76 &time03);
77 VERIFY( time03.tm_wday == time_bday.tm_wday );
78 VERIFY( errorstate == good );
79 VERIFY( *ret03 == ' ' );
80
81 iss.str("San");
82 iterator_type is_it04(iss);
83 tm time04;
84 time04.tm_wday = 4;
85 errorstate = good;
86 iterator_type ret04 = tim_get.get_weekday(is_it04, end, iss, errorstate,
87 &time04);
88 VERIFY( time04.tm_wday == 4 );
89 VERIFY( *ret04 == 'n' );
90 VERIFY( errorstate == ios_base::failbit );
91
92 iss.str("Tuesday ");
93 iterator_type is_it05(iss);
94 tm time05;
95 errorstate = good;
96 iterator_type ret05 = tim_get.get_weekday(is_it05, end, iss, errorstate,
97 &time05);
98 VERIFY( time05.tm_wday == 2 );
99 VERIFY( errorstate == good );
100 VERIFY( *ret05 == ' ' );
101
102 iss.str("Tuesducky "); // Kind of like Fryday, without the swirls.
103 iterator_type is_it06(iss);
104 tm time06;
105 time06.tm_wday = 4;
106 errorstate = good;
107 iterator_type ret06 = tim_get.get_weekday(is_it06, end, iss, errorstate,
108 &time06);
109 VERIFY( time06.tm_wday == 4 );
110 VERIFY( errorstate == ios_base::failbit );
111 VERIFY( *ret06 == 'u' );
112 }
113
114 int main()
115 {
116 test01();
117 return 0;
118 }