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, "\xFFFF\x0053\x0059\x004D\x0042\x0049\x0041\x004E\xAAAA\x20AC\x02C7\x2015");
35 _LIT8(CP1250_1, "\x5F\x53\x59\x4D\x42\x49\x41\x4E\x5F\x80\xA1\x5F");
36 _LIT16(Uni_2, "\x02C7\xFFFD\x00AD");
37 _LIT8(CP1250_2, "\xA1\x98\xAD");
40 const TUid KPluginUid={0x10206A9C};
43 // Used for supressing warning in OOM tests
44 #define __UNUSED_VAR(var) var = var
47 @SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1789
48 @SYMTestCaseDesc Tests API behaviours of UnicodeConv class
50 @SYMTestActions Tests for conversions from/to Unicode, using a function pointer
51 @SYMTestExpectedResults Test must not fail
53 void CT_CP1250::TestL()
57 const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
59 TInt returnValue = lib.Load(KName,serverUid);
62 // get a pointer to the specified ordinal function and call it
63 TLibraryFunction function1 = lib.Lookup(1);
64 TLibraryFunction function2 = lib.Lookup(2);
65 TLibraryFunction function3 = lib.Lookup(3);
67 //cast the function pointer f to a function of type void with two arguments
68 typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
69 TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
71 typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
72 TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
74 typedef TBool (*TIsLegalShortNameCharacter)(TUint);
75 TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
81 const TDesC16& unicode1(Uni_1);
82 (*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
83 TInt error = foreign1.Compare(CP1250_1);
87 const TDesC8& foreign2(CP1250_2);
88 (*aConvertToUnicodeL)(unicode2,foreign2); //testing conversion to Unicode
89 error = unicode2.Compare(Uni_2);
94 //testing for legal short name character
95 TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
97 result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
99 result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
103 result = (*aIsLegalShortNameCharacter)(0x007f); //testing for legal character
105 result = (*aIsLegalShortNameCharacter)(0x0016); //testing for illegal character
111 void CT_CP1250::OOMTestL()
113 INFO_PRINTF1(_L("OOM testing"));
114 TInt err, tryCount = 0;
118 // find out the number of open handles
119 TInt startProcessHandleCount;
120 TInt startThreadHandleCount;
121 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
123 // Setting Heap failure for OOM test
124 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
128 __UHEAP_SETFAIL(RHeap::ENone, 0);
130 // check that no handles have leaked
131 TInt endProcessHandleCount;
132 TInt endThreadHandleCount;
133 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
135 test(startProcessHandleCount == endProcessHandleCount);
136 test(startThreadHandleCount == endThreadHandleCount);
139 }while (err == KErrNoMemory);
141 test(err == KErrNone);
142 INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
146 CT_CP1250::CT_CP1250()
148 SetTestStepName(KTestStep_T_CP1250);
152 TVerdict CT_CP1250::doTestStepL()
154 SetTestStepResult(EFail);
158 TRAPD(error1, TestL());
159 TRAPD(error2, OOMTestL());
163 if(error1 == KErrNone && error2 == KErrNone)
165 SetTestStepResult(EPass);
168 return TestStepResult();