1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP54936.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,860 @@
1.4 +/*
1.5 +* Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include "T_CP54936.h"
1.23 +#include <e32des8.h>
1.24 +#include <hal.h>
1.25 +
1.26 +#define test(cond) \
1.27 + { \
1.28 + TBool __bb = (cond); \
1.29 + TEST(__bb); \
1.30 + if (!__bb) \
1.31 + { \
1.32 + ERR_PRINTF1(_L("ERROR: Test Failed")); \
1.33 + User::Leave(1); \
1.34 + } \
1.35 + }
1.36 +
1.37 +
1.38 +const TInt MaxCount = 10000; // iteration number for performance tests
1.39 +
1.40 +// cp54936 should be faster than cp936
1.41 +_LIT(KName936,"CP936");
1.42 +const TUid KPluginUid936={0x10206A91};
1.43 +
1.44 +
1.45 +_LIT(KName,"CP54936");
1.46 +const TUid KPluginUid={0x1028703b};
1.47 +
1.48 +
1.49 +void CT_CP54936::TestOut(const TDesC16 &des)
1.50 + {
1.51 + for (TInt i=0; i<des.Length(); i++)
1.52 + INFO_PRINTF2(_L("%04X "), des[i]);
1.53 + }
1.54 +
1.55 +void CT_CP54936::TestOut(const TDesC8 &des)
1.56 + {
1.57 + for (TInt i=0; i<des.Length(); i++)
1.58 + INFO_PRINTF2(_L("%02X "), des[i]);
1.59 + }
1.60 +
1.61 +// Used for supressing warning in OOM tests
1.62 +#define __UNUSED_VAR(var) var = var
1.63 +
1.64 +/**
1.65 +@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1778
1.66 +@SYMTestCaseDesc Tests API behaviours of UnicodeConv class
1.67 +@SYMTestPriority High
1.68 +@SYMTestActions Tests for conversions from/to Unicode, using a function pointer
1.69 +@SYMTestExpectedResults Test must not fail
1.70 +*/
1.71 +void CT_CP54936::TestL()
1.72 + {
1.73 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1778 "));
1.74 + RLibrary lib;
1.75 +
1.76 + const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
1.77 + // load the dll
1.78 + TInt returnValue = lib.Load(KName,serverUid);
1.79 + test(returnValue==0);
1.80 +
1.81 + // get a pointer to the specified ordinal function and call it
1.82 + TLibraryFunction function1 = lib.Lookup(1);
1.83 + TLibraryFunction function2 = lib.Lookup(2);
1.84 + TLibraryFunction function3 = lib.Lookup(3);
1.85 +
1.86 + //cast the function pointer f to a function of type void with two arguments
1.87 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.88 + TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
1.89 +
1.90 + typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
1.91 + TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
1.92 +
1.93 + typedef TBool (*TIsLegalShortNameCharacter)(TUint);
1.94 + TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
1.95 +
1.96 + // from Test Analysis:
1.97 + // p1: 0x40 -> 0x40
1.98 + // p2: 0x24 -> 0x24
1.99 + // p3: 0x706C -> 0xECE1
1.100 + // p4: 0x4E96 -> 0x8181
1.101 + // p5: 0x20AC -> 0xA2E3
1.102 + // p6: 0x3622 -> 0x8230A730, 0x060C -> 0x81318132
1.103 + // p7: 0x201AD (0xD840 0xDDAD) -> 0x9532AD35
1.104 + // p10-p15: N/A
1.105 + // p20-p22: N/A
1.106 + // p30: 0x32FF -> 0x8139D633
1.107 + // p31: 0x10500 (0xD801 0xDD00) -> 0x90318330
1.108 + // 0xFFFF -> 0x8431A439
1.109 + _LIT16(Uni_1, "\x0040\xD840\x0024\x060C\x706C\x4E96\x20AC\x3622\xD840\xDDAD\x32FF\xD801\xDD00\xDC00\xFFFF");
1.110 + _LIT8(CP54936_1, "\x40\x5F\x24\x81\x31\x81\x32\xEC\xE1\x81\x81\xA2\xE3\x82\x30\xA7\x30\x95\x32\xAD\x35\x81\x39\xD6\x33\x90\x31\x83\x30\x5F\x84\x31\xA4\x39");
1.111 +
1.112 + TBuf8<200> foreign1;
1.113 + TBuf16<200> unicode2;
1.114 +
1.115 + const TDesC16& unicode1(Uni_1);
1.116 + INFO_PRINTF1(_L("source: ")); TestOut(unicode1); INFO_PRINTF1(_L("\n"));
1.117 + INFO_PRINTF1(_L("expect: ")); TestOut(CP54936_1); INFO_PRINTF1(_L("\n"));
1.118 + //TRAPD(err, (*aConvertFromUnicodeL)(foreign1, unicode1));
1.119 + (*aConvertFromUnicodeL)(foreign1, unicode1); //testing conversion from Unicode
1.120 + INFO_PRINTF1(_L("result: ")); TestOut(foreign1); INFO_PRINTF1(_L("\n"));
1.121 + TInt error = foreign1.Compare(CP54936_1);
1.122 + test(error==0);
1.123 + foreign1.Zero();
1.124 +
1.125 + // from Test Analysis:
1.126 + // p1: 0x40
1.127 + // p2: 0x24
1.128 + // p3: 0x706C <- 0xECE1
1.129 + // p4: 0x4E96 <- 0x8181
1.130 + // p5: 0x20AC <- 0xA2E3
1.131 + // p6: 0x3622 <- 0x8230A730, 0x060C <- 0x81318132
1.132 + // p7: 0x201AD (0xD840 0xDDAD) <- 0x9532AD35
1.133 + // p10: //0x0E -> 0xFFFD
1.134 + // p11: //0xA0 -> 0xFFFD
1.135 + // p12: 0xA1A0 -> 0xE525
1.136 + // p13: 0xA07F -> 0xFFFD
1.137 + // p14: 0x95328230 -> 0x1FFFA (0xD83F 0xDFFA) //0xFFFD
1.138 + // p15: 0x8130813A -> 0xFFFD
1.139 + // p20-p22: N/A
1.140 + // p30-p31: N/A
1.141 + _LIT16(Uni_2, "\x0040\x0024\x706C\x4E96\x20AC\x3622\x060C\xD840\xDDAD\xE525\xFFFD\xD83F\xDFFA\xFFFD");
1.142 + _LIT8(CP54936_2, "\x40\x24\xEC\xE1\x81\x81\xA2\xE3\x82\x30\xA7\x30\x81\x31\x81\x32\x95\x32\xAD\x35\xA1\xA0\xA0\x7F\x95\x32\x82\x30\x81\x30\x81\x3A");
1.143 +
1.144 + const TDesC8& foreign2(CP54936_2);
1.145 + INFO_PRINTF1(_L("source: ")); TestOut(foreign2); INFO_PRINTF1(_L("\n"));
1.146 + INFO_PRINTF1(_L("expect: ")); TestOut(Uni_2); INFO_PRINTF1(_L("\n"));
1.147 + //TRAP(err, (*aConvertToUnicodeL)(unicode2,foreign2));
1.148 + (*aConvertToUnicodeL)(unicode2,foreign2);//); //testing conversion to Unicode
1.149 + INFO_PRINTF1(_L("result: ")); TestOut(unicode2); INFO_PRINTF1(_L("\n"));
1.150 + error = unicode2.Compare(Uni_2);
1.151 + test(error==0);
1.152 + unicode2.Zero();
1.153 +
1.154 +
1.155 + //testing for legal short name character
1.156 + TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
1.157 + test(result==1);
1.158 + result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
1.159 + test(result==0);
1.160 + result = (*aIsLegalShortNameCharacter)(0x2999);
1.161 + test(result==1);
1.162 + result = (*aIsLegalShortNameCharacter)(0x4E02); //testing for a double byte character
1.163 + test(result==1);
1.164 +
1.165 + lib.Close();
1.166 + }
1.167 +
1.168 +/**
1.169 +@SYMTestCaseID SYSLIB-FATCHARSETCONV-CT-1847-0001
1.170 +@SYMTestCaseDesc Tests API behaviours of UnicodeConv class as part of INC090073
1.171 +@SYMTestPriority High
1.172 +@SYMTestActions Tests for correct character conversion on certain chinese characters for CP936
1.173 +@SYMTestExpectedResults Test must not fail
1.174 +*/
1.175 +void CT_CP54936::TestINC090073L()
1.176 + {
1.177 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847-0001 "));
1.178 +
1.179 + _LIT16(unicode, "\x7CCD\x74EF\x8026\x8F8F\x94F3\x7633\x6DFC\x9785\x7F81\x7A37\x61A9\x80B1\x86A3\x89E5\x80F2\x9B48\x9E47\x6C19\x7B71\x946B\x6B46\x6615");
1.180 + _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");
1.181 +
1.182 + RLibrary lib;
1.183 +
1.184 + const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
1.185 + // load the dll
1.186 + TInt returnValue = lib.Load(KName,serverUid);
1.187 + test(returnValue==0);
1.188 +
1.189 + // get a pointer to the specified ordinal function and call it
1.190 + TLibraryFunction function1 = lib.Lookup(1);
1.191 +
1.192 +
1.193 + //cast the function pointer f to a function of type void with two arguments
1.194 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.195 + TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
1.196 +
1.197 + TBuf8<50> foreign1;
1.198 +
1.199 + foreign1.Zero();
1.200 + const TDesC16& unicode1(unicode);
1.201 + TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); //testing conversion from Unicode
1.202 + test(err==0);
1.203 + TInt error = foreign1.Compare(CP932Code);
1.204 + test(error==0);
1.205 + foreign1.Zero();
1.206 +
1.207 + lib.Close();
1.208 + }
1.209 +
1.210 +void CT_CP54936::OOMTestL()
1.211 + {
1.212 + INFO_PRINTF1(_L("OOM testing"));
1.213 + TInt err, tryCount = 0;
1.214 + do
1.215 + {
1.216 + __UHEAP_MARK;
1.217 + // find out the number of open handles
1.218 + TInt startProcessHandleCount;
1.219 + TInt startThreadHandleCount;
1.220 + RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
1.221 +
1.222 + // Setting Heap failure for OOM test
1.223 + __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
1.224 +
1.225 + TRAP(err,TestL());
1.226 +
1.227 + __UHEAP_SETFAIL(RHeap::ENone, 0);
1.228 +
1.229 + // check that no handles have leaked
1.230 + TInt endProcessHandleCount;
1.231 + TInt endThreadHandleCount;
1.232 + RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
1.233 +
1.234 + test(startProcessHandleCount == endProcessHandleCount);
1.235 + test(startThreadHandleCount == endThreadHandleCount);
1.236 +
1.237 + __UHEAP_MARKEND;
1.238 + }while (err == KErrNoMemory);
1.239 +
1.240 + test(err == KErrNone);
1.241 + INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
1.242 + }
1.243 +
1.244 +
1.245 +void CT_CP54936::PerformanceTest1L()
1.246 + {
1.247 + INFO_PRINTF1(_L("Performance test 1 (comparing with cp936)"));
1.248 + RLibrary lib936;
1.249 + RLibrary lib54936;
1.250 +
1.251 + const TUidType serverUid936(KNullUid,KNullUid,KPluginUid936);
1.252 + const TUidType serverUid54936(KNullUid,KNullUid,KPluginUid);
1.253 +
1.254 + // load the dll
1.255 + TInt returnValue = lib936.Load(KName936,serverUid936);
1.256 + test(returnValue==0);
1.257 + TInt returnValue2 = lib54936.Load(KName,serverUid54936);
1.258 + test(returnValue2==0);
1.259 +
1.260 + // get a pointer to the specified ordinal function and call it
1.261 + TLibraryFunction function9361 = lib936.Lookup(1);
1.262 + TLibraryFunction function9362 = lib936.Lookup(2);
1.263 + TLibraryFunction function9363 = lib936.Lookup(3);
1.264 + TLibraryFunction function549361 = lib54936.Lookup(1);
1.265 + TLibraryFunction function549362 = lib54936.Lookup(2);
1.266 + TLibraryFunction function549363 = lib54936.Lookup(3);
1.267 +
1.268 + //cast the function pointer f to a function of type void with two arguments
1.269 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.270 + TConvertFromUnicodeL aConvertFromUnicode936L = reinterpret_cast <TConvertFromUnicodeL> (function9361);
1.271 + TConvertFromUnicodeL aConvertFromUnicode54936L = reinterpret_cast <TConvertFromUnicodeL> (function549361);
1.272 +
1.273 + typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
1.274 + TConvertToUnicodeL aConvertToUnicode936L = reinterpret_cast <TConvertToUnicodeL> (function9362);
1.275 + TConvertToUnicodeL aConvertToUnicode54936L = reinterpret_cast <TConvertToUnicodeL> (function549362);
1.276 +
1.277 + // timer
1.278 + TInt count;
1.279 + TChar res2;
1.280 + TBuf<256> msg;
1.281 + TInt fastTimerFreq;
1.282 + HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
1.283 + TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
1.284 + TUint prevTime;
1.285 + TUint timeDiff;
1.286 + TReal64 fsSessionMicroSecs;
1.287 +
1.288 + _LIT16(Uni_1, "\x0053\x0059\x004D\x3125\x3122\x9673\xFA29");
1.289 + _LIT8(CP54936_1, "\x53\x59\x4D\xA8\xE5\xA8\xE2\xEA\x90\xFE\x4F");
1.290 + TBuf8<20> foreign1;
1.291 + TBuf16<20> unicode2;
1.292 + const TDesC16& unicode1(Uni_1);
1.293 + TInt error;
1.294 +
1.295 +//////////////////////////////////////////////////////////////////////////////
1.296 +//////////////////////////////////////////////////////////////////////////////
1.297 + // 1, unicode -> 936
1.298 + // test result: 1448 ms for 100000 iterations
1.299 + INFO_PRINTF1(_L("unicode --> 936:\n"));
1.300 + INFO_PRINTF1(_L(" source: ")); TestOut(unicode1); INFO_PRINTF1(_L("\n"));
1.301 + INFO_PRINTF1(_L(" expect: ")); TestOut(CP54936_1); INFO_PRINTF1(_L("\n"));
1.302 + prevTime = User::FastCounter();
1.303 + for (count=0; count<MaxCount; count++)
1.304 + {
1.305 + foreign1.Zero();
1.306 + (*aConvertFromUnicode936L)(foreign1, unicode1);
1.307 + }
1.308 + timeDiff = User::FastCounter() - prevTime;
1.309 + fsSessionMicroSecs = timeDiff / (ticksPerMicroSec);
1.310 + msg.Format(_L(" %10.2lf us, "), fsSessionMicroSecs);
1.311 + INFO_PRINTF1(_L(" result: ")); TestOut(foreign1); INFO_PRINTF1(_L("\n"));
1.312 + INFO_PRINTF1(msg);
1.313 + error = foreign1.Compare(CP54936_1);
1.314 + test(error==0);
1.315 + foreign1.Zero();
1.316 + INFO_PRINTF1(_L("\n"));
1.317 +
1.318 + // 2, unicode -> 54936
1.319 + // test result: 44 ms for 100000 iterations
1.320 + INFO_PRINTF1(_L("unicode --> 54936:\n"));
1.321 + INFO_PRINTF1(_L(" source: ")); TestOut(unicode1); INFO_PRINTF1(_L("\n"));
1.322 + INFO_PRINTF1(_L(" expect: ")); TestOut(CP54936_1); INFO_PRINTF1(_L("\n"));
1.323 + prevTime = User::FastCounter();
1.324 + for (count=0; count<MaxCount; count++)
1.325 + {
1.326 + foreign1.Zero();
1.327 + (*aConvertFromUnicode54936L)(foreign1, unicode1);
1.328 + }
1.329 + timeDiff = User::FastCounter() - prevTime;
1.330 + fsSessionMicroSecs = timeDiff / (ticksPerMicroSec);
1.331 + msg.Format(_L(" %10.2lf us, "), fsSessionMicroSecs);
1.332 + INFO_PRINTF1(_L(" result: ")); TestOut(foreign1); INFO_PRINTF1(_L("\n"));
1.333 + INFO_PRINTF1(msg);
1.334 + error = foreign1.Compare(CP54936_1);
1.335 + test(error==0);
1.336 + foreign1.Zero();
1.337 + INFO_PRINTF1(_L("\n"));
1.338 +
1.339 +//////////////////////////////////////////////////////////////////////////////
1.340 +//////////////////////////////////////////////////////////////////////////////
1.341 + _LIT16(Uni_2, "\x0032\xFFFD\x7FB1\x0032\xFFFD\x7FB1\x7FB1");
1.342 + _LIT8(CP54936_2, "\x32\xC1\x7F\xC1\x7E\x32\xC1\x7F\xC1\x7E\xC1\x7E");
1.343 + const TDesC8& foreign2(CP54936_2);
1.344 +
1.345 + // 3, 936 -> unicode
1.346 + // test result: 89 ms for 100000 iterations
1.347 + INFO_PRINTF1(_L("936 ---> unicode:\n"));
1.348 + INFO_PRINTF1(_L(" source: ")); TestOut(foreign2); INFO_PRINTF1(_L("\n"));
1.349 + INFO_PRINTF1(_L(" expect: ")); TestOut(Uni_2); INFO_PRINTF1(_L("\n"));
1.350 + prevTime = User::FastCounter();
1.351 + for (count=0; count<MaxCount; count++)
1.352 + {
1.353 + unicode2.Zero();
1.354 + (*aConvertToUnicode936L)(unicode2,foreign2);
1.355 + }
1.356 + timeDiff = User::FastCounter() - prevTime;
1.357 + fsSessionMicroSecs = timeDiff / (ticksPerMicroSec);
1.358 + msg.Format(_L(" %10.2lf us, "), fsSessionMicroSecs);
1.359 + INFO_PRINTF1(_L(" result: ")); TestOut(unicode2); INFO_PRINTF1(_L("\n"));
1.360 + INFO_PRINTF1(msg);
1.361 + error = unicode2.Compare(Uni_2);
1.362 + test(error==0);
1.363 + unicode2.Zero();
1.364 + INFO_PRINTF1(_L("\n"));
1.365 +
1.366 + // 4, 54936 -> unicode
1.367 + // test result: 36 ms for 100000 iterations
1.368 + INFO_PRINTF1(_L("54936 ---> unicode:\n"));
1.369 + INFO_PRINTF1(_L(" source: ")); TestOut(foreign2); INFO_PRINTF1(_L("\n"));
1.370 + INFO_PRINTF1(_L(" expect: ")); TestOut(Uni_2); INFO_PRINTF1(_L("\n"));
1.371 + prevTime = User::FastCounter();
1.372 + for (count=0; count<MaxCount; count++)
1.373 + {
1.374 + unicode2.Zero();
1.375 + (*aConvertToUnicode54936L)(unicode2,foreign2);
1.376 + }
1.377 + timeDiff = User::FastCounter() - prevTime;
1.378 + fsSessionMicroSecs = timeDiff / (ticksPerMicroSec);
1.379 + msg.Format(_L(" %10.2lf us, "), fsSessionMicroSecs);
1.380 + INFO_PRINTF1(_L(" result: ")); TestOut(unicode2); INFO_PRINTF1(_L("\n"));
1.381 + INFO_PRINTF1(msg);
1.382 + error = unicode2.Compare(Uni_2);
1.383 + test(error==0);
1.384 + unicode2.Zero();
1.385 + INFO_PRINTF1(_L("\n"));
1.386 +
1.387 + lib936.Close();
1.388 + lib54936.Close();
1.389 +
1.390 +// INFO_PRINTF1(_L("Press any key...\n"));
1.391 +// test.Getch();
1.392 + }
1.393 +
1.394 +
1.395 +// performance when converting mixed data.
1.396 +// just for reference.
1.397 +// ideally, the test result should be similar to that in PerformanceTest1()
1.398 +void CT_CP54936::PerformanceTest2L()
1.399 + {
1.400 + INFO_PRINTF1(_L("Performance test 2 (reference)"));
1.401 + RLibrary lib54936;
1.402 + const TUidType serverUid54936(KNullUid,KNullUid,KPluginUid);
1.403 +
1.404 + // load the dll
1.405 + TInt returnValue2 = lib54936.Load(KName,serverUid54936);
1.406 + test(returnValue2==0);
1.407 +
1.408 + // get a pointer to the specified ordinal function and call it
1.409 + TLibraryFunction function549361 = lib54936.Lookup(1);
1.410 + TLibraryFunction function549362 = lib54936.Lookup(2);
1.411 + TLibraryFunction function549363 = lib54936.Lookup(3);
1.412 +
1.413 + //cast the function pointer f to a function of type void with two arguments
1.414 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.415 + TConvertFromUnicodeL aConvertFromUnicode54936L = reinterpret_cast <TConvertFromUnicodeL> (function549361);
1.416 +
1.417 + typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
1.418 + TConvertToUnicodeL aConvertToUnicode54936L = reinterpret_cast <TConvertToUnicodeL> (function549362);
1.419 +
1.420 + // timer
1.421 + TInt count;
1.422 + TBuf<256> msg;
1.423 + TInt fastTimerFreq;
1.424 + HAL::Get(HALData::EFastCounterFrequency, fastTimerFreq);
1.425 + TReal ticksPerMicroSec = 1.0E-6 * fastTimerFreq;
1.426 + TUint prevTime;
1.427 + TUint timeDiff;
1.428 + TReal64 fsSessionMicroSecs;
1.429 +
1.430 +//////////////////////////////////////////////////////////////////////////////
1.431 +//////////////////////////////////////////////////////////////////////////////
1.432 + _LIT16(Uni_1, "\x0053\x0059\x004D\x3125\x3122\x9673\xFA29\x060C\xD840\xDC00");
1.433 + _LIT8(CP54936_1, "\x53\x59\x4D\xA8\xE5\xA8\xE2\xEA\x90\xFE\x4F\x81\x31\x81\x32\x95\x32\x82\x36");
1.434 + TBuf8<200> foreign1;
1.435 + TBuf16<200> unicode2;
1.436 + const TDesC16& unicode1(Uni_1);
1.437 + TInt error;
1.438 +
1.439 + // 2, unicode -> 54936
1.440 + // test result: 130 ms for 100000 iterations (44 ms if one huge table for BMP characters)
1.441 + INFO_PRINTF1(_L("unicode --> 54936:\n"));
1.442 + INFO_PRINTF1(_L(" source: ")); TestOut(unicode1); INFO_PRINTF1(_L("\n"));
1.443 + INFO_PRINTF1(_L(" expect: ")); TestOut(CP54936_1); INFO_PRINTF1(_L("\n"));
1.444 + prevTime = User::FastCounter();
1.445 + for (count=0; count<MaxCount; count++)
1.446 + {
1.447 + foreign1.Zero();
1.448 + (*aConvertFromUnicode54936L)(foreign1, unicode1);
1.449 + }
1.450 + timeDiff = User::FastCounter() - prevTime;
1.451 + fsSessionMicroSecs = timeDiff / (ticksPerMicroSec);
1.452 + msg.Format(_L(" %10.2lf us, "), fsSessionMicroSecs);
1.453 + INFO_PRINTF1(_L(" result: ")); TestOut(foreign1); INFO_PRINTF1(_L("\n"));
1.454 + INFO_PRINTF1(msg);
1.455 + error = foreign1.Compare(CP54936_1);
1.456 + test(error==0);
1.457 + foreign1.Zero();
1.458 + INFO_PRINTF1(_L("\n"));
1.459 +
1.460 +//////////////////////////////////////////////////////////////////////////////
1.461 +//////////////////////////////////////////////////////////////////////////////
1.462 + _LIT16(Uni_2, "\x0032\x20AC\xFFFD\x7FB1\x47BB\xD840\xDC00");
1.463 + _LIT8(CP54936_2, "\x32\xA2\xE3\xC1\x7F\xC1\x7E\x82\x33\xED\x33\x95\x32\x82\x36");
1.464 + const TDesC8& foreign2(CP54936_2);
1.465 +
1.466 + // 4, 54936 -> unicode
1.467 + // test result: 36 ms for 100000 iterations
1.468 + INFO_PRINTF1(_L("54936 ---> unicode:\n"));
1.469 + INFO_PRINTF1(_L(" source: ")); TestOut(foreign2); INFO_PRINTF1(_L("\n"));
1.470 + INFO_PRINTF1(_L(" expect: ")); TestOut(Uni_2); INFO_PRINTF1(_L("\n"));
1.471 + prevTime = User::FastCounter();
1.472 + for (count=0; count<MaxCount; count++)
1.473 + {
1.474 + unicode2.Zero();
1.475 + (*aConvertToUnicode54936L)(unicode2,foreign2);
1.476 + }
1.477 + timeDiff = User::FastCounter() - prevTime;
1.478 + fsSessionMicroSecs = timeDiff / (ticksPerMicroSec);
1.479 + msg.Format(_L(" %10.2lf us, "), fsSessionMicroSecs);
1.480 + INFO_PRINTF1(_L(" result: ")); TestOut(unicode2); INFO_PRINTF1(_L("\n"));
1.481 + INFO_PRINTF1(msg);
1.482 + error = unicode2.Compare(Uni_2);
1.483 + test(error==0);
1.484 + unicode2.Zero();
1.485 + INFO_PRINTF1(_L("\n"));
1.486 +
1.487 + lib54936.Close();
1.488 +
1.489 +// INFO_PRINTF1(_L("Press any key...\n"));
1.490 +// test.Getch();
1.491 + }
1.492 +
1.493 +/**
1.494 +@SYMTestCaseID TI18N-FATCHARCONV-CIT-4001
1.495 +@SYMTestCaseDesc Check GB18030 support
1.496 +@SYMTestPriority High
1.497 +@SYMTestActions 1. Get one-byte Unicode codepoint
1.498 + 2. Convert to/from GB18030 to/from Unicode
1.499 + 3. Get two-byte Unicode codepoint
1.500 + 4. Convert to/from GB18030 to/from Unicode
1.501 + 5. Get four-byte Unicode codepoint
1.502 + 6. Convert to/from GB18030 to/from Unicode
1.503 +@SYMTestExpectedResults No side effect
1.504 +@SYMREQ REQ12067
1.505 +*/
1.506 +void CT_CP54936::TestConversionL( const TDesC16& aUnicode, const TDesC8& a54936, TBool aZero1, TBool aZero2)
1.507 +{
1.508 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1778 "));
1.509 + RLibrary lib;
1.510 +
1.511 + const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
1.512 + // load the dll
1.513 + TInt returnValue = lib.Load(KName,serverUid);
1.514 + test(returnValue==0);
1.515 +
1.516 + // get a pointer to the specified ordinal function and call it
1.517 + TLibraryFunction function1 = lib.Lookup(1);
1.518 + TLibraryFunction function2 = lib.Lookup(2);
1.519 + TLibraryFunction function3 = lib.Lookup(3);
1.520 +
1.521 + //cast the function pointer f to a function of type void with two arguments
1.522 + typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
1.523 + TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
1.524 +
1.525 + typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
1.526 + TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
1.527 +
1.528 + // testing conversion from Unicode
1.529 + TBuf8<200> generated54936;
1.530 + INFO_PRINTF1(_L("source: "));
1.531 + TestOut(aUnicode);
1.532 + INFO_PRINTF1(_L("\n"));
1.533 + INFO_PRINTF1(_L("expect: "));
1.534 + TestOut(a54936);
1.535 + INFO_PRINTF1(_L("\n"));
1.536 + (*aConvertFromUnicodeL)(generated54936, aUnicode);
1.537 + INFO_PRINTF1(_L("result: "));
1.538 + TestOut(generated54936);
1.539 + INFO_PRINTF1(_L("\n"));
1.540 + TInt error = generated54936.Compare(a54936);
1.541 + if ( aZero1 )
1.542 + {
1.543 + test(error==0);
1.544 + }
1.545 + else
1.546 + {
1.547 + test(error!=0);
1.548 + }
1.549 +
1.550 + // testing conversion to Unicode
1.551 + TBuf16<200> generatedUnicode;
1.552 + INFO_PRINTF1(_L("source: "));
1.553 + TestOut(a54936);
1.554 + INFO_PRINTF1(_L("\n"));
1.555 + INFO_PRINTF1(_L("expect: "));
1.556 + TestOut(aUnicode);
1.557 + INFO_PRINTF1(_L("\n"));
1.558 + (*aConvertToUnicodeL)(generatedUnicode,a54936);
1.559 + INFO_PRINTF1(_L("result: "));
1.560 + TestOut(generatedUnicode);
1.561 + INFO_PRINTF1(_L("\n"));
1.562 + error = generatedUnicode.Compare(aUnicode);
1.563 + if ( aZero2 )
1.564 + {
1.565 + test(error==0);
1.566 + }
1.567 + else
1.568 + {
1.569 + test(error!=0);
1.570 + }
1.571 +
1.572 + lib.Close();
1.573 +}
1.574 +
1.575 +
1.576 +/**
1.577 +@SYMTestCaseID TI18N-CHARCONV-CT-
1.578 +@SYMTestCaseDesc Check GB18030 support
1.579 +@SYMTestPriority High
1.580 +@SYMTestActions 1. Get one-byte Unicode codepoint
1.581 + 2. Convert to/from GB18030 to/from Unicode
1.582 + 3. Get two-byte Unicode codepoint
1.583 + 4. Convert to/from GB18030 to/from Unicode
1.584 + 5. Get four-byte Unicode codepoint
1.585 + 6. Convert to/from GB18030 to/from Unicode
1.586 +@SYMTestExpectedResults No side effect
1.587 +@SYMREQ REQ12067
1.588 +*/
1.589 +void CT_CP54936::TestGbConversionL()
1.590 +{
1.591 + // TestL() function covers GB 1,2,4 bytes
1.592 + // one-byte
1.593 + // border 0x80
1.594 + _LIT16(Uni_0, "\x0000");
1.595 + _LIT8(CP54936_0, "\x00");
1.596 + TestConversionL( Uni_0, CP54936_0 );
1.597 +
1.598 + _LIT16(Uni_1, "\x0079");
1.599 + _LIT8(CP54936_1, "\x79");
1.600 + TestConversionL( Uni_1, CP54936_1 );
1.601 +
1.602 + _LIT16(Uni_2, "\x0080");
1.603 + _LIT8(CP54936_2, "\x81\x30\x81\x30");
1.604 + TestConversionL( Uni_2, CP54936_2 );
1.605 +
1.606 + _LIT16(Uni_3, "\x0081");
1.607 + _LIT8(CP54936_3, "\x81\x30\x81\x31");
1.608 + TestConversionL( Uni_3, CP54936_3 );
1.609 +
1.610 + _LIT16(Uni_4, "\x00fe");
1.611 + _LIT8(CP54936_4, "\x81\x30\x8B\x36");
1.612 + TestConversionL( Uni_4, CP54936_4 );
1.613 +
1.614 + _LIT16(Uni_5, "\x00ff");
1.615 + _LIT8(CP54936_5, "\x81\x30\x8B\x37");
1.616 + TestConversionL( Uni_5, CP54936_5 );
1.617 +
1.618 + // two-byte
1.619 + _LIT16(Uni_6, "\x0100");
1.620 + _LIT8(CP54936_6, "\x81\x30\x8B\x38");
1.621 + TestConversionL( Uni_6, CP54936_6 );
1.622 +
1.623 + _LIT16(Uni_7, "\x0101");
1.624 + _LIT8(CP54936_7, "\xA8\xA1");
1.625 + TestConversionL( Uni_7, CP54936_7 );
1.626 +
1.627 + _LIT16(Uni_8, "\x0ffe");
1.628 + _LIT8(CP54936_8, "\x81\x33\x83\x38");
1.629 + TestConversionL( Uni_8, CP54936_8 );
1.630 +
1.631 + _LIT16(Uni_9, "\x0fff");
1.632 + _LIT8(CP54936_9, "\x81\x33\x83\x39");
1.633 + TestConversionL( Uni_9, CP54936_9 );
1.634 +
1.635 + _LIT16(Uni_10, "\x1000");
1.636 + _LIT8(CP54936_10, "\x81\x33\x84\x30");
1.637 + TestConversionL( Uni_10, CP54936_10 );
1.638 +
1.639 + _LIT16(Uni_11, "\x1001");
1.640 + _LIT8(CP54936_11, "\x81\x33\x84\x31");
1.641 + TestConversionL( Uni_11, CP54936_11 );
1.642 +
1.643 + _LIT16(Uni_12, "\xfffe");
1.644 + _LIT8(CP54936_12, "\x84\x31\xA4\x38");
1.645 + TestConversionL( Uni_12, CP54936_12 );
1.646 +
1.647 + _LIT16(Uni_13, "\xffff");
1.648 + _LIT8(CP54936_13, "\x84\x31\xA4\x39");
1.649 + TestConversionL( Uni_13, CP54936_13 );
1.650 +
1.651 + // four-byte
1.652 + _LIT16(Uni_14, "\xd840\xdc00");
1.653 + _LIT8(CP54936_14, "\x95\x32\x82\x36");
1.654 + TestConversionL( Uni_14, CP54936_14 );
1.655 +
1.656 + _LIT16(Uni_15, "\xd840\xdc01");
1.657 + _LIT8(CP54936_15, "\x95\x32\x82\x37");
1.658 + TestConversionL( Uni_15, CP54936_15 );
1.659 +
1.660 + _LIT16(Uni_16, "\xD87F\xdffe");
1.661 + _LIT8(CP54936_16, "\x9a\x34\x84\x30");
1.662 + TestConversionL( Uni_16, CP54936_16 );
1.663 +
1.664 + _LIT16(Uni_17, "\xD87F\xdfff");
1.665 + _LIT8(CP54936_17, "\x9a\x34\x84\x31");
1.666 + TestConversionL( Uni_17, CP54936_17 );
1.667 +
1.668 + // 4-byte gb
1.669 + _LIT16(Uni_18, "\xd840\xddad");
1.670 + _LIT8(CP54936_18, "\x95\x32\xAD\x35");
1.671 + TestConversionL( Uni_18, CP54936_18 );
1.672 +
1.673 + _LIT16(Uni_19, "\xd801\xdd00");
1.674 + _LIT8(CP54936_19, "\x90\x31\x83\x30");
1.675 + TestConversionL( Uni_19, CP54936_19 );
1.676 +}
1.677 +
1.678 +
1.679 +/**
1.680 +@SYMTestCaseID TI18N-CHARCONV-CT-
1.681 +@SYMTestCaseDesc Test FAT short name legal character
1.682 +@SYMTestPriority High
1.683 +@SYMTestActions 1. Get one-byte Unicode codepoint
1.684 + 2. Check if it's legal short name character
1.685 + 3. Get two-byte Unicode codepoint
1.686 + 4. Check if it's legal short name character
1.687 + 5. Get four-byte Unicode codepoint
1.688 + 6. Check if it's legal short name character
1.689 +@SYMTestExpectedResults No side effect
1.690 +@SYMREQ REQ12067
1.691 +*/
1.692 +void CT_CP54936::TestShortNameCharacterL()
1.693 +{
1.694 + INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1778 "));
1.695 + RLibrary lib;
1.696 +
1.697 + const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
1.698 + // load the dll
1.699 + TInt returnValue = lib.Load(KName,serverUid);
1.700 + test(returnValue==0);
1.701 +
1.702 + // get a pointer to the specified ordinal function and call it
1.703 + TLibraryFunction function1 = lib.Lookup(1);
1.704 + TLibraryFunction function2 = lib.Lookup(2);
1.705 + TLibraryFunction function3 = lib.Lookup(3);
1.706 +
1.707 + typedef TBool (*TIsLegalShortNameCharacter)(TUint);
1.708 + TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
1.709 +
1.710 + // testing for legal short name character
1.711 + // one-byte unicode
1.712 + // 0x20 is space
1.713 + TInt result = (*aIsLegalShortNameCharacter)(0x0019);
1.714 + test(result==0);
1.715 +
1.716 + result = (*aIsLegalShortNameCharacter)(0x0020);
1.717 + test(result==0);
1.718 +
1.719 + result = (*aIsLegalShortNameCharacter)(0x0021);
1.720 + test(result==1);
1.721 +
1.722 + result = (*aIsLegalShortNameCharacter)(0x005F);
1.723 + test(result==1);
1.724 +
1.725 + // 0x80 is ascii border
1.726 + result = (*aIsLegalShortNameCharacter)(0x0079);
1.727 + test(result==1);
1.728 +
1.729 + result = (*aIsLegalShortNameCharacter)(0x0080);
1.730 + test(result==1);
1.731 +
1.732 + result = (*aIsLegalShortNameCharacter)(0x0081);
1.733 + test(result==1);
1.734 +
1.735 + // testing for illegal character
1.736 + result = (*aIsLegalShortNameCharacter)(0x003F);
1.737 + test(result==0);
1.738 +
1.739 + result = (*aIsLegalShortNameCharacter)(0x22);
1.740 + test(result==0);
1.741 +
1.742 + result = (*aIsLegalShortNameCharacter)(0x2A);
1.743 + test(result==0);
1.744 +
1.745 + result = (*aIsLegalShortNameCharacter)(0x2B);
1.746 + test(result==0);
1.747 +
1.748 + result = (*aIsLegalShortNameCharacter)(0x2C);
1.749 + test(result==0);
1.750 +
1.751 + result = (*aIsLegalShortNameCharacter)(0x2F);
1.752 + test(result==0);
1.753 +
1.754 + result = (*aIsLegalShortNameCharacter)(0x3A);
1.755 + test(result==0);
1.756 +
1.757 + result = (*aIsLegalShortNameCharacter)(0x3B);
1.758 + test(result==0);
1.759 +
1.760 + result = (*aIsLegalShortNameCharacter)(0x3C);
1.761 + test(result==0);
1.762 +
1.763 + result = (*aIsLegalShortNameCharacter)(0x3D);
1.764 + test(result==0);
1.765 +
1.766 + result = (*aIsLegalShortNameCharacter)(0x3E);
1.767 + test(result==0);
1.768 +
1.769 + result = (*aIsLegalShortNameCharacter)(0x5B);
1.770 + test(result==0);
1.771 +
1.772 + result = (*aIsLegalShortNameCharacter)(0x5C);
1.773 + test(result==0);
1.774 +
1.775 + result = (*aIsLegalShortNameCharacter)(0x5D);
1.776 + test(result==0);
1.777 +
1.778 + result = (*aIsLegalShortNameCharacter)(0x7C);
1.779 + test(result==0);
1.780 +
1.781 + // two-byte unicode
1.782 + result = (*aIsLegalShortNameCharacter)(0x1000);
1.783 + test(result==1);
1.784 +
1.785 + result = (*aIsLegalShortNameCharacter)(0x1001);
1.786 + test(result==1);
1.787 +
1.788 + result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
1.789 + test(result==1);
1.790 +
1.791 + result = (*aIsLegalShortNameCharacter)(0x4E02); //testing for a double byte character
1.792 + test(result==1);
1.793 +
1.794 + result = (*aIsLegalShortNameCharacter)(0xfffe);
1.795 + test(result==1);
1.796 +
1.797 + result = (*aIsLegalShortNameCharacter)(0xffff);
1.798 + test(result==1);
1.799 +
1.800 + result = (*aIsLegalShortNameCharacter)(0xd7ff);
1.801 + test(result==1);
1.802 +
1.803 + // surrogate part
1.804 + result = (*aIsLegalShortNameCharacter)(0xd800);
1.805 + test(result==0);
1.806 +
1.807 + result = (*aIsLegalShortNameCharacter)(0xdfff);
1.808 + test(result==0);
1.809 +
1.810 + result = (*aIsLegalShortNameCharacter)(0xe000);
1.811 + test(result==1);
1.812 +
1.813 + // four-byte unicode
1.814 + result = (*aIsLegalShortNameCharacter)(0x10000);
1.815 + test(result==1);
1.816 +
1.817 + result = (*aIsLegalShortNameCharacter)(0x10001);
1.818 + test(result==1);
1.819 +
1.820 + result = (*aIsLegalShortNameCharacter)(0x10fffe);
1.821 + test(result==1);
1.822 +
1.823 + result = (*aIsLegalShortNameCharacter)(0x10ffff);
1.824 + test(result==1);
1.825 +
1.826 + result = (*aIsLegalShortNameCharacter)(0x110000);
1.827 + test(result==0);
1.828 +
1.829 + lib.Close();
1.830 +}
1.831 +
1.832 +
1.833 +CT_CP54936::CT_CP54936()
1.834 + {
1.835 + SetTestStepName(KTestStep_T_CP54936);
1.836 + }
1.837 +
1.838 +
1.839 +TVerdict CT_CP54936::doTestStepL()
1.840 + {
1.841 + SetTestStepResult(EFail);
1.842 +
1.843 + __UHEAP_MARK;
1.844 +
1.845 + TRAPD(error1, TestGbConversionL());
1.846 + TRAPD(error2, TestShortNameCharacterL());
1.847 + TRAPD(error3, TestL());
1.848 + TRAPD(error4, TestINC090073L());
1.849 + TRAPD(error5, OOMTestL());
1.850 + TRAPD(error6, PerformanceTest1L());
1.851 + TRAPD(error7, PerformanceTest2L());
1.852 +
1.853 + __UHEAP_MARKEND;
1.854 +
1.855 + if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone
1.856 + && error4 == KErrNone && error5 == KErrNone
1.857 + && error6 == KErrNone && error7 == KErrNone)
1.858 + {
1.859 + SetTestStepResult(EPass);
1.860 + }
1.861 +
1.862 + return TestStepResult();
1.863 + }