/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
booster/lib/locale/test/test_posix_collate.cpp
120 строк
3 KB
Artyom Beilis
Merged bug fixes and updates from v1.0.x branch
21 окт 2014, 11:37
21 окт 2014, 11:37
ee41b51
Код
Авторство
О чём код?
// // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // #ifdef BOOSTER_LOCALE_NO_POSIX_BACKEND #include <iostream> int main() { std::cout << "POSIX Backend is not build... Skipping" << std::endl; } #else #include <booster/config.h> #include <booster/locale/conversion.h> #include <booster/locale/localization_backend.h> #include <booster/locale/generator.h> #include <booster/locale/info.h> #include <iomanip> #include "test_locale.h" #include "test_locale_tools.h" #include "test_posix_tools.h" #include <iostream> int get_sign(int x) { if(x<0) return -1; else if(x==0) return 0; return 1; } template<typename CharType> void test_one(std::locale const &l,std::string ia,std::string ib,int diff) { std::basic_string<CharType> a=to_correct_string<CharType>(ia,l); std::basic_string<CharType> b=to_correct_string<CharType>(ib,l); if(diff < 0) { TEST(l(a,b)); TEST(!l(b,a)); } else if(diff == 0) { TEST(!l(a,b)); TEST(!l(b,a)); } else { TEST(!l(a,b)); TEST(l(b,a)); } std::collate<CharType> const &col = std::use_facet<std::collate<CharType> >(l); TEST(diff == col.compare(a.c_str(),a.c_str()+a.size(),b.c_str(),b.c_str()+b.size())); TEST(diff == get_sign(col.transform(a.c_str(),a.c_str()+a.size()).compare(col.transform(b.c_str(),b.c_str()+b.size())))); if(diff == 0) { TEST(col.hash(a.c_str(),a.c_str()+a.size()) == col.hash(b.c_str(),b.c_str()+b.size())); } } template<typename CharType> void test_char() { booster::locale::generator gen; std::cout << "- Testing at least C" << std::endl; std::locale l = gen("en_US.UTF-8"); test_one<CharType>(l,"a","b",-1); test_one<CharType>(l,"a","a",0); std::string name; #if !defined(__APPLE__) && !defined(__FreeBSD__) std::string names[] = { "en_US.UTF-8", "en_US.ISO8859-1" }; for(unsigned i=0;i<sizeof(names)/sizeof(names[0]);i++) { if(have_locale(names[i])) { name = names[i]; std::cout << "- Testing " << name << std::endl; std::locale l=gen(name); test_one<CharType>(l,"a","ç",-1); test_one<CharType>(l,"ç","d",-1); } else { std::cout << "- " << names[i] << " not supported, skipping" << std::endl; } } #else std::cout << "- Collation is broken on this OS C standard library, skipping" << std::endl; #endif } int main() { try { booster::locale::localization_backend_manager mgr = booster::locale::localization_backend_manager::global(); mgr.select("posix"); booster::locale::localization_backend_manager::global(mgr); std::cout << "Testing char" << std::endl; test_char<char>(); std::cout << "Testing wchar_t" << std::endl; test_char<wchar_t>(); } catch(std::exception const &e) { std::cerr << "Failed " << e.what() << std::endl; return EXIT_FAILURE; } FINALIZE(); } #endif // NO POSIX // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 // boostinspect:noascii