os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP874.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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_CP874.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\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");
    38 
    39 _LIT(KName,"CP874");
    40 const TUid KPluginUid={0x10206A93};
    41 
    42 
    43 // Used for supressing warning in OOM tests
    44 #define __UNUSED_VAR(var) var = var
    45 
    46 /**
    47 @SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1780
    48 @SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
    49 @SYMTestPriority 	    High
    50 @SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
    51 @SYMTestExpectedResults Test must not fail
    52 */
    53 void CT_CP874::TestL()
    54 	{
    55 	RLibrary lib;
    56 
    57 	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
    58 	// load the dll
    59 	TInt returnValue = lib.Load(KName,serverUid);
    60 	test(returnValue==0);
    61 
    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);
    66 
    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);
    70 
    71 	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
    72 	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
    73 
    74 	typedef TBool (*TIsLegalShortNameCharacter)(TUint);
    75 	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
    76 
    77 
    78 	TBuf8<15> foreign1;
    79 	TBuf16<15> unicode2;
    80 
    81 	const TDesC16& unicode1(Uni_1);
    82 	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
    83 	TInt error = foreign1.Compare(CP874_1);
    84 	test(error==0);
    85 	foreign1.Zero();
    86 
    87 	const TDesC8& foreign2(CP874_2);
    88 	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
    89 	error = unicode2.Compare(Uni_2);
    90 	test(error==0);
    91 	unicode2.Zero();
    92 
    93 
    94 	//testing for legal short name character
    95 	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
    96 	test(result==1);
    97 	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
    98 	test(result==0);
    99 	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
   100 	test(result==0);
   101 
   102 	lib.Close();
   103 	}
   104 
   105 void CT_CP874::OOMTestL()
   106 	{
   107     INFO_PRINTF1(_L("OOM testing"));
   108 	TInt err, tryCount = 0;
   109 	do
   110 		{
   111 			__UHEAP_MARK;
   112   		// find out the number of open handles
   113 		TInt startProcessHandleCount;
   114 		TInt startThreadHandleCount;
   115 		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   116 
   117 			// Setting Heap failure for OOM test
   118 		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   119 
   120 		TRAP(err,TestL());
   121 
   122 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   123 
   124 		// check that no handles have leaked
   125 		TInt endProcessHandleCount;
   126 		TInt endThreadHandleCount;
   127 		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   128 
   129 		test(startProcessHandleCount == endProcessHandleCount);
   130 		test(startThreadHandleCount  == endThreadHandleCount);
   131 
   132 		__UHEAP_MARKEND;
   133 		}while (err == KErrNoMemory);
   134 
   135 	test(err == KErrNone);
   136 	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
   137 	}
   138 
   139 
   140 CT_CP874::CT_CP874()
   141     {
   142     SetTestStepName(KTestStep_T_CP874);
   143     }
   144 
   145 
   146 TVerdict CT_CP874::doTestStepL()
   147     {
   148     SetTestStepResult(EFail);
   149 
   150     __UHEAP_MARK;
   151 
   152     TRAPD(error1, TestL());
   153     TRAPD(error2, OOMTestL());
   154 
   155     __UHEAP_MARKEND;
   156 
   157     if(error1 == KErrNone && error2 == KErrNone)
   158         {
   159         SetTestStepResult(EPass);
   160         }
   161 
   162     return TestStepResult();
   163     }
   164