os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP1258.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_CP1258.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, "\x006D\xAAAA\x00DC\x0111\x20AC\xFFFF\x0070");
    35 _LIT8(CP1258_1, "\x6D\x5F\xDC\xF0\x80\x5F\x70");
    36 _LIT16(Uni_2, "\x0017\x005F\x201A\x00A0\x0303");
    37 _LIT8(CP1258_2, "\x17\x5F\x82\xA0\xDE");
    38 
    39 
    40 _LIT(KName,"CP1258");
    41 const TUid KPluginUid={0x10206A94};
    42 
    43 
    44 // Used for supressing warning in OOM tests
    45 #define __UNUSED_VAR(var) var = var
    46 
    47 /**
    48 @SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1781
    49 @SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
    50 @SYMTestPriority 	    High
    51 @SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
    52 @SYMTestExpectedResults Test must not fail
    53 */
    54 void CT_CP1258::TestL()
    55 	{
    56 	RLibrary lib;
    57 
    58 	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
    59 	// load the dll
    60 	TInt returnValue = lib.Load(KName,serverUid);
    61 	test(returnValue==0);
    62 
    63 	// get a pointer to the specified ordinal function and call it
    64 	TLibraryFunction function1 = lib.Lookup(1);
    65 	TLibraryFunction function2 = lib.Lookup(2);
    66 	TLibraryFunction function3 = lib.Lookup(3);
    67 
    68 	//cast the function pointer f to a function of type void with two arguments
    69 	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
    70 	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
    71 
    72 	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
    73 	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
    74 
    75 	typedef TBool (*TIsLegalShortNameCharacter)(TUint);
    76 	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
    77 
    78 
    79 	TBuf8<20> foreign1;
    80 	TBuf16<20> unicode2;
    81 
    82 	const TDesC16& unicode1(Uni_1);
    83 	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
    84 	TInt error = foreign1.Compare(CP1258_1);
    85 	test(error==0);
    86 	foreign1.Zero();
    87 
    88 	const TDesC8& foreign2(CP1258_2);
    89 	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
    90 	error = unicode2.Compare(Uni_2);
    91 	test(error==0);
    92 	unicode2.Zero();
    93 
    94 
    95 	//testing for legal short name character
    96 	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
    97 	test(result==1);
    98 	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
    99 	test(result==0);
   100 	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
   101 	test(result==0);
   102 
   103 	lib.Close();
   104 	}
   105 
   106 void CT_CP1258::OOMTestL()
   107 	{
   108     INFO_PRINTF1(_L("OOM testing"));
   109 	TInt err, tryCount = 0;
   110 	do
   111 		{
   112 			__UHEAP_MARK;
   113   		// find out the number of open handles
   114 		TInt startProcessHandleCount;
   115 		TInt startThreadHandleCount;
   116 		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   117 
   118 			// Setting Heap failure for OOM test
   119 		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   120 
   121 		TRAP(err,TestL());
   122 
   123 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   124 
   125 		// check that no handles have leaked
   126 		TInt endProcessHandleCount;
   127 		TInt endThreadHandleCount;
   128 		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   129 
   130 		test(startProcessHandleCount == endProcessHandleCount);
   131 		test(startThreadHandleCount  == endThreadHandleCount);
   132 
   133 		__UHEAP_MARKEND;
   134 		}while (err == KErrNoMemory);
   135 
   136 	test(err == KErrNone);
   137 	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
   138 	}
   139 
   140 
   141 CT_CP1258::CT_CP1258()
   142     {
   143     SetTestStepName(KTestStep_T_CP1258);
   144     }
   145 
   146 
   147 TVerdict CT_CP1258::doTestStepL()
   148     {
   149     SetTestStepResult(EFail);
   150 
   151     __UHEAP_MARK;
   152 
   153     TRAPD(error1, TestL());
   154     TRAPD(error2, OOMTestL());
   155 
   156     __UHEAP_MARKEND;
   157 
   158     if(error1 == KErrNone && error2 == KErrNone)
   159         {
   160         SetTestStepResult(EPass);
   161         }
   162 
   163     return TestStepResult();
   164     }