os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP932.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include "T_CP932.h"
    20 #include <e32des8.h>
    21 
    22 #define test(cond)                                          \
    23     {                                                       \
    24     TBool __bb = (cond);                                    \
    25     TEST(__bb);                                             \
    26     if (!__bb)                                              \
    27         {                                                   \
    28         ERR_PRINTF1(_L("ERROR: Test Failed"));              \
    29         User::Leave(1);                                     \
    30         }                                                   \
    31     }
    32 
    33 
    34 _LIT16(Uni_1, "\x0053\x0059\x004D\x3125\x6349\xAAAA\x9673\x9ED1\x3000\xFF9F");
    35 _LIT8(CP932_1, "\x53\x59\x4D\x5F\x91\xA8\x5F\x92\xC2\xEE\xEC\x81\x40\xDF");
    36 _LIT16(Uni_2, "\x0032\x0070\xFFFD\xFF61\x8D77\xFFFD\xFFFD");
    37 _LIT8(CP932_2, "\x32\x70\x80\xA1\x8B\x4E\xA0\x96\x7F");
    38 _LIT16(Uni_3, "\x4E00\x5141\x674F\x95C7\x58F1");
    39 _LIT8(CP932_3, "\x88\xEA\x88\xF2\x88\xC7\x88\xC5\x88\xEB");
    40 
    41 _LIT(KName,"CP932");
    42 const TUid KPluginUid={0x10206A92};
    43 
    44 
    45 // Used for supressing warning in OOM tests
    46 #define __UNUSED_VAR(var) var = var
    47 
    48 /**
    49 @SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1779
    50 @SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
    51 @SYMTestPriority 	    High
    52 @SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
    53 @SYMTestExpectedResults Test must not fail 
    54 */
    55 void CT_CP932::TestL()
    56 	{ 
    57     INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1779 "));
    58 	RLibrary lib;
    59 
    60 	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);	
    61 	// load the dll	
    62 	TInt returnValue = lib.Load(KName,serverUid);
    63 	test(returnValue==0);
    64 
    65 	// get a pointer to the specified ordinal function and call it	
    66 	TLibraryFunction function1 = lib.Lookup(1);
    67 	TLibraryFunction function2 = lib.Lookup(2);
    68 	TLibraryFunction function3 = lib.Lookup(3);
    69 
    70 	//cast the function pointer f to a function of type void with two arguments
    71 	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);	
    72 	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
    73 	
    74 	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);	
    75 	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
    76 	
    77 	typedef TBool (*TIsLegalShortNameCharacter)(TUint);	
    78 	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
    79 	
    80 	
    81 	TBuf8<15> foreign1;
    82 	TBuf8<15> foreign3;
    83 	TBuf16<15> unicode2;
    84 	
    85 	const TDesC16& unicode1(Uni_1);
    86 	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
    87 	TInt error = foreign1.Compare(CP932_1);
    88 	test(error==0);
    89 	foreign1.Zero();
    90 	
    91 	const TDesC16& unicode3(Uni_3);
    92 	(*aConvertFromUnicodeL)(foreign3, unicode3); 	//testing conversion from Unicode for INC112715
    93 	error = foreign3.Compare(CP932_3);
    94 	test(error==0);
    95 	foreign3.Zero();
    96 	
    97 	const TDesC8& foreign2(CP932_2);
    98 	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
    99 	error = unicode2.Compare(Uni_2);
   100 	test(error==0);
   101 	unicode2.Zero();
   102 	
   103 	
   104 	//testing for legal short name character
   105 	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
   106 	test(result==1);
   107 	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
   108 	test(result==0);
   109 	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
   110 	test(result==0);
   111 	result = (*aIsLegalShortNameCharacter)(0xFF61); //testing for a double byte character
   112 	test(result==1);
   113 
   114 	lib.Close();
   115 	}
   116 
   117 /**
   118 @SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1847
   119 @SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class as part of INC090073
   120 @SYMTestPriority 	    High
   121 @SYMTestActions  	    Tests for correct character conversion on certain chinese characters 
   122 @SYMTestExpectedResults Test must not fail 
   123 */	
   124 void CT_CP932::TestINC090073L()
   125 	{
   126     INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847 "));
   127  	_LIT16(unicode, "\x6DFC\x715C\x9785\x7A37\x61A9\x80B1\x86A3\x7B71\x6615\x6600");
   128 	_LIT8(CP932Code, "\xED\xE6\xED\xF6\xE8\xD7\xE2\x6C\x8C\x65\x8D\x6E\xE5\x6E\xE2\xAA\xED\xB3\xED\xB2");
   129 
   130 	RLibrary lib;
   131 
   132 	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);	
   133 	// load the dll	
   134 	TInt returnValue = lib.Load(KName,serverUid);
   135 	test(returnValue==0);
   136 
   137 	// get a pointer to the specified ordinal function and call it	
   138 	TLibraryFunction function1 = lib.Lookup(1);
   139 
   140 
   141 	//cast the function pointer f to a function of type void with two arguments
   142 	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);	
   143 	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
   144 	
   145 	TBuf8<20> foreign1;
   146 	
   147 	const TDesC16& unicode1(unicode);
   148 	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
   149 	TInt error = foreign1.Compare(CP932Code);
   150 	test(error==0);
   151 	foreign1.Zero();
   152 
   153 	lib.Close();
   154 	}	
   155 
   156 void CT_CP932::OOMTestL()
   157 	{
   158     INFO_PRINTF1(_L("OOM testing"));
   159 	TInt err, tryCount = 0;
   160 	do	
   161 		{
   162 			__UHEAP_MARK;
   163   		// find out the number of open handles
   164 		TInt startProcessHandleCount;
   165 		TInt startThreadHandleCount;
   166 		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   167 		
   168 			// Setting Heap failure for OOM test
   169 		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   170 
   171 		TRAP(err,TestL());
   172 			
   173 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   174 		
   175 		// check that no handles have leaked
   176 		TInt endProcessHandleCount;
   177 		TInt endThreadHandleCount;
   178 		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   179 
   180 		test(startProcessHandleCount == endProcessHandleCount);
   181 		test(startThreadHandleCount  == endThreadHandleCount);
   182 
   183 		__UHEAP_MARKEND;
   184 		}while (err == KErrNoMemory);
   185 		
   186 	test(err == KErrNone);
   187 	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
   188 	}
   189 
   190 
   191 CT_CP932::CT_CP932()
   192     {
   193     SetTestStepName(KTestStep_T_CP932);
   194     }
   195 
   196 
   197 TVerdict CT_CP932::doTestStepL()
   198     {
   199     SetTestStepResult(EFail);
   200 
   201     __UHEAP_MARK;
   202 
   203     TRAPD(error1, TestL());
   204     TRAPD(error2, TestINC090073L());
   205     TRAPD(error3, OOMTestL());
   206 
   207     __UHEAP_MARKEND;
   208 
   209     if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone)
   210         {
   211         SetTestStepResult(EPass);
   212         }
   213 
   214     return TestStepResult();
   215     }