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, "\x006D\xAAAA\x00DC\x0111\x20AC\xFFFF\x0070");
35 _LIT8(CP1258_1, "\x6D\x5F\xDC\xF0\x80\x5F\x70");
36 _LIT16(Uni_2, "\x0017\x005F\x201A\x00A0\x0303");
37 _LIT8(CP1258_2, "\x17\x5F\x82\xA0\xDE");
41 const TUid KPluginUid={0x10206A94};
44 // Used for supressing warning in OOM tests
45 #define __UNUSED_VAR(var) var = var
48 @SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1781
49 @SYMTestCaseDesc Tests API behaviours of UnicodeConv class
51 @SYMTestActions Tests for conversions from/to Unicode, using a function pointer
52 @SYMTestExpectedResults Test must not fail
54 void CT_CP1258::TestL()
58 const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
60 TInt returnValue = lib.Load(KName,serverUid);
63 // get a pointer to the specified ordinal function and call it
64 TLibraryFunction function1 = lib.Lookup(1);
65 TLibraryFunction function2 = lib.Lookup(2);
66 TLibraryFunction function3 = lib.Lookup(3);
68 //cast the function pointer f to a function of type void with two arguments
69 typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
70 TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
72 typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
73 TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
75 typedef TBool (*TIsLegalShortNameCharacter)(TUint);
76 TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
82 const TDesC16& unicode1(Uni_1);
83 (*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
84 TInt error = foreign1.Compare(CP1258_1);
88 const TDesC8& foreign2(CP1258_2);
89 (*aConvertToUnicodeL)(unicode2,foreign2); //testing conversion to Unicode
90 error = unicode2.Compare(Uni_2);
95 //testing for legal short name character
96 TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
98 result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
100 result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
106 void CT_CP1258::OOMTestL()
108 INFO_PRINTF1(_L("OOM testing"));
109 TInt err, tryCount = 0;
113 // find out the number of open handles
114 TInt startProcessHandleCount;
115 TInt startThreadHandleCount;
116 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
118 // Setting Heap failure for OOM test
119 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
123 __UHEAP_SETFAIL(RHeap::ENone, 0);
125 // check that no handles have leaked
126 TInt endProcessHandleCount;
127 TInt endThreadHandleCount;
128 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
130 test(startProcessHandleCount == endProcessHandleCount);
131 test(startThreadHandleCount == endThreadHandleCount);
134 }while (err == KErrNoMemory);
136 test(err == KErrNone);
137 INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
141 CT_CP1258::CT_CP1258()
143 SetTestStepName(KTestStep_T_CP1258);
147 TVerdict CT_CP1258::doTestStepL()
149 SetTestStepResult(EFail);
153 TRAPD(error1, TestL());
154 TRAPD(error2, OOMTestL());
158 if(error1 == KErrNone && error2 == KErrNone)
160 SetTestStepResult(EPass);
163 return TestStepResult();