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.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include "T_CP1258.h"
sl@0
    20
#include <e32des8.h>
sl@0
    21
sl@0
    22
#define test(cond)                                          \
sl@0
    23
    {                                                       \
sl@0
    24
    TBool __bb = (cond);                                    \
sl@0
    25
    TEST(__bb);                                             \
sl@0
    26
    if (!__bb)                                              \
sl@0
    27
        {                                                   \
sl@0
    28
        ERR_PRINTF1(_L("ERROR: Test Failed"));              \
sl@0
    29
        User::Leave(1);                                     \
sl@0
    30
        }                                                   \
sl@0
    31
    }
sl@0
    32
sl@0
    33
sl@0
    34
_LIT16(Uni_1, "\x006D\xAAAA\x00DC\x0111\x20AC\xFFFF\x0070");
sl@0
    35
_LIT8(CP1258_1, "\x6D\x5F\xDC\xF0\x80\x5F\x70");
sl@0
    36
_LIT16(Uni_2, "\x0017\x005F\x201A\x00A0\x0303");
sl@0
    37
_LIT8(CP1258_2, "\x17\x5F\x82\xA0\xDE");
sl@0
    38
sl@0
    39
sl@0
    40
_LIT(KName,"CP1258");
sl@0
    41
const TUid KPluginUid={0x10206A94};
sl@0
    42
sl@0
    43
sl@0
    44
// Used for supressing warning in OOM tests
sl@0
    45
#define __UNUSED_VAR(var) var = var
sl@0
    46
sl@0
    47
/**
sl@0
    48
@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1781
sl@0
    49
@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
sl@0
    50
@SYMTestPriority 	    High
sl@0
    51
@SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
sl@0
    52
@SYMTestExpectedResults Test must not fail
sl@0
    53
*/
sl@0
    54
void CT_CP1258::TestL()
sl@0
    55
	{
sl@0
    56
	RLibrary lib;
sl@0
    57
sl@0
    58
	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
sl@0
    59
	// load the dll
sl@0
    60
	TInt returnValue = lib.Load(KName,serverUid);
sl@0
    61
	test(returnValue==0);
sl@0
    62
sl@0
    63
	// get a pointer to the specified ordinal function and call it
sl@0
    64
	TLibraryFunction function1 = lib.Lookup(1);
sl@0
    65
	TLibraryFunction function2 = lib.Lookup(2);
sl@0
    66
	TLibraryFunction function3 = lib.Lookup(3);
sl@0
    67
sl@0
    68
	//cast the function pointer f to a function of type void with two arguments
sl@0
    69
	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
sl@0
    70
	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
sl@0
    71
sl@0
    72
	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
sl@0
    73
	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
sl@0
    74
sl@0
    75
	typedef TBool (*TIsLegalShortNameCharacter)(TUint);
sl@0
    76
	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
sl@0
    77
sl@0
    78
sl@0
    79
	TBuf8<20> foreign1;
sl@0
    80
	TBuf16<20> unicode2;
sl@0
    81
sl@0
    82
	const TDesC16& unicode1(Uni_1);
sl@0
    83
	(*aConvertFromUnicodeL)(foreign1, unicode1); 	//testing conversion from Unicode
sl@0
    84
	TInt error = foreign1.Compare(CP1258_1);
sl@0
    85
	test(error==0);
sl@0
    86
	foreign1.Zero();
sl@0
    87
sl@0
    88
	const TDesC8& foreign2(CP1258_2);
sl@0
    89
	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
sl@0
    90
	error = unicode2.Compare(Uni_2);
sl@0
    91
	test(error==0);
sl@0
    92
	unicode2.Zero();
sl@0
    93
sl@0
    94
sl@0
    95
	//testing for legal short name character
sl@0
    96
	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
sl@0
    97
	test(result==1);
sl@0
    98
	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
sl@0
    99
	test(result==0);
sl@0
   100
	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
sl@0
   101
	test(result==0);
sl@0
   102
sl@0
   103
	lib.Close();
sl@0
   104
	}
sl@0
   105
sl@0
   106
void CT_CP1258::OOMTestL()
sl@0
   107
	{
sl@0
   108
    INFO_PRINTF1(_L("OOM testing"));
sl@0
   109
	TInt err, tryCount = 0;
sl@0
   110
	do
sl@0
   111
		{
sl@0
   112
			__UHEAP_MARK;
sl@0
   113
  		// find out the number of open handles
sl@0
   114
		TInt startProcessHandleCount;
sl@0
   115
		TInt startThreadHandleCount;
sl@0
   116
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   117
sl@0
   118
			// Setting Heap failure for OOM test
sl@0
   119
		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
sl@0
   120
sl@0
   121
		TRAP(err,TestL());
sl@0
   122
sl@0
   123
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   124
sl@0
   125
		// check that no handles have leaked
sl@0
   126
		TInt endProcessHandleCount;
sl@0
   127
		TInt endThreadHandleCount;
sl@0
   128
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   129
sl@0
   130
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   131
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   132
sl@0
   133
		__UHEAP_MARKEND;
sl@0
   134
		}while (err == KErrNoMemory);
sl@0
   135
sl@0
   136
	test(err == KErrNone);
sl@0
   137
	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
sl@0
   138
	}
sl@0
   139
sl@0
   140
sl@0
   141
CT_CP1258::CT_CP1258()
sl@0
   142
    {
sl@0
   143
    SetTestStepName(KTestStep_T_CP1258);
sl@0
   144
    }
sl@0
   145
sl@0
   146
sl@0
   147
TVerdict CT_CP1258::doTestStepL()
sl@0
   148
    {
sl@0
   149
    SetTestStepResult(EFail);
sl@0
   150
sl@0
   151
    __UHEAP_MARK;
sl@0
   152
sl@0
   153
    TRAPD(error1, TestL());
sl@0
   154
    TRAPD(error2, OOMTestL());
sl@0
   155
sl@0
   156
    __UHEAP_MARKEND;
sl@0
   157
sl@0
   158
    if(error1 == KErrNone && error2 == KErrNone)
sl@0
   159
        {
sl@0
   160
        SetTestStepResult(EPass);
sl@0
   161
        }
sl@0
   162
sl@0
   163
    return TestStepResult();
sl@0
   164
    }