1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
// { dg-require-namedlocale "de_DE.utf8" }
// { dg-options " -std=gnu++11 " }
// 2014-04-14 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
// Copyright (C) 2014-2015 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// 22.4.5.1.1 (C++11) time_get members [locale.time.get.members]
#include <locale>
#include <sstream>
#include <testsuite_hooks.h>
#ifndef _GLIBCXX_ASSERT
# include <iostream>
# define PRINT(x) cout << #x << ": " << x << endl
# define TESTHEAD(x) cout << x << endl
#else
# define PRINT(x) do {} while(false)
# define TESTHEAD(x) do {} while(false)
#endif
void test02()
{
using namespace std;
bool test __attribute__((unused)) = true;
locale loc_c = locale::classic();
locale loc_de = locale("de_DE.utf8");
VERIFY( loc_de != loc_c );
wistringstream iss;
iss.imbue(loc_de);
const time_get<wchar_t>& tget = use_facet<time_get<wchar_t>>(iss.getloc());
typedef istreambuf_iterator<wchar_t> iter;
const iter end;
ios_base::iostate err;
tm time;
TESTHEAD("German locale test");
iss.str(L"Montag, den 14. April 2014");
wstring format = L"%A, den %d. %B %Y";
auto ret = tget.get(iter(iss), end, iss, err, &time,
format.data(), format.data()+format.size());
PRINT(err);
VERIFY(err == ios_base::eofbit);
PRINT(time.tm_year);
VERIFY(time.tm_year == 114);
PRINT(time.tm_mon);
VERIFY(time.tm_mon == 3);
PRINT(time.tm_wday);
VERIFY(time.tm_wday == 1);
PRINT(time.tm_mday);
VERIFY(time.tm_mday == 14);
VERIFY(end == end);
TESTHEAD("German locale: Check case-insensitivity");
tm time2;
iss.str(L"Montag, den 14. April 2014");
format = L"%A, DEN %d. %B %Y"; // check case-insensitivity
ret = tget.get(iter(iss), end, iss, err, &time2,
format.data(), format.data()+format.size());
PRINT(err);
VERIFY(err == ios_base::eofbit);
PRINT(time2.tm_year);
VERIFY(time2.tm_year == 114);
PRINT(time2.tm_mon);
VERIFY(time2.tm_mon == 3);
PRINT(time2.tm_wday);
VERIFY(time2.tm_wday == 1);
PRINT(time2.tm_mday);
VERIFY(time2.tm_mday == 14);
VERIFY(end == end);
TESTHEAD("German locale: Check single");
iss.str(L"Mittwoch");
ret = tget.get(iter(iss), end, iss, err, &time, L'A');
PRINT(err);
VERIFY(err == ios_base::eofbit);
PRINT(time.tm_wday);
VERIFY(time.tm_wday == 3);
VERIFY(end == end);
}
int main()
{
test02();
}
|