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\x0042\x0049\x0041\x004E\x3125\x0E45\xFFFF");
35 _LIT8(CP874_1, "\x53\x59\x4D\x42\x49\x41\x4E\x5F\xE5\x5F");
36 _LIT16(Uni_2, "\x0032\x20AC\x0E01\xFFFD");
37 _LIT8(CP874_2, "\x32\x80\xA1\x8A");
40 const TUid KPluginUid={0x10206A93};
43 // Used for supressing warning in OOM tests
44 #define __UNUSED_VAR(var) var = var
47 @SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1780
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_CP874::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(CP874_1);
87 const TDesC8& foreign2(CP874_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
105 void CT_CP874::OOMTestL()
107 INFO_PRINTF1(_L("OOM testing"));
108 TInt err, tryCount = 0;
112 // find out the number of open handles
113 TInt startProcessHandleCount;
114 TInt startThreadHandleCount;
115 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
117 // Setting Heap failure for OOM test
118 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
122 __UHEAP_SETFAIL(RHeap::ENone, 0);
124 // check that no handles have leaked
125 TInt endProcessHandleCount;
126 TInt endThreadHandleCount;
127 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
129 test(startProcessHandleCount == endProcessHandleCount);
130 test(startThreadHandleCount == endThreadHandleCount);
133 }while (err == KErrNoMemory);
135 test(err == KErrNone);
136 INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
142 SetTestStepName(KTestStep_T_CP874);
146 TVerdict CT_CP874::doTestStepL()
148 SetTestStepResult(EFail);
152 TRAPD(error1, TestL());
153 TRAPD(error2, OOMTestL());
157 if(error1 == KErrNone && error2 == KErrNone)
159 SetTestStepResult(EPass);
162 return TestStepResult();