os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP950.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_CP950.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\x3125\x3122\xAAAA\x9673\x2593\xFA0C\x3000");
sl@0
    35
_LIT8(CP950_1, "\x53\xA3\xB6\xA3\xB3\x5F\xB3\xAF\xF9\xFE\xC9\x4A\xA1\x40");
sl@0
    36
_LIT16(Uni_2, "\x0032\xFFFD\xFE3E\xFFFD\xFFFD");
sl@0
    37
_LIT8(CP950_2, "\x32\x80\xA1\x70\xC1\x7F\xA7");
sl@0
    38
sl@0
    39
_LIT(KName,"CP950");
sl@0
    40
const TUid KPluginUid={0x10206A8C};
sl@0
    41
sl@0
    42
sl@0
    43
// Used for supressing warning in OOM tests
sl@0
    44
#define __UNUSED_VAR(var) var = var
sl@0
    45
sl@0
    46
//
sl@0
    47
/**
sl@0
    48
@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1776
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_CP950::TestL()
sl@0
    55
	{
sl@0
    56
    INFO_PRINTF1(_L("@SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1776"));
sl@0
    57
	RLibrary lib;
sl@0
    58
sl@0
    59
	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
sl@0
    60
	// load the dll
sl@0
    61
	TInt returnValue = lib.Load(KName,serverUid);
sl@0
    62
	test(returnValue==0);
sl@0
    63
sl@0
    64
	// get a pointer to the specified ordinal function and call it
sl@0
    65
	TLibraryFunction function1 = lib.Lookup(1);
sl@0
    66
	TLibraryFunction function2 = lib.Lookup(2);
sl@0
    67
	TLibraryFunction function3 = lib.Lookup(3);
sl@0
    68
sl@0
    69
	//cast the function pointer f to a function of type void with two arguments
sl@0
    70
	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
sl@0
    71
	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
sl@0
    72
sl@0
    73
	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
sl@0
    74
	TConvertToUnicodeL aConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
sl@0
    75
sl@0
    76
	typedef TBool (*TIsLegalShortNameCharacter)(TUint);
sl@0
    77
	TIsLegalShortNameCharacter aIsLegalShortNameCharacter = reinterpret_cast <TIsLegalShortNameCharacter> (function3);
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(CP950_1);
sl@0
    85
sl@0
    86
	test(error==0);
sl@0
    87
	foreign1.Zero();
sl@0
    88
sl@0
    89
	const TDesC8& foreign2(CP950_2);
sl@0
    90
	(*aConvertToUnicodeL)(unicode2,foreign2); 	//testing conversion to Unicode
sl@0
    91
	error = unicode2.Compare(Uni_2);
sl@0
    92
	test(error==0);
sl@0
    93
	unicode2.Zero();
sl@0
    94
sl@0
    95
sl@0
    96
	//testing for legal short name character
sl@0
    97
	TInt result = (*aIsLegalShortNameCharacter)(0x005F); //testing for existent character
sl@0
    98
	test(result==1);
sl@0
    99
	result = (*aIsLegalShortNameCharacter)(0x003F); //testing for illegal character
sl@0
   100
	test(result==0);
sl@0
   101
	result = (*aIsLegalShortNameCharacter)(0x2999); //testing for non-existent character
sl@0
   102
	test(result==0);
sl@0
   103
	result = (*aIsLegalShortNameCharacter)(0x3000); //testing for a double byte character
sl@0
   104
	test(result==1);
sl@0
   105
sl@0
   106
	lib.Close();
sl@0
   107
	}
sl@0
   108
sl@0
   109
// test code for INC080460: FATCharsetConv panics - stops china build booting
sl@0
   110
void CT_CP950::TestINC080460L()
sl@0
   111
	{
sl@0
   112
	RLibrary lib;
sl@0
   113
	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
sl@0
   114
sl@0
   115
	// load the dll
sl@0
   116
	TInt returnValue = lib.Load(KName,serverUid);
sl@0
   117
	test(returnValue==0);
sl@0
   118
sl@0
   119
	// get a pointer to the specified ordinal function and call it
sl@0
   120
	TLibraryFunction function1 = lib.Lookup(1);
sl@0
   121
	TLibraryFunction function2 = lib.Lookup(2);
sl@0
   122
sl@0
   123
	//cast the function pointer f to a function of type void with two arguments
sl@0
   124
	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
sl@0
   125
	TConvertFromUnicodeL ConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
sl@0
   126
sl@0
   127
	typedef void (*TConvertToUnicodeL)(TDes16&, const TDesC8&);
sl@0
   128
	TConvertToUnicodeL ConvertToUnicodeL = reinterpret_cast <TConvertToUnicodeL> (function2);
sl@0
   129
sl@0
   130
	// the problem in this defect is when the foreign buffer is not big enough the code panics
sl@0
   131
	// the solution is for the code to leave
sl@0
   132
sl@0
   133
	// the foreign buffer is 11 (8+3) and there are 17 unicode characters
sl@0
   134
	TBuf8<11> foreign;
sl@0
   135
	_LIT16(longUnicode, "\x0053\x3125\x3122\xAAAA\x0053\x3125\x3122\xAAAA\x0053\x3125\x3122\xAAAA\x0053\x3125\x3122\xAAAA");
sl@0
   136
	const TDesC16& testUnicode1(longUnicode);
sl@0
   137
	TInt error = KErrNone;
sl@0
   138
sl@0
   139
	// ConvertFromUnicodeL - check that this call leaves
sl@0
   140
	foreign.Zero();
sl@0
   141
	TRAP( error, ConvertFromUnicodeL(foreign, testUnicode1)); 	//testing conversion from Unicode
sl@0
   142
	test(error == KErrOverflow );
sl@0
   143
sl@0
   144
	// ConvertFromUnicodeL - test 1 character to long leaves
sl@0
   145
	_LIT16(longUnicode2, "FilenameEx\x3122");
sl@0
   146
	const TDesC16& testUnicode2(longUnicode2);
sl@0
   147
	foreign.Zero();
sl@0
   148
	error = KErrNone;
sl@0
   149
	TRAP( error, ConvertFromUnicodeL(foreign, testUnicode2)); 	//testing conversion from Unicode
sl@0
   150
	test(error == KErrOverflow );
sl@0
   151
sl@0
   152
	// ConvertFromUnicodeL - test 11 character does not leave
sl@0
   153
	_LIT16(longUnicode3, "FilenameExt");
sl@0
   154
	const TDesC16& testUnicode3(longUnicode3);
sl@0
   155
	foreign.Zero();
sl@0
   156
	error = KErrNone;
sl@0
   157
	TRAP( error, ConvertFromUnicodeL(foreign, testUnicode3)); 	//testing conversion from Unicode
sl@0
   158
	test(error == KErrNone );
sl@0
   159
sl@0
   160
	// check ConvertToUnicodeL leaves when the buffer is too small
sl@0
   161
	TBuf16<6> unicodeBuffer;
sl@0
   162
	_LIT8(sampletext, "this is far to big to fit");
sl@0
   163
	const TDesC8& sample(sampletext);
sl@0
   164
sl@0
   165
	unicodeBuffer.Zero();
sl@0
   166
	error = KErrNone;
sl@0
   167
	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample)); 	//testing conversion to Unicode
sl@0
   168
	test(error==KErrOverflow);
sl@0
   169
sl@0
   170
	// test 6 characters does NOT leave
sl@0
   171
	_LIT8( chars6, "abcdef");
sl@0
   172
	const TDesC8& sample6(chars6);
sl@0
   173
	unicodeBuffer.Zero();
sl@0
   174
	error = KErrNone;
sl@0
   175
	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample6)); 	//testing conversion to Unicode
sl@0
   176
	test(error==KErrNone);
sl@0
   177
sl@0
   178
	// test 7 characters does leave
sl@0
   179
	_LIT8( chars7, "abcdefg");
sl@0
   180
	const TDesC8& sample7(chars7);
sl@0
   181
	unicodeBuffer.Zero();
sl@0
   182
	error = KErrNone;
sl@0
   183
	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample7)); 	//testing conversion to Unicode
sl@0
   184
	test(error==KErrOverflow);
sl@0
   185
sl@0
   186
	// test when 7 foreign characters fits in 5 unicode it does NOT leave
sl@0
   187
	_LIT8( CP950_sample, "\x32\x80\xA1\x70\xC1\x7F\xA7");
sl@0
   188
	const TDesC8& sample7to5(CP950_sample);
sl@0
   189
	unicodeBuffer.Zero();
sl@0
   190
	error = KErrNone;
sl@0
   191
	TRAP( error,ConvertToUnicodeL(unicodeBuffer,sample7to5)); 	//testing conversion to Unicode
sl@0
   192
	test(error==KErrNone);
sl@0
   193
sl@0
   194
	lib.Close();
sl@0
   195
	}
sl@0
   196
sl@0
   197
sl@0
   198
/**
sl@0
   199
@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1847-0003
sl@0
   200
@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class as part of INC090073
sl@0
   201
@SYMTestPriority 	    High
sl@0
   202
@SYMTestActions  	    Tests for correct character conversion on certain chinese characters for CP936
sl@0
   203
@SYMTestExpectedResults Test must not fail
sl@0
   204
*/
sl@0
   205
void CT_CP950::TestINC090073L()
sl@0
   206
	{
sl@0
   207
    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847-0003 "));
sl@0
   208
 	_LIT16(unicode, "\x7C91\x8026\x8160\x7633\x6DFC\x715C\x6600\x9785\x86D8\x7A37\x61A9\x80B1\x86A3\x89E5\x80F2\x9B48\x6C19\x7B71\x946B\x6B46\x6615");
sl@0
   209
	_LIT8(CP950Code, "\xD3\x4A\xBD\xA2\xDF\x73\xEA\x6F\xD9\xE7\xB7\xD4\xA9\xFB\xBB\xDF\xDB\xB1\xBD\x5E\xBE\xCD\xAA\xD0\xB0\x47\xDF\xFD\xD3\x6A\xEF\x69\xCB\x49\xDF\x4E\xF8\xCA\xDD\xF5\xA9\xFD");
sl@0
   210
sl@0
   211
	RLibrary lib;
sl@0
   212
sl@0
   213
	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
sl@0
   214
	// load the dll
sl@0
   215
	TInt returnValue = lib.Load(KName,serverUid);
sl@0
   216
	test(returnValue==0);
sl@0
   217
sl@0
   218
	// get a pointer to the specified ordinal function and call it
sl@0
   219
	TLibraryFunction function1 = lib.Lookup(1);
sl@0
   220
sl@0
   221
	//cast the function pointer f to a function of type void with two arguments
sl@0
   222
	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
sl@0
   223
	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
sl@0
   224
sl@0
   225
	TBuf8<50> foreign1;
sl@0
   226
sl@0
   227
	foreign1.Zero();
sl@0
   228
	const TDesC16& unicode1(unicode);
sl@0
   229
	TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); 	//testing conversion from Unicode
sl@0
   230
	test(err==0);
sl@0
   231
	TInt error = foreign1.Compare(CP950Code);
sl@0
   232
	test(error==0);
sl@0
   233
	foreign1.Zero();
sl@0
   234
sl@0
   235
	lib.Close();
sl@0
   236
	}
sl@0
   237
sl@0
   238
void CT_CP950::OOMTestL()
sl@0
   239
	{
sl@0
   240
    INFO_PRINTF1(_L("OOM testing"));
sl@0
   241
	TInt err, tryCount = 0;
sl@0
   242
	do
sl@0
   243
		{
sl@0
   244
			__UHEAP_MARK;
sl@0
   245
  		// find out the number of open handles
sl@0
   246
		TInt startProcessHandleCount;
sl@0
   247
		TInt startThreadHandleCount;
sl@0
   248
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   249
sl@0
   250
			// Setting Heap failure for OOM test
sl@0
   251
		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
sl@0
   252
sl@0
   253
		TRAP(err,TestL());
sl@0
   254
sl@0
   255
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   256
sl@0
   257
		// check that no handles have leaked
sl@0
   258
		TInt endProcessHandleCount;
sl@0
   259
		TInt endThreadHandleCount;
sl@0
   260
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   261
sl@0
   262
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   263
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   264
sl@0
   265
		__UHEAP_MARKEND;
sl@0
   266
		}while (err == KErrNoMemory);
sl@0
   267
sl@0
   268
	test(err == KErrNone);
sl@0
   269
	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
sl@0
   270
	}
sl@0
   271
sl@0
   272
sl@0
   273
CT_CP950::CT_CP950()
sl@0
   274
    {
sl@0
   275
    SetTestStepName(KTestStep_T_CP950);
sl@0
   276
    }
sl@0
   277
sl@0
   278
sl@0
   279
TVerdict CT_CP950::doTestStepL()
sl@0
   280
    {
sl@0
   281
    SetTestStepResult(EFail);
sl@0
   282
sl@0
   283
    __UHEAP_MARK;
sl@0
   284
sl@0
   285
    TRAPD(error1, TestL());
sl@0
   286
    TRAPD(error2, TestINC090073L());
sl@0
   287
    TRAPD(error3, TestINC080460L());
sl@0
   288
    TRAPD(error4, OOMTestL());
sl@0
   289
sl@0
   290
    __UHEAP_MARKEND;
sl@0
   291
sl@0
   292
    if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone && error4 == KErrNone)
sl@0
   293
        {
sl@0
   294
        SetTestStepResult(EPass);
sl@0
   295
        }
sl@0
   296
sl@0
   297
    return TestStepResult();
sl@0
   298
    }