os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP1252.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP1252.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,163 @@
     1.4 +/*
     1.5 +* Copyright (c) 2006-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_CP1252.h"
    1.23 +#include <e32des8.h>
    1.24 +
    1.25 +#define test(cond)                                          \
    1.26 +    {                                                       \
    1.27 +    TBool __bb = (cond);                                    \
    1.28 +    TEST(__bb);                                             \
    1.29 +    if (!__bb)                                              \
    1.30 +        {                                                   \
    1.31 +        ERR_PRINTF1(_L("ERROR: Test Failed"));              \
    1.32 +        User::Leave(1);                                     \
    1.33 +        }                                                   \
    1.34 +    }
    1.35 +
    1.36 +
    1.37 +_LIT16(Uni_1, "\xFFFF\x0053\x0059\x004D\x0042\x0049\x0041\x004E\xAAAA\x20AC\x00E8\x017B");
    1.38 +_LIT8(CP1252_1, "\x5F\x53\x59\x4D\x42\x49\x41\x4E\x5F\x80\xE8\x5F");
    1.39 +_LIT16(Uni_2, "\x00A1\x02DC\x00AD\xFFFD");
    1.40 +_LIT8(CP1252_2, "\xA1\x98\xAD\x90");
    1.41 +
    1.42 +_LIT(KName,"CP1252");
    1.43 +const TUid KPluginUid={0x10206A9A};
    1.44 +
    1.45 +
    1.46 +// Used for supressing warning in OOM tests
    1.47 +#define __UNUSED_VAR(var) var = var
    1.48 +
    1.49 +/**
    1.50 +@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1787
    1.51 +@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
    1.52 +@SYMTestPriority 	    High
    1.53 +@SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
    1.54 +@SYMTestExpectedResults Test must not fail
    1.55 +*/
    1.56 +void CT_CP1252::TestL()
    1.57 +	{
    1.58 +    RLibrary lib;
    1.59 +
    1.60 +	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
    1.61 +	// load the dll
    1.62 +	TInt returnValue = lib.Load(KName,serverUid);
    1.63 +	test(returnValue==0);
    1.64 +
    1.65 +	// get a pointer to the specified ordinal function and call it
    1.66 +	TLibraryFunction function1 = lib.Lookup(1);
    1.67 +	TLibraryFunction function2 = lib.Lookup(2);
    1.68 +	TLibraryFunction function3 = lib.Lookup(3);
    1.69 +
    1.70 +	//cast the function pointer f to a function of type void with two arguments
    1.71 +	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
    1.72 +	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
    1.73 +
    1.74 +	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
    1.75 +	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
    1.76 +
    1.77 +	typedef TBool (*TIsLegalShortNameCharacter)(TUint);
    1.78 +	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
    1.79 +
    1.80 +
    1.81 +	TBuf8<15> foreign1;
    1.82 +	TBuf16<15> unicode2;
    1.83 +
    1.84 +	const TDesC16& unicode1(Uni_1);
    1.85 +	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
    1.86 +	TInt error = foreign1.Compare(CP1252_1);
    1.87 +	test(error==0);
    1.88 +	foreign1.Zero();
    1.89 +
    1.90 +	const TDesC8& foreign2(CP1252_2);
    1.91 +	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
    1.92 +	error = unicode2.Compare(Uni_2);
    1.93 +	test(error==0);
    1.94 +	unicode2.Zero();
    1.95 +
    1.96 +
    1.97 +	//testing for legal short name character
    1.98 +	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
    1.99 +	test(result==1);
   1.100 +	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
   1.101 +	test(result==0);
   1.102 +	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
   1.103 +	test(result==0);
   1.104 +
   1.105 +	lib.Close();
   1.106 +	}
   1.107 +
   1.108 +void CT_CP1252::OOMTestL()
   1.109 +	{
   1.110 +    INFO_PRINTF1(_L("OOM testing"));
   1.111 +	TInt err, tryCount = 0;
   1.112 +	do
   1.113 +		{
   1.114 +			__UHEAP_MARK;
   1.115 +  		// find out the number of open handles
   1.116 +		TInt startProcessHandleCount;
   1.117 +		TInt startThreadHandleCount;
   1.118 +		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   1.119 +
   1.120 +			// Setting Heap failure for OOM test
   1.121 +		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
   1.122 +
   1.123 +		TRAP(err,TestL());
   1.124 +
   1.125 +		__UHEAP_SETFAIL(RHeap::ENone, 0);
   1.126 +
   1.127 +		// check that no handles have leaked
   1.128 +		TInt endProcessHandleCount;
   1.129 +		TInt endThreadHandleCount;
   1.130 +		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   1.131 +
   1.132 +		test(startProcessHandleCount == endProcessHandleCount);
   1.133 +		test(startThreadHandleCount  == endThreadHandleCount);
   1.134 +
   1.135 +		__UHEAP_MARKEND;
   1.136 +		}while (err == KErrNoMemory);
   1.137 +
   1.138 +	test(err == KErrNone);
   1.139 +	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
   1.140 +	}
   1.141 +
   1.142 +
   1.143 +CT_CP1252::CT_CP1252()
   1.144 +    {
   1.145 +    SetTestStepName(KTestStep_T_CP1252);
   1.146 +    }
   1.147 +
   1.148 +
   1.149 +TVerdict CT_CP1252::doTestStepL()
   1.150 +    {
   1.151 +    SetTestStepResult(EFail);
   1.152 +
   1.153 +    __UHEAP_MARK;
   1.154 +
   1.155 +    TRAPD(error1, TestL());
   1.156 +    TRAPD(error2, OOMTestL());
   1.157 +
   1.158 +    __UHEAP_MARKEND;
   1.159 +
   1.160 +    if(error1 == KErrNone && error2 == KErrNone)
   1.161 +        {
   1.162 +        SetTestStepResult(EPass);
   1.163 +        }
   1.164 +
   1.165 +    return TestStepResult();
   1.166 +    }