sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "T_CP1256.h"
|
sl@0
|
20 |
#include <e32des8.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#define test(cond) \
|
sl@0
|
23 |
{ \
|
sl@0
|
24 |
TBool __bb = (cond); \
|
sl@0
|
25 |
TEST(__bb); \
|
sl@0
|
26 |
if (!__bb) \
|
sl@0
|
27 |
{ \
|
sl@0
|
28 |
ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
29 |
User::Leave(1); \
|
sl@0
|
30 |
} \
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
_LIT16(Uni_1, "\x0053\x0059\x004D\x0042\x0049\x0041\x004E\x0649\x064F\xFFFF");
|
sl@0
|
35 |
_LIT8(CP1256_1, "\x53\x59\x4D\x42\x49\x41\x4E\xEC\xF5\x5F");
|
sl@0
|
36 |
_LIT16(Uni_2, "\x0032\x060C\x0070\x20AC");
|
sl@0
|
37 |
_LIT8(CP1256_2, "\x32\xA1\x70\x80");
|
sl@0
|
38 |
|
sl@0
|
39 |
_LIT(KName,"CP1256");
|
sl@0
|
40 |
const TUid KPluginUid={0x10206A96};
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
// Used for supressing warning in OOM tests
|
sl@0
|
44 |
#define __UNUSED_VAR(var) var = var
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1783
|
sl@0
|
48 |
@SYMTestCaseDesc Tests API behaviours of UnicodeConv class
|
sl@0
|
49 |
@SYMTestPriority High
|
sl@0
|
50 |
@SYMTestActions Tests for conversions from/to Unicode, using a function pointer
|
sl@0
|
51 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
void CT_CP1256::TestL()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
RLibrary lib;
|
sl@0
|
56 |
|
sl@0
|
57 |
const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
|
sl@0
|
58 |
// load the dll
|
sl@0
|
59 |
TInt returnValue = lib.Load(KName,serverUid);
|
sl@0
|
60 |
test(returnValue==0);
|
sl@0
|
61 |
|
sl@0
|
62 |
// get a pointer to the specified ordinal function and call it
|
sl@0
|
63 |
TLibraryFunction function1 = lib.Lookup(1);
|
sl@0
|
64 |
TLibraryFunction function2 = lib.Lookup(2);
|
sl@0
|
65 |
TLibraryFunction function3 = lib.Lookup(3);
|
sl@0
|
66 |
|
sl@0
|
67 |
//cast the function pointer f to a function of type void with two arguments
|
sl@0
|
68 |
typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
|
sl@0
|
69 |
TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
|
sl@0
|
70 |
|
sl@0
|
71 |
typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
|
sl@0
|
72 |
TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
|
sl@0
|
73 |
|
sl@0
|
74 |
typedef TBool (*TIsLegalShortNameCharacter)(TUint);
|
sl@0
|
75 |
TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
TBuf8<15> foreign1;
|
sl@0
|
79 |
TBuf16<15> unicode2;
|
sl@0
|
80 |
|
sl@0
|
81 |
const TDesC16& unicode1(Uni_1);
|
sl@0
|
82 |
(*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
|
sl@0
|
83 |
TInt error = foreign1.Compare(CP1256_1);
|
sl@0
|
84 |
test(error==0);
|
sl@0
|
85 |
foreign1.Zero();
|
sl@0
|
86 |
|
sl@0
|
87 |
const TDesC8& foreign2(CP1256_2);
|
sl@0
|
88 |
(*aConvertToUnicodeL)(unicode2,foreign2); //testing conversion to Unicode
|
sl@0
|
89 |
error = unicode2.Compare(Uni_2);
|
sl@0
|
90 |
test(error==0);
|
sl@0
|
91 |
unicode2.Zero();
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
//testing for legal short name character
|
sl@0
|
95 |
TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
|
sl@0
|
96 |
test(result==1);
|
sl@0
|
97 |
result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
|
sl@0
|
98 |
test(result==0);
|
sl@0
|
99 |
result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
|
sl@0
|
100 |
test(result==0);
|
sl@0
|
101 |
|
sl@0
|
102 |
lib.Close();
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
void CT_CP1256::OOMTestL()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
INFO_PRINTF1(_L("OOM testing"));
|
sl@0
|
108 |
TInt err, tryCount = 0;
|
sl@0
|
109 |
do
|
sl@0
|
110 |
{
|
sl@0
|
111 |
__UHEAP_MARK;
|
sl@0
|
112 |
// find out the number of open handles
|
sl@0
|
113 |
TInt startProcessHandleCount;
|
sl@0
|
114 |
TInt startThreadHandleCount;
|
sl@0
|
115 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
116 |
|
sl@0
|
117 |
// Setting Heap failure for OOM test
|
sl@0
|
118 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
119 |
|
sl@0
|
120 |
TRAP(err,TestL());
|
sl@0
|
121 |
|
sl@0
|
122 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
123 |
|
sl@0
|
124 |
// check that no handles have leaked
|
sl@0
|
125 |
TInt endProcessHandleCount;
|
sl@0
|
126 |
TInt endThreadHandleCount;
|
sl@0
|
127 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
128 |
|
sl@0
|
129 |
test(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
130 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
131 |
|
sl@0
|
132 |
__UHEAP_MARKEND;
|
sl@0
|
133 |
}while (err == KErrNoMemory);
|
sl@0
|
134 |
|
sl@0
|
135 |
test(err == KErrNone);
|
sl@0
|
136 |
INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
|
sl@0
|
140 |
CT_CP1256::CT_CP1256()
|
sl@0
|
141 |
{
|
sl@0
|
142 |
SetTestStepName(KTestStep_T_CP1256);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
|
sl@0
|
146 |
TVerdict CT_CP1256::doTestStepL()
|
sl@0
|
147 |
{
|
sl@0
|
148 |
SetTestStepResult(EFail);
|
sl@0
|
149 |
|
sl@0
|
150 |
__UHEAP_MARK;
|
sl@0
|
151 |
|
sl@0
|
152 |
TRAPD(error1, TestL());
|
sl@0
|
153 |
TRAPD(error2, OOMTestL());
|
sl@0
|
154 |
|
sl@0
|
155 |
__UHEAP_MARKEND;
|
sl@0
|
156 |
|
sl@0
|
157 |
if(error1 == KErrNone && error2 == KErrNone)
|
sl@0
|
158 |
{
|
sl@0
|
159 |
SetTestStepResult(EPass);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
return TestStepResult();
|
sl@0
|
163 |
}
|