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