sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 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 <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#include <e32test.h>
|
sl@0
|
22 |
#include <jplangutil.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
25 |
RTest TheTest(_L("TestJPLangUtil"));
|
sl@0
|
26 |
|
sl@0
|
27 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
28 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
29 |
//Tests macroses and functions.
|
sl@0
|
30 |
//If (!aValue) then the test will be panicked, the test data files will be deleted.
|
sl@0
|
31 |
static void Check(TInt aValue, TInt aLine)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
if(!aValue)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
TheTest(EFalse, aLine);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
}
|
sl@0
|
38 |
//If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
|
sl@0
|
39 |
static void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
if(aValue != aExpected)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
44 |
TheTest(EFalse, aLine);
|
sl@0
|
45 |
}
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
//Use these to test conditions.
|
sl@0
|
49 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
50 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
51 |
|
sl@0
|
52 |
const TInt KDesLength = 24;
|
sl@0
|
53 |
_LIT( KText, "Text" );
|
sl@0
|
54 |
|
sl@0
|
55 |
LOCAL_C void TestJLUConvertHalfToFullWidth()
|
sl@0
|
56 |
{
|
sl@0
|
57 |
TBuf<KDesLength> unisrc( KText );
|
sl@0
|
58 |
TBuf<KDesLength> unides;
|
sl@0
|
59 |
TInt status = JPLangUtil::ConvertHalfToFullWidth( unisrc, unides );
|
sl@0
|
60 |
TEST(status == 4);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
LOCAL_C void TestJLUConvertFullToHalfWidth()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
TBuf<KDesLength> unisrc( KText );
|
sl@0
|
66 |
TBuf<KDesLength> unides;
|
sl@0
|
67 |
TInt status = JPLangUtil::ConvertFullToHalfWidth( unisrc, unides );
|
sl@0
|
68 |
TEST(status == 0);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
LOCAL_C void DoE32MainL()
|
sl@0
|
72 |
{
|
sl@0
|
73 |
TheTest.Start(_L("TestJPLangUtil:\n"));
|
sl@0
|
74 |
|
sl@0
|
75 |
TestJLUConvertHalfToFullWidth();
|
sl@0
|
76 |
TestJLUConvertFullToHalfWidth();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
// Global Functions
|
sl@0
|
80 |
|
sl@0
|
81 |
GLDEF_C TInt E32Main()
|
sl@0
|
82 |
{
|
sl@0
|
83 |
__UHEAP_MARK;
|
sl@0
|
84 |
|
sl@0
|
85 |
TheTest.Title();
|
sl@0
|
86 |
|
sl@0
|
87 |
CTrapCleanup* trapCleanup=CTrapCleanup::New();
|
sl@0
|
88 |
TEST(trapCleanup != NULL);
|
sl@0
|
89 |
|
sl@0
|
90 |
TRAPD(error, DoE32MainL());
|
sl@0
|
91 |
TEST2(error, KErrNone);
|
sl@0
|
92 |
|
sl@0
|
93 |
delete trapCleanup;
|
sl@0
|
94 |
|
sl@0
|
95 |
TheTest.End();
|
sl@0
|
96 |
TheTest.Close();
|
sl@0
|
97 |
|
sl@0
|
98 |
__UHEAP_MARKEND;
|
sl@0
|
99 |
return KErrNone;
|
sl@0
|
100 |
}
|