os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP950.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP950.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,298 @@
     1.4 +/*
     1.5 +* Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include "T_CP950.h"
    1.23 +#include <e32des8.h>
    1.24 +
    1.25 +#define test(cond)                                          \
    1.26 +    {                                                       \
    1.27 +    TBool __bb = (cond);                                    \
    1.28 +    TEST(__bb);                                             \
    1.29 +    if (!__bb)                                              \
    1.30 +        {                                                   \
    1.31 +        ERR_PRINTF1(_L("ERROR: Test Failed"));              \
    1.32 +        User::Leave(1);                                     \
    1.33 +        }                                                   \
    1.34 +    }
    1.35 +
    1.36 +
    1.37 +_LIT16(Uni_1, "\x0053\x3125\x3122\xAAAA\x9673\x2593\xFA0C\x3000");
    1.38 +_LIT8(CP950_1, "\x53\xA3\xB6\xA3\xB3\x5F\xB3\xAF\xF9\xFE\xC9\x4A\xA1\x40");
    1.39 +_LIT16(Uni_2, "\x0032\xFFFD\xFE3E\xFFFD\xFFFD");
    1.40 +_LIT8(CP950_2, "\x32\x80\xA1\x70\xC1\x7F\xA7");
    1.41 +
    1.42 +_LIT(KName,"CP950");
    1.43 +const TUid KPluginUid={0x10206A8C};
    1.44 +
    1.45 +
    1.46 +// Used for supressing warning in OOM tests
    1.47 +#define __UNUSED_VAR(var) var = var
    1.48 +
    1.49 +//
    1.50 +/**
    1.51 +@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1776
    1.52 +@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
    1.53 +@SYMTestPriority 	    High
    1.54 +@SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
    1.55 +@SYMTestExpectedResults Test must not fail
    1.56 +*/
    1.57 +void CT_CP950::TestL()
    1.58 +	{
    1.59 +    INFO_PRINTF1(_L("@SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1776"));
    1.60 +	RLibrary lib;
    1.61 +
    1.62 +	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
    1.63 +	// load the dll
    1.64 +	TInt returnValue = lib.Load(KName,serverUid);
    1.65 +	test(returnValue==0);
    1.66 +
    1.67 +	// get a pointer to the specified ordinal function and call it
    1.68 +	TLibraryFunction function1 = lib.Lookup(1);
    1.69 +	TLibraryFunction function2 = lib.Lookup(2);
    1.70 +	TLibraryFunction function3 = lib.Lookup(3);
    1.71 +
    1.72 +	//cast the function pointer f to a function of type void with two arguments
    1.73 +	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
    1.74 +	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
    1.75 +
    1.76 +	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
    1.77 +	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
    1.78 +
    1.79 +	typedef TBool (*TIsLegalShortNameCharacter)(TUint);
    1.80 +	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
    1.81 +
    1.82 +	TBuf8<20> foreign1;
    1.83 +	TBuf16<20> unicode2;
    1.84 +
    1.85 +	const TDesC16& unicode1(Uni_1);
    1.86 +	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
    1.87 +	TInt error = foreign1.Compare(CP950_1);
    1.88 +
    1.89 +	test(error==0);
    1.90 +	foreign1.Zero();
    1.91 +
    1.92 +	const TDesC8& foreign2(CP950_2);
    1.93 +	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
    1.94 +	error = unicode2.Compare(Uni_2);
    1.95 +	test(error==0);
    1.96 +	unicode2.Zero();
    1.97 +
    1.98 +
    1.99 +	//testing for legal short name character
   1.100 +	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
   1.101 +	test(result==1);
   1.102 +	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
   1.103 +	test(result==0);
   1.104 +	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
   1.105 +	test(result==0);
   1.106 +	result = (*aIsLegalShortNameCharacter)(0x3000); //testing for a double byte character
   1.107 +	test(result==1);
   1.108 +
   1.109 +	lib.Close();
   1.110 +	}
   1.111 +
   1.112 +// test code for INC080460: FATCharsetConv panics - stops china build booting
   1.113 +void CT_CP950::TestINC080460L()
   1.114 +	{
   1.115 +	RLibrary lib;
   1.116 +	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
   1.117 +
   1.118 +	// load the dll
   1.119 +	TInt returnValue = lib.Load(KName,serverUid);
   1.120 +	test(returnValue==0);
   1.121 +
   1.122 +	// get a pointer to the specified ordinal function and call it
   1.123 +	TLibraryFunction function1 = lib.Lookup(1);
   1.124 +	TLibraryFunction function2 = lib.Lookup(2);
   1.125 +
   1.126 +	//cast the function pointer f to a function of type void with two arguments
   1.127 +	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
   1.128 +	TConvertFromUnicodeL ConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
   1.129 +
   1.130 +	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
   1.131 +	TConvertToUnicodeL ConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
   1.132 +
   1.133 +	// the problem in this defect is when the foreign buffer is not big enough the code panics
   1.134 +	// the solution is for the code to leave
   1.135 +
   1.136 +	// the foreign buffer is 11 (8+3) and there are 17 unicode characters
   1.137 +	TBuf8<11> foreign;
   1.138 +	_LIT16(longUnicode, "\x0053\x3125\x3122\xAAAA\x0053\x3125\x3122\xAAAA\x0053\x3125\x3122\xAAAA\x0053\x3125\x3122\xAAAA");
   1.139 +	const TDesC16& testUnicode1(longUnicode);
   1.140 +	TInt error = KErrNone;
   1.141 +
   1.142 +	// ConvertFromUnicodeL - check that this call leaves
   1.143 +	foreign.Zero();
   1.144 +	TRAP( error, ConvertFromUnicodeL(foreign, testUnicode1)); 	//testing conversion from Unicode
   1.145 +	test(error == KErrOverflow );
   1.146 +
   1.147 +	// ConvertFromUnicodeL - test 1 character to long leaves
   1.148 +	_LIT16(longUnicode2, "FilenameEx\x3122");
   1.149 +	const TDesC16& testUnicode2(longUnicode2);
   1.150 +	foreign.Zero();
   1.151 +	error = KErrNone;
   1.152 +	TRAP( error, ConvertFromUnicodeL(foreign, testUnicode2)); 	//testing conversion from Unicode
   1.153 +	test(error == KErrOverflow );
   1.154 +
   1.155 +	// ConvertFromUnicodeL - test 11 character does not leave
   1.156 +	_LIT16(longUnicode3, "FilenameExt");
   1.157 +	const TDesC16& testUnicode3(longUnicode3);
   1.158 +	foreign.Zero();
   1.159 +	error = KErrNone;
   1.160 +	TRAP( error, ConvertFromUnicodeL(foreign, testUnicode3)); 	//testing conversion from Unicode
   1.161 +	test(error == KErrNone );
   1.162 +
   1.163 +	// check ConvertToUnicodeL leaves when the buffer is too small
   1.164 +	TBuf16<6> unicodeBuffer;
   1.165 +	_LIT8(sampletext, "this is far to big to fit");
   1.166 +	const TDesC8& sample(sampletext);
   1.167 +
   1.168 +	unicodeBuffer.Zero();
   1.169 +	error = KErrNone;
   1.170 +	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample)); 	//testing conversion to Unicode
   1.171 +	test(error==KErrOverflow);
   1.172 +
   1.173 +	// test 6 characters does NOT leave
   1.174 +	_LIT8( chars6, "abcdef");
   1.175 +	const TDesC8& sample6(chars6);
   1.176 +	unicodeBuffer.Zero();
   1.177 +	error = KErrNone;
   1.178 +	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample6)); 	//testing conversion to Unicode
   1.179 +	test(error==KErrNone);
   1.180 +
   1.181 +	// test 7 characters does leave
   1.182 +	_LIT8( chars7, "abcdefg");
   1.183 +	const TDesC8& sample7(chars7);
   1.184 +	unicodeBuffer.Zero();
   1.185 +	error = KErrNone;
   1.186 +	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample7)); 	//testing conversion to Unicode
   1.187 +	test(error==KErrOverflow);
   1.188 +
   1.189 +	// test when 7 foreign characters fits in 5 unicode it does NOT leave
   1.190 +	_LIT8( CP950_sample, "\x32\x80\xA1\x70\xC1\x7F\xA7");
   1.191 +	const TDesC8& sample7to5(CP950_sample);
   1.192 +	unicodeBuffer.Zero();
   1.193 +	error = KErrNone;
   1.194 +	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample7to5)); 	//testing conversion to Unicode
   1.195 +	test(error==KErrNone);
   1.196 +
   1.197 +	lib.Close();
   1.198 +	}
   1.199 +
   1.200 +
   1.201 +/**
   1.202 +@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1847-0003
   1.203 +@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class as part of INC090073
   1.204 +@SYMTestPriority 	    High
   1.205 +@SYMTestActions  	    Tests for correct character conversion on certain chinese characters for CP936
   1.206 +@SYMTestExpectedResults Test must not fail
   1.207 +*/
   1.208 +void CT_CP950::TestINC090073L()
   1.209 +	{
   1.210 +    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847-0003 "));
   1.211 + 	_LIT16(unicode, "\x7C91\x8026\x8160\x7633\x6DFC\x715C\x6600\x9785\x86D8\x7A37\x61A9\x80B1\x86A3\x89E5\x80F2\x9B48\x6C19\x7B71\x946B\x6B46\x6615");
   1.212 +	_LIT8(CP950Code, "\xD3\x4A\xBD\xA2\xDF\x73\xEA\x6F\xD9\xE7\xB7\xD4\xA9\xFB\xBB\xDF\xDB\xB1\xBD\x5E\xBE\xCD\xAA\xD0\xB0\x47\xDF\xFD\xD3\x6A\xEF\x69\xCB\x49\xDF\x4E\xF8\xCA\xDD\xF5\xA9\xFD");
   1.213 +
   1.214 +	RLibrary lib;
   1.215 +
   1.216 +	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
   1.217 +	// load the dll
   1.218 +	TInt returnValue = lib.Load(KName,serverUid);
   1.219 +	test(returnValue==0);
   1.220 +
   1.221 +	// get a pointer to the specified ordinal function and call it
   1.222 +	TLibraryFunction function1 = lib.Lookup(1);
   1.223 +
   1.224 +	//cast the function pointer f to a function of type void with two arguments
   1.225 +	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
   1.226 +	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
   1.227 +
   1.228 +	TBuf8<50> foreign1;
   1.229 +
   1.230 +	foreign1.Zero();
   1.231 +	const TDesC16& unicode1(unicode);
   1.232 +	TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); 	//testing conversion from Unicode
   1.233 +	test(err==0);
   1.234 +	TInt error = foreign1.Compare(CP950Code);
   1.235 +	test(error==0);
   1.236 +	foreign1.Zero();
   1.237 +
   1.238 +	lib.Close();
   1.239 +	}
   1.240 +
   1.241 +void CT_CP950::OOMTestL()
   1.242 +	{
   1.243 +    INFO_PRINTF1(_L("OOM testing"));
   1.244 +	TInt err, tryCount = 0;
   1.245 +	do
   1.246 +		{
   1.247 +			__UHEAP_MARK;
   1.248 +  		// find out the number of open handles
   1.249 +		TInt startProcessHandleCount;
   1.250 +		TInt startThreadHandleCount;
   1.251 +		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   1.252 +
   1.253 +			// Setting Heap failure for OOM test
   1.254 +		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   1.255 +
   1.256 +		TRAP(err,TestL());
   1.257 +
   1.258 +		__UHEAP_SETFAIL(RHeap::ENone, 0);
   1.259 +
   1.260 +		// check that no handles have leaked
   1.261 +		TInt endProcessHandleCount;
   1.262 +		TInt endThreadHandleCount;
   1.263 +		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   1.264 +
   1.265 +		test(startProcessHandleCount == endProcessHandleCount);
   1.266 +		test(startThreadHandleCount  == endThreadHandleCount);
   1.267 +
   1.268 +		__UHEAP_MARKEND;
   1.269 +		}while (err == KErrNoMemory);
   1.270 +
   1.271 +	test(err == KErrNone);
   1.272 +	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
   1.273 +	}
   1.274 +
   1.275 +
   1.276 +CT_CP950::CT_CP950()
   1.277 +    {
   1.278 +    SetTestStepName(KTestStep_T_CP950);
   1.279 +    }
   1.280 +
   1.281 +
   1.282 +TVerdict CT_CP950::doTestStepL()
   1.283 +    {
   1.284 +    SetTestStepResult(EFail);
   1.285 +
   1.286 +    __UHEAP_MARK;
   1.287 +
   1.288 +    TRAPD(error1, TestL());
   1.289 +    TRAPD(error2, TestINC090073L());
   1.290 +    TRAPD(error3, TestINC080460L());
   1.291 +    TRAPD(error4, OOMTestL());
   1.292 +
   1.293 +    __UHEAP_MARKEND;
   1.294 +
   1.295 +    if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone && error4 == KErrNone)
   1.296 +        {
   1.297 +        SetTestStepResult(EPass);
   1.298 +        }
   1.299 +
   1.300 +    return TestStepResult();
   1.301 +    }