Update contrib.
2 * Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 TBool __bb = (cond); \
28 ERR_PRINTF1(_L("ERROR: Test Failed")); \
34 _LIT16(Uni_1, "\x0053\x0059\x004D\x3125\x6349\xAAAA\x9673\x9ED1\x3000\xFF9F");
35 _LIT8(CP932_1, "\x53\x59\x4D\x5F\x91\xA8\x5F\x92\xC2\xEE\xEC\x81\x40\xDF");
36 _LIT16(Uni_2, "\x0032\x0070\xFFFD\xFF61\x8D77\xFFFD\xFFFD");
37 _LIT8(CP932_2, "\x32\x70\x80\xA1\x8B\x4E\xA0\x96\x7F");
38 _LIT16(Uni_3, "\x4E00\x5141\x674F\x95C7\x58F1");
39 _LIT8(CP932_3, "\x88\xEA\x88\xF2\x88\xC7\x88\xC5\x88\xEB");
42 const TUid KPluginUid={0x10206A92};
45 // Used for supressing warning in OOM tests
46 #define __UNUSED_VAR(var) var = var
49 @SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1779
50 @SYMTestCaseDesc Tests API behaviours of UnicodeConv class
52 @SYMTestActions Tests for conversions from/to Unicode, using a function pointer
53 @SYMTestExpectedResults Test must not fail
55 void CT_CP932::TestL()
57 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1779 "));
60 const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
62 TInt returnValue = lib.Load(KName,serverUid);
65 // get a pointer to the specified ordinal function and call it
66 TLibraryFunction function1 = lib.Lookup(1);
67 TLibraryFunction function2 = lib.Lookup(2);
68 TLibraryFunction function3 = lib.Lookup(3);
70 //cast the function pointer f to a function of type void with two arguments
71 typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
72 TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
74 typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
75 TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
77 typedef TBool (*TIsLegalShortNameCharacter)(TUint);
78 TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
85 const TDesC16& unicode1(Uni_1);
86 (*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
87 TInt error = foreign1.Compare(CP932_1);
91 const TDesC16& unicode3(Uni_3);
92 (*aConvertFromUnicodeL)(foreign3, unicode3); //testing conversion from Unicode for INC112715
93 error = foreign3.Compare(CP932_3);
97 const TDesC8& foreign2(CP932_2);
98 (*aConvertToUnicodeL)(unicode2,foreign2); //testing conversion to Unicode
99 error = unicode2.Compare(Uni_2);
104 //testing for legal short name character
105 TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
107 result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
109 result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
111 result = (*aIsLegalShortNameCharacter)(0xFF61); //testing for a double byte character
118 @SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1847
119 @SYMTestCaseDesc Tests API behaviours of UnicodeConv class as part of INC090073
120 @SYMTestPriority High
121 @SYMTestActions Tests for correct character conversion on certain chinese characters
122 @SYMTestExpectedResults Test must not fail
124 void CT_CP932::TestINC090073L()
126 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847 "));
127 _LIT16(unicode, "\x6DFC\x715C\x9785\x7A37\x61A9\x80B1\x86A3\x7B71\x6615\x6600");
128 _LIT8(CP932Code, "\xED\xE6\xED\xF6\xE8\xD7\xE2\x6C\x8C\x65\x8D\x6E\xE5\x6E\xE2\xAA\xED\xB3\xED\xB2");
132 const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
134 TInt returnValue = lib.Load(KName,serverUid);
135 test(returnValue==0);
137 // get a pointer to the specified ordinal function and call it
138 TLibraryFunction function1 = lib.Lookup(1);
141 //cast the function pointer f to a function of type void with two arguments
142 typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
143 TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
147 const TDesC16& unicode1(unicode);
148 (*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
149 TInt error = foreign1.Compare(CP932Code);
156 void CT_CP932::OOMTestL()
158 INFO_PRINTF1(_L("OOM testing"));
159 TInt err, tryCount = 0;
163 // find out the number of open handles
164 TInt startProcessHandleCount;
165 TInt startThreadHandleCount;
166 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
168 // Setting Heap failure for OOM test
169 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
173 __UHEAP_SETFAIL(RHeap::ENone, 0);
175 // check that no handles have leaked
176 TInt endProcessHandleCount;
177 TInt endThreadHandleCount;
178 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
180 test(startProcessHandleCount == endProcessHandleCount);
181 test(startThreadHandleCount == endThreadHandleCount);
184 }while (err == KErrNoMemory);
186 test(err == KErrNone);
187 INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
193 SetTestStepName(KTestStep_T_CP932);
197 TVerdict CT_CP932::doTestStepL()
199 SetTestStepResult(EFail);
203 TRAPD(error1, TestL());
204 TRAPD(error2, TestINC090073L());
205 TRAPD(error3, OOMTestL());
209 if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone)
211 SetTestStepResult(EPass);
214 return TestStepResult();