os/textandloc/charconvfw/fatfilenameconversionplugins/test/T_CP949.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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_CP949.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, "\xFFFF\x0053\x0059\x004D\x0042\x0049\x0041\x004E\xAC21\xC6AA\xFFFF\x9673\x8A70");
sl@0
    35
_LIT8(CP949_1, "\x5F\x53\x59\x4D\x42\x49\x41\x4E\x81\x4D\x9F\x42\x5F\xF2\xE7\xFD\xFE");
sl@0
    36
_LIT16(Uni_2, "\xFFFD\x005F\x304A\xFFFD\xFFFD");
sl@0
    37
_LIT8(CP949_2, "\xAA\x40\x5F\xAA\xAA\xFF\xFE");
sl@0
    38
sl@0
    39
_LIT(KName,"CP949");
sl@0
    40
const TUid KPluginUid={0x10206A90};
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
@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1777
sl@0
    48
@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class
sl@0
    49
@SYMTestPriority 	    High
sl@0
    50
@SYMTestActions  	    Tests for conversions from/to Unicode, using a function pointer
sl@0
    51
@SYMTestExpectedResults Test must not fail
sl@0
    52
*/
sl@0
    53
void CT_CP949::TestL()
sl@0
    54
	{
sl@0
    55
    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1777 "));
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<15> unicode2;
sl@0
    81
sl@0
    82
	const TDesC16& unicode1(Uni_1);
sl@0
    83
	TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); 	//testing conversion from Unicode
sl@0
    84
	test(err==0);
sl@0
    85
	TInt error = foreign1.Compare(CP949_1);
sl@0
    86
	test(error==0);
sl@0
    87
	foreign1.Zero();
sl@0
    88
sl@0
    89
	const TDesC8& foreign2(CP949_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)(0xAC02); //testing for 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
/**
sl@0
   110
@SYMTestCaseID          SYSLIB-FATCHARSETCONV-CT-1847-0002
sl@0
   111
@SYMTestCaseDesc	    Tests API behaviours of UnicodeConv class as part of INC090073
sl@0
   112
@SYMTestPriority 	    High
sl@0
   113
@SYMTestActions  	    Tests for correct character conversion on certain chinese characters for CP936
sl@0
   114
@SYMTestExpectedResults Test must not fail
sl@0
   115
*/
sl@0
   116
void CT_CP949::TestINC090073L()
sl@0
   117
	{
sl@0
   118
    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-FATCHARSETCONV-CT-1847-0002 "));
sl@0
   119
 	_LIT16(unicode, "\x715C\x7A37\x61A9\x80B1\x86A3\x6B46\x6615");
sl@0
   120
	_LIT8(CP932Code, "\xE9\xF2\xF2\xC3\xCC\xA8\xCE\xDD\xCD\xF7\xFD\xE4\xFD\xDA");
sl@0
   121
sl@0
   122
	RLibrary lib;
sl@0
   123
sl@0
   124
	const TUidType serverUid(KNullUid,KNullUid,KPluginUid);
sl@0
   125
	// load the dll
sl@0
   126
	TInt returnValue = lib.Load(KName,serverUid);
sl@0
   127
	test(returnValue==0);
sl@0
   128
sl@0
   129
	// get a pointer to the specified ordinal function and call it
sl@0
   130
	TLibraryFunction function1 = lib.Lookup(1);
sl@0
   131
sl@0
   132
sl@0
   133
	//cast the function pointer f to a function of type void with two arguments
sl@0
   134
	typedef void (*TConvertFromUnicodeL)(TDes8&, const TDesC16&);
sl@0
   135
	TConvertFromUnicodeL aConvertFromUnicodeL = reinterpret_cast <TConvertFromUnicodeL> (function1);
sl@0
   136
sl@0
   137
	TBuf8<15> foreign1;
sl@0
   138
sl@0
   139
	foreign1.Zero();
sl@0
   140
	const TDesC16& unicode1(unicode);
sl@0
   141
	TRAPD(err,(*aConvertFromUnicodeL)(foreign1, unicode1)); 	//testing conversion from Unicode
sl@0
   142
	test(err==0);
sl@0
   143
	TInt error = foreign1.Compare(CP932Code);
sl@0
   144
	test(error==0);
sl@0
   145
	foreign1.Zero();
sl@0
   146
sl@0
   147
	lib.Close();
sl@0
   148
	}
sl@0
   149
sl@0
   150
void CT_CP949::OOMTestL()
sl@0
   151
	{
sl@0
   152
    INFO_PRINTF1(_L("OOM testing"));
sl@0
   153
	TInt err, tryCount = 0;
sl@0
   154
	do
sl@0
   155
		{
sl@0
   156
			__UHEAP_MARK;
sl@0
   157
  		// find out the number of open handles
sl@0
   158
		TInt startProcessHandleCount;
sl@0
   159
		TInt startThreadHandleCount;
sl@0
   160
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   161
sl@0
   162
			// Setting Heap failure for OOM test
sl@0
   163
		__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
sl@0
   164
sl@0
   165
		TRAP(err,TestL());
sl@0
   166
sl@0
   167
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   168
sl@0
   169
		// check that no handles have leaked
sl@0
   170
		TInt endProcessHandleCount;
sl@0
   171
		TInt endThreadHandleCount;
sl@0
   172
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   173
sl@0
   174
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   175
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   176
sl@0
   177
		__UHEAP_MARKEND;
sl@0
   178
		}while (err == KErrNoMemory);
sl@0
   179
sl@0
   180
	test(err == KErrNone);
sl@0
   181
	INFO_PRINTF2(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
sl@0
   182
	}
sl@0
   183
sl@0
   184
sl@0
   185
CT_CP949::CT_CP949()
sl@0
   186
    {
sl@0
   187
    SetTestStepName(KTestStep_T_CP949);
sl@0
   188
    }
sl@0
   189
sl@0
   190
sl@0
   191
sl@0
   192
TVerdict CT_CP949::doTestStepL()
sl@0
   193
    {
sl@0
   194
    SetTestStepResult(EFail);
sl@0
   195
sl@0
   196
    __UHEAP_MARK;
sl@0
   197
sl@0
   198
    TRAPD(error1, TestL());
sl@0
   199
    TRAPD(error2, TestINC090073L());
sl@0
   200
    TRAPD(error3, OOMTestL());
sl@0
   201
sl@0
   202
    __UHEAP_MARKEND;
sl@0
   203
sl@0
   204
    if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone)
sl@0
   205
        {
sl@0
   206
        SetTestStepResult(EPass);
sl@0
   207
        }
sl@0
   208
sl@0
   209
    return TestStepResult();
sl@0
   210
    }