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_CP936.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
#define test(cond) \
|
sl@0
|
22 |
{ \
|
sl@0
|
23 |
TBool __bb = (cond); \
|
sl@0
|
24 |
TEST(__bb); \
|
sl@0
|
25 |
if (!__bb) \
|
sl@0
|
26 |
{ \
|
sl@0
|
27 |
ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
28 |
User::Leave(1); \
|
sl@0
|
29 |
} \
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
_LIT16(Uni_1, "\x0053\x0059\x004D\x3125\x312F\x3122\xFFFF\x9673\xFA29");
|
sl@0
|
33 |
_LIT8(CP936_1, "\x53\x59\x4D\xA8\xE5\x5F\xA8\xE2\x5F\xEA\x90\xFE\x4F");
|
sl@0
|
34 |
_LIT16(Uni_2, "\x0032\x20AC\xFFFD\xFFFD\x7FB1");
|
sl@0
|
35 |
_LIT8(CP936_2, "\x32\x80\xA1\x70\xC1\x7F\xC1\x7E");
|
sl@0
|
36 |
|
sl@0
|
37 |
_LIT(KName,"CP936");
|
sl@0
|
38 |
const TUid KPluginUid={0x10206A91};
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
// Used for supressing warning in OOM tests
|
sl@0
|
42 |
#define __UNUSED_VAR(var) var = var
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1778
|
sl@0
|
46 |
@SYMTestCaseDesc Tests API behaviours of UnicodeConv class
|
sl@0
|
47 |
@SYMTestPriority High
|
sl@0
|
48 |
@SYMTestActions Tests for conversions from/to Unicode, using a function pointer
|
sl@0
|
49 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
void CT_CP936::TestL()
|
sl@0
|
52 |
{
|
sl@0
|
53 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1778 "));
|
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<20> foreign1;
|
sl@0
|
79 |
TBuf16<20> 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(CP936_1);
|
sl@0
|
84 |
test(error==0);
|
sl@0
|
85 |
foreign1.Zero();
|
sl@0
|
86 |
|
sl@0
|
87 |
const TDesC8& foreign2(CP936_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 |
result = (*aIsLegalShortNameCharacter)(0x4E02); //testing for a double byte character
|
sl@0
|
102 |
test(result==1);
|
sl@0
|
103 |
|
sl@0
|
104 |
lib.Close();
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1847-0001
|
sl@0
|
109 |
@SYMTestCaseDesc Tests API behaviours of UnicodeConv class as part of INC090073
|
sl@0
|
110 |
@SYMTestPriority High
|
sl@0
|
111 |
@SYMTestActions Tests for correct character conversion on certain chinese characters for CP936
|
sl@0
|
112 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
void CT_CP936::TestINC090073L()
|
sl@0
|
115 |
{
|
sl@0
|
116 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847-0001 "));
|
sl@0
|
117 |
|
sl@0
|
118 |
_LIT16(unicode, "\x7CCD\x74EF\x8026\x8F8F\x94F3\x7633\x6DFC\x9785\x7F81\x7A37\x61A9\x80B1\x86A3\x89E5\x80F2\x9B48\x9E47\x6C19\x7B71\x946B\x6B46\x6615");
|
sl@0
|
119 |
_LIT8(CP932Code, "\xF4\xD9\xEA\xB1\xF1\xEE\xEA\xA3\xEF\xA5\xF1\xAC\xED\xB5\xF7\xB1\xEE\xBF\xF0\xA2\xED\xAC\xEB\xC5\xF2\xBC\xF6\xA1\xEB\xDC\xF7\xCC\xF0\xC2\xEB\xAF\xF3\xE3\xF6\xCE\xEC\xA7\xEA\xBF");
|
sl@0
|
120 |
|
sl@0
|
121 |
RLibrary lib;
|
sl@0
|
122 |
|
sl@0
|
123 |
const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
|
sl@0
|
124 |
// load the dll
|
sl@0
|
125 |
TInt returnValue = lib.Load(KName,serverUid);
|
sl@0
|
126 |
test(returnValue==0);
|
sl@0
|
127 |
|
sl@0
|
128 |
// get a pointer to the specified ordinal function and call it
|
sl@0
|
129 |
TLibraryFunction function1 = lib.Lookup(1);
|
sl@0
|
130 |
|
sl@0
|
131 |
|
sl@0
|
132 |
//cast the function pointer f to a function of type void with two arguments
|
sl@0
|
133 |
typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
|
sl@0
|
134 |
TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
|
sl@0
|
135 |
|
sl@0
|
136 |
TBuf8<50> foreign1;
|
sl@0
|
137 |
|
sl@0
|
138 |
foreign1.Zero();
|
sl@0
|
139 |
const TDesC16& unicode1(unicode);
|
sl@0
|
140 |
TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); //testing conversion from Unicode
|
sl@0
|
141 |
test(err==0);
|
sl@0
|
142 |
TInt error = foreign1.Compare(CP932Code);
|
sl@0
|
143 |
test(error==0);
|
sl@0
|
144 |
foreign1.Zero();
|
sl@0
|
145 |
|
sl@0
|
146 |
lib.Close();
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
void CT_CP936::OOMTestL()
|
sl@0
|
150 |
{
|
sl@0
|
151 |
INFO_PRINTF1(_L("OOM testing"));
|
sl@0
|
152 |
TInt err, tryCount = 0;
|
sl@0
|
153 |
do
|
sl@0
|
154 |
{
|
sl@0
|
155 |
__UHEAP_MARK;
|
sl@0
|
156 |
// find out the number of open handles
|
sl@0
|
157 |
TInt startProcessHandleCount;
|
sl@0
|
158 |
TInt startThreadHandleCount;
|
sl@0
|
159 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
160 |
|
sl@0
|
161 |
// Setting Heap failure for OOM test
|
sl@0
|
162 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
163 |
|
sl@0
|
164 |
TRAP(err,TestL());
|
sl@0
|
165 |
|
sl@0
|
166 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
167 |
|
sl@0
|
168 |
// check that no handles have leaked
|
sl@0
|
169 |
TInt endProcessHandleCount;
|
sl@0
|
170 |
TInt endThreadHandleCount;
|
sl@0
|
171 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
172 |
|
sl@0
|
173 |
test(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
174 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
175 |
|
sl@0
|
176 |
__UHEAP_MARKEND;
|
sl@0
|
177 |
}while (err == KErrNoMemory);
|
sl@0
|
178 |
|
sl@0
|
179 |
test(err == KErrNone);
|
sl@0
|
180 |
INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i"), tryCount);
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
CT_CP936::CT_CP936()
|
sl@0
|
184 |
{
|
sl@0
|
185 |
SetTestStepName(KTestStep_T_CP936);
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
TVerdict CT_CP936::doTestStepL()
|
sl@0
|
189 |
{
|
sl@0
|
190 |
SetTestStepResult(EFail);
|
sl@0
|
191 |
|
sl@0
|
192 |
__UHEAP_MARK;
|
sl@0
|
193 |
|
sl@0
|
194 |
TRAPD(error1, TestL());
|
sl@0
|
195 |
TRAPD(error2, TestINC090073L());
|
sl@0
|
196 |
TRAPD(error3, OOMTestL());
|
sl@0
|
197 |
|
sl@0
|
198 |
__UHEAP_MARKEND;
|
sl@0
|
199 |
|
sl@0
|
200 |
if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone)
|
sl@0
|
201 |
{
|
sl@0
|
202 |
SetTestStepResult(EPass);
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
return TestStepResult();
|
sl@0
|
206 |
}
|