1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textandlocutils/jplangutil/test/tsrc/tjplangutil.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,100 @@
1.4 +/*
1.5 +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include <e32std.h>
1.23 +#include <e32base.h>
1.24 +#include <e32test.h>
1.25 +#include <jplangutil.h>
1.26 +
1.27 +///////////////////////////////////////////////////////////////////////////////////////
1.28 +RTest TheTest(_L("TestJPLangUtil"));
1.29 +
1.30 +///////////////////////////////////////////////////////////////////////////////////////
1.31 +///////////////////////////////////////////////////////////////////////////////////////
1.32 +//Tests macroses and functions.
1.33 +//If (!aValue) then the test will be panicked, the test data files will be deleted.
1.34 +static void Check(TInt aValue, TInt aLine)
1.35 + {
1.36 + if(!aValue)
1.37 + {
1.38 + TheTest(EFalse, aLine);
1.39 + }
1.40 + }
1.41 +//If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
1.42 +static void Check(TInt aValue, TInt aExpected, TInt aLine)
1.43 + {
1.44 + if(aValue != aExpected)
1.45 + {
1.46 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.47 + TheTest(EFalse, aLine);
1.48 + }
1.49 + }
1.50 +
1.51 +//Use these to test conditions.
1.52 +#define TEST(arg) ::Check((arg), __LINE__)
1.53 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
1.54 +
1.55 +const TInt KDesLength = 24;
1.56 +_LIT( KText, "Text" );
1.57 +
1.58 +LOCAL_C void TestJLUConvertHalfToFullWidth()
1.59 + {
1.60 + TBuf<KDesLength> unisrc( KText );
1.61 + TBuf<KDesLength> unides;
1.62 + TInt status = JPLangUtil::ConvertHalfToFullWidth( unisrc, unides );
1.63 + TEST(status == 4);
1.64 + }
1.65 +
1.66 +LOCAL_C void TestJLUConvertFullToHalfWidth()
1.67 + {
1.68 + TBuf<KDesLength> unisrc( KText );
1.69 + TBuf<KDesLength> unides;
1.70 + TInt status = JPLangUtil::ConvertFullToHalfWidth( unisrc, unides );
1.71 + TEST(status == 0);
1.72 + }
1.73 +
1.74 +LOCAL_C void DoE32MainL()
1.75 + {
1.76 + TheTest.Start(_L("TestJPLangUtil:\n"));
1.77 +
1.78 + TestJLUConvertHalfToFullWidth();
1.79 + TestJLUConvertFullToHalfWidth();
1.80 + }
1.81 +
1.82 +// Global Functions
1.83 +
1.84 +GLDEF_C TInt E32Main()
1.85 + {
1.86 + __UHEAP_MARK;
1.87 +
1.88 + TheTest.Title();
1.89 +
1.90 + CTrapCleanup* trapCleanup=CTrapCleanup::New();
1.91 + TEST(trapCleanup != NULL);
1.92 +
1.93 + TRAPD(error, DoE32MainL());
1.94 + TEST2(error, KErrNone);
1.95 +
1.96 + delete trapCleanup;
1.97 +
1.98 + TheTest.End();
1.99 + TheTest.Close();
1.100 +
1.101 + __UHEAP_MARKEND;
1.102 + return KErrNone;
1.103 + }