1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_sal.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include "testshl/simpleheader.hxx" 32*cdf0e10cSrcweir #include "rtl/strbuf.hxx" 33*cdf0e10cSrcweir #include "rtl/string.hxx" 34*cdf0e10cSrcweir #include "rtl/ustring.hxx" 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir namespace test { namespace oustring { 37*cdf0e10cSrcweir 38*cdf0e10cSrcweir class Convert: public CppUnit::TestFixture 39*cdf0e10cSrcweir { 40*cdf0e10cSrcweir private: 41*cdf0e10cSrcweir void convertToString(); 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir CPPUNIT_TEST_SUITE(Convert); 44*cdf0e10cSrcweir CPPUNIT_TEST(convertToString); 45*cdf0e10cSrcweir CPPUNIT_TEST_SUITE_END(); 46*cdf0e10cSrcweir }; 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir } } 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(test::oustring::Convert, "alltest"); 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir namespace { 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir struct TestConvertToString 55*cdf0e10cSrcweir { 56*cdf0e10cSrcweir sal_Unicode aSource[100]; 57*cdf0e10cSrcweir sal_Int32 nLength; 58*cdf0e10cSrcweir rtl_TextEncoding nEncoding; 59*cdf0e10cSrcweir sal_uInt32 nFlags; 60*cdf0e10cSrcweir char const * pStrict; 61*cdf0e10cSrcweir char const * pRelaxed; 62*cdf0e10cSrcweir }; 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir void testConvertToString(TestConvertToString const & rTest) 65*cdf0e10cSrcweir { 66*cdf0e10cSrcweir const rtl::OUString aSource(rTest.aSource, rTest.nLength); 67*cdf0e10cSrcweir rtl::OString aStrict(RTL_CONSTASCII_STRINGPARAM("12345")); 68*cdf0e10cSrcweir bool bSuccess = aSource.convertToString(&aStrict, rTest.nEncoding, 69*cdf0e10cSrcweir rTest.nFlags); 70*cdf0e10cSrcweir rtl::OString aRelaxed(rtl::OUStringToOString(aSource, rTest.nEncoding, 71*cdf0e10cSrcweir rTest.nFlags)); 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir rtl::OStringBuffer aPrefix; 74*cdf0e10cSrcweir aPrefix.append(RTL_CONSTASCII_STRINGPARAM("{")); 75*cdf0e10cSrcweir for (sal_Int32 i = 0; i < rTest.nLength; ++i) 76*cdf0e10cSrcweir { 77*cdf0e10cSrcweir aPrefix.append(RTL_CONSTASCII_STRINGPARAM("U+")); 78*cdf0e10cSrcweir aPrefix.append(static_cast< sal_Int32 >(rTest.aSource[i]), 16); 79*cdf0e10cSrcweir if (i + 1 < rTest.nLength) 80*cdf0e10cSrcweir aPrefix.append(RTL_CONSTASCII_STRINGPARAM(",")); 81*cdf0e10cSrcweir } 82*cdf0e10cSrcweir aPrefix.append(RTL_CONSTASCII_STRINGPARAM("}, ")); 83*cdf0e10cSrcweir aPrefix.append(static_cast< sal_Int32 >(rTest.nEncoding)); 84*cdf0e10cSrcweir aPrefix.append(RTL_CONSTASCII_STRINGPARAM(", 0x")); 85*cdf0e10cSrcweir aPrefix.append(static_cast< sal_Int32 >(rTest.nFlags), 16); 86*cdf0e10cSrcweir aPrefix.append(RTL_CONSTASCII_STRINGPARAM(" -> ")); 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir if (bSuccess) 89*cdf0e10cSrcweir { 90*cdf0e10cSrcweir if (rTest.pStrict == 0 || !aStrict.equals(rTest.pStrict)) 91*cdf0e10cSrcweir { 92*cdf0e10cSrcweir rtl::OStringBuffer aMessage(aPrefix); 93*cdf0e10cSrcweir aMessage.append(RTL_CONSTASCII_STRINGPARAM("strict = \"")); 94*cdf0e10cSrcweir aMessage.append(aStrict); 95*cdf0e10cSrcweir aMessage.append(RTL_CONSTASCII_STRINGPARAM("\"")); 96*cdf0e10cSrcweir CPPUNIT_ASSERT_MESSAGE(aMessage.getStr(), false); 97*cdf0e10cSrcweir } 98*cdf0e10cSrcweir } 99*cdf0e10cSrcweir else 100*cdf0e10cSrcweir { 101*cdf0e10cSrcweir if (!aStrict.equals(rtl::OString(RTL_CONSTASCII_STRINGPARAM("12345")))) 102*cdf0e10cSrcweir { 103*cdf0e10cSrcweir rtl::OStringBuffer aMessage(aPrefix); 104*cdf0e10cSrcweir aMessage.append(RTL_CONSTASCII_STRINGPARAM("modified output")); 105*cdf0e10cSrcweir CPPUNIT_ASSERT_MESSAGE(aMessage.getStr(), false); 106*cdf0e10cSrcweir } 107*cdf0e10cSrcweir if (rTest.pStrict != 0) 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir rtl::OStringBuffer aMessage(aPrefix); 110*cdf0e10cSrcweir aMessage.append(RTL_CONSTASCII_STRINGPARAM("failed")); 111*cdf0e10cSrcweir CPPUNIT_ASSERT_MESSAGE(aMessage.getStr(), false); 112*cdf0e10cSrcweir } 113*cdf0e10cSrcweir } 114*cdf0e10cSrcweir if (!aRelaxed.equals(rTest.pRelaxed)) 115*cdf0e10cSrcweir { 116*cdf0e10cSrcweir rtl::OStringBuffer aMessage(aPrefix); 117*cdf0e10cSrcweir aMessage.append(RTL_CONSTASCII_STRINGPARAM("relaxed = \"")); 118*cdf0e10cSrcweir aMessage.append(aRelaxed); 119*cdf0e10cSrcweir aMessage.append(RTL_CONSTASCII_STRINGPARAM("\"")); 120*cdf0e10cSrcweir CPPUNIT_ASSERT_MESSAGE(aMessage.getStr(), false); 121*cdf0e10cSrcweir } 122*cdf0e10cSrcweir } 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir } 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir void test::oustring::Convert::convertToString() 127*cdf0e10cSrcweir { 128*cdf0e10cSrcweir TestConvertToString const aTests[] 129*cdf0e10cSrcweir = { { { 0 }, 130*cdf0e10cSrcweir 0, 131*cdf0e10cSrcweir RTL_TEXTENCODING_ASCII_US, 132*cdf0e10cSrcweir RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR 133*cdf0e10cSrcweir | RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR, 134*cdf0e10cSrcweir "", 135*cdf0e10cSrcweir "" }, 136*cdf0e10cSrcweir { { 0 }, 137*cdf0e10cSrcweir 0, 138*cdf0e10cSrcweir RTL_TEXTENCODING_ASCII_US, 139*cdf0e10cSrcweir OUSTRING_TO_OSTRING_CVTFLAGS, 140*cdf0e10cSrcweir "", 141*cdf0e10cSrcweir "" }, 142*cdf0e10cSrcweir { { 0x0041,0x0042,0x0043 }, 143*cdf0e10cSrcweir 3, 144*cdf0e10cSrcweir RTL_TEXTENCODING_ASCII_US, 145*cdf0e10cSrcweir RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR 146*cdf0e10cSrcweir | RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR, 147*cdf0e10cSrcweir "ABC", 148*cdf0e10cSrcweir "ABC" }, 149*cdf0e10cSrcweir { { 0x0041,0x0042,0x0043 }, 150*cdf0e10cSrcweir 3, 151*cdf0e10cSrcweir RTL_TEXTENCODING_ASCII_US, 152*cdf0e10cSrcweir OUSTRING_TO_OSTRING_CVTFLAGS, 153*cdf0e10cSrcweir "ABC", 154*cdf0e10cSrcweir "ABC" }, 155*cdf0e10cSrcweir { { 0xB800 }, 156*cdf0e10cSrcweir 1, 157*cdf0e10cSrcweir RTL_TEXTENCODING_ISO_2022_JP, 158*cdf0e10cSrcweir RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR 159*cdf0e10cSrcweir | RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR, 160*cdf0e10cSrcweir 0, 161*cdf0e10cSrcweir "" }, 162*cdf0e10cSrcweir // the next also tests that a short source produces a long target: 163*cdf0e10cSrcweir { { 0xB800 }, 164*cdf0e10cSrcweir 1, 165*cdf0e10cSrcweir RTL_TEXTENCODING_ISO_2022_JP, 166*cdf0e10cSrcweir OUSTRING_TO_OSTRING_CVTFLAGS, 167*cdf0e10cSrcweir "\x1B(B?", 168*cdf0e10cSrcweir "\x1B(B?" }, 169*cdf0e10cSrcweir { { 0x0041,0x0100,0x0042 }, 170*cdf0e10cSrcweir 3, 171*cdf0e10cSrcweir RTL_TEXTENCODING_ISO_8859_1, 172*cdf0e10cSrcweir RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR 173*cdf0e10cSrcweir | RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR, 174*cdf0e10cSrcweir 0, 175*cdf0e10cSrcweir "A" }, 176*cdf0e10cSrcweir { { 0x0041,0x0100,0x0042 }, 177*cdf0e10cSrcweir 3, 178*cdf0e10cSrcweir RTL_TEXTENCODING_ISO_8859_1, 179*cdf0e10cSrcweir OUSTRING_TO_OSTRING_CVTFLAGS, 180*cdf0e10cSrcweir "A?B", 181*cdf0e10cSrcweir "A?B" } }; 182*cdf0e10cSrcweir for (unsigned int i = 0; i < sizeof aTests / sizeof aTests[0]; ++i) 183*cdf0e10cSrcweir testConvertToString(aTests[i]); 184*cdf0e10cSrcweir } 185