1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP936.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,206 @@
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_CP936.h"
1.23 +
1.24 +#define test(cond) \
1.25 + { \
1.26 + TBool __bb = (cond); \
1.27 + TEST(__bb); \
1.28 + if (!__bb) \
1.29 + { \
1.30 + ERR_PRINTF1(_L("ERROR: Test Failed")); \
1.31 + User::Leave(1); \
1.32 + } \
1.33 + }
1.34 +
1.35 +_LIT16(Uni_1, "\x0053\x0059\x004D\x3125\x312F\x3122\xFFFF\x9673\xFA29");
1.36 +_LIT8(CP936_1, "\x53\x59\x4D\xA8\xE5\x5F\xA8\xE2\x5F\xEA\x90\xFE\x4F");
1.37 +_LIT16(Uni_2, "\x0032\x20AC\xFFFD\xFFFD\x7FB1");
1.38 +_LIT8(CP936_2, "\x32\x80\xA1\x70\xC1\x7F\xC1\x7E");
1.39 +
1.40 +_LIT(KName,"CP936");
1.41 +const TUid KPluginUid={0x10206A91};
1.42 +
1.43 +
1.44 +// Used for supressing warning in OOM tests
1.45 +#define __UNUSED_VAR(var) var = var
1.46 +
1.47 +/**
1.48 +@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1778
1.49 +@SYMTestCaseDesc Tests API behaviours of UnicodeConv class
1.50 +@SYMTestPriority High
1.51 +@SYMTestActions Tests for conversions from/to Unicode, using a function pointer
1.52 +@SYMTestExpectedResults Test must not fail
1.53 +*/
1.54 +void CT_CP936::TestL()
1.55 + {
1.56 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1778 "));
1.57 +
1.58 + RLibrary lib;
1.59 +
1.60 + const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
1.61 + // load the dll
1.62 + TInt returnValue = lib.Load(KName,serverUid);
1.63 + test(returnValue==0);
1.64 +
1.65 + // get a pointer to the specified ordinal function and call it
1.66 + TLibraryFunction function1 = lib.Lookup(1);
1.67 + TLibraryFunction function2 = lib.Lookup(2);
1.68 + TLibraryFunction function3 = lib.Lookup(3);
1.69 +
1.70 + //cast the function pointer f to a function of type void with two arguments
1.71 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.72 + TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
1.73 +
1.74 + typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
1.75 + TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
1.76 +
1.77 + typedef TBool (*TIsLegalShortNameCharacter)(TUint);
1.78 + TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
1.79 +
1.80 +
1.81 + TBuf8<20> foreign1;
1.82 + TBuf16<20> unicode2;
1.83 +
1.84 + const TDesC16& unicode1(Uni_1);
1.85 + (*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
1.86 + TInt error = foreign1.Compare(CP936_1);
1.87 + test(error==0);
1.88 + foreign1.Zero();
1.89 +
1.90 + const TDesC8& foreign2(CP936_2);
1.91 + (*aConvertToUnicodeL)(unicode2,foreign2); //testing conversion to Unicode
1.92 + error = unicode2.Compare(Uni_2);
1.93 + test(error==0);
1.94 + unicode2.Zero();
1.95 +
1.96 +
1.97 + //testing for legal short name character
1.98 + TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
1.99 + test(result==1);
1.100 + result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
1.101 + test(result==0);
1.102 + result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
1.103 + test(result==0);
1.104 + result = (*aIsLegalShortNameCharacter)(0x4E02); //testing for a double byte character
1.105 + test(result==1);
1.106 +
1.107 + lib.Close();
1.108 + }
1.109 +
1.110 + /**
1.111 +@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1847-0001
1.112 +@SYMTestCaseDesc Tests API behaviours of UnicodeConv class as part of INC090073
1.113 +@SYMTestPriority High
1.114 +@SYMTestActions Tests for correct character conversion on certain chinese characters for CP936
1.115 +@SYMTestExpectedResults Test must not fail
1.116 +*/
1.117 +void CT_CP936::TestINC090073L()
1.118 + {
1.119 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847-0001 "));
1.120 +
1.121 + _LIT16(unicode, "\x7CCD\x74EF\x8026\x8F8F\x94F3\x7633\x6DFC\x9785\x7F81\x7A37\x61A9\x80B1\x86A3\x89E5\x80F2\x9B48\x9E47\x6C19\x7B71\x946B\x6B46\x6615");
1.122 + _LIT8(CP932Code, "\xF4\xD9\xEA\xB1\xF1\xEE\xEA\xA3\xEF\xA5\xF1\xAC\xED\xB5\xF7\xB1\xEE\xBF\xF0\xA2\xED\xAC\xEB\xC5\xF2\xBC\xF6\xA1\xEB\xDC\xF7\xCC\xF0\xC2\xEB\xAF\xF3\xE3\xF6\xCE\xEC\xA7\xEA\xBF");
1.123 +
1.124 + RLibrary lib;
1.125 +
1.126 + const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
1.127 + // load the dll
1.128 + TInt returnValue = lib.Load(KName,serverUid);
1.129 + test(returnValue==0);
1.130 +
1.131 + // get a pointer to the specified ordinal function and call it
1.132 + TLibraryFunction function1 = lib.Lookup(1);
1.133 +
1.134 +
1.135 + //cast the function pointer f to a function of type void with two arguments
1.136 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.137 + TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
1.138 +
1.139 + TBuf8<50> foreign1;
1.140 +
1.141 + foreign1.Zero();
1.142 + const TDesC16& unicode1(unicode);
1.143 + TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); //testing conversion from Unicode
1.144 + test(err==0);
1.145 + TInt error = foreign1.Compare(CP932Code);
1.146 + test(error==0);
1.147 + foreign1.Zero();
1.148 +
1.149 + lib.Close();
1.150 + }
1.151 +
1.152 +void CT_CP936::OOMTestL()
1.153 + {
1.154 + INFO_PRINTF1(_L("OOM testing"));
1.155 + TInt err, tryCount = 0;
1.156 + do
1.157 + {
1.158 + __UHEAP_MARK;
1.159 + // find out the number of open handles
1.160 + TInt startProcessHandleCount;
1.161 + TInt startThreadHandleCount;
1.162 + RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
1.163 +
1.164 + // Setting Heap failure for OOM test
1.165 + __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
1.166 +
1.167 + TRAP(err,TestL());
1.168 +
1.169 + __UHEAP_SETFAIL(RHeap::ENone, 0);
1.170 +
1.171 + // check that no handles have leaked
1.172 + TInt endProcessHandleCount;
1.173 + TInt endThreadHandleCount;
1.174 + RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
1.175 +
1.176 + test(startProcessHandleCount == endProcessHandleCount);
1.177 + test(startThreadHandleCount == endThreadHandleCount);
1.178 +
1.179 + __UHEAP_MARKEND;
1.180 + }while (err == KErrNoMemory);
1.181 +
1.182 + test(err == KErrNone);
1.183 + INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i"), tryCount);
1.184 + }
1.185 +
1.186 +CT_CP936::CT_CP936()
1.187 + {
1.188 + SetTestStepName(KTestStep_T_CP936);
1.189 + }
1.190 +
1.191 +TVerdict CT_CP936::doTestStepL()
1.192 + {
1.193 + SetTestStepResult(EFail);
1.194 +
1.195 + __UHEAP_MARK;
1.196 +
1.197 + TRAPD(error1, TestL());
1.198 + TRAPD(error2, TestINC090073L());
1.199 + TRAPD(error3, OOMTestL());
1.200 +
1.201 + __UHEAP_MARKEND;
1.202 +
1.203 + if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone)
1.204 + {
1.205 + SetTestStepResult(EPass);
1.206 + }
1.207 +
1.208 + return TestStepResult();
1.209 + }