diff -r e5af45d51884 -r 31fccae4f8a7 uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifctkitblockshuimf.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifctkitblockshuimf.cpp Wed Sep 01 12:16:53 2010 +0100 @@ -0,0 +1,326 @@ +/* +* Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: test api of alf_core_toolkit +* +*/ + + + +// [INCLUDE FILES] +#include +#include +#include +#include + +#include "testuiaifcoretoolkit.h" + +// --------------------------THuiConstantMappingFunction------------------------ +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHCMFConstructorL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHCMFConstructorL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHCMFConstructorL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiConstantMappingFunction* function = new( ELeave ) THuiConstantMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHCMFMapValueL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHCMFMapValueL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHCMFMapValueL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiConstantMappingFunction* function = new( ELeave ) THuiConstantMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MapValue( 0 ,0 ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ---------------------------THuiLinearMappingFunction------------------------- +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHLMFConstructorL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHLMFConstructorL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHLMFConstructorL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiLinearMappingFunction* function = new( ELeave ) THuiLinearMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHLMFMapValueL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHLMFMapValueL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHLMFMapValueL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiLinearMappingFunction* function = new( ELeave ) THuiLinearMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MapValue( 0 ,0 ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------THuiSineMappingFunction-------------------------- +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHSMFConstructorL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHSMFConstructorL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHSMFConstructorL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiSineMappingFunction* function = new( ELeave ) THuiSineMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHSMFMapValueL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHSMFMapValueL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHSMFMapValueL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiSineMappingFunction* function = new( ELeave ) THuiSineMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MapValue( 0 ,0 ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ---------------------------THuiCosineMappingFunction------------------------- +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHCosineMFConstructorL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHCosineMFConstructorL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHCosineMFConstructorL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiCosineMappingFunction* function = new( ELeave ) THuiCosineMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHCosineMFMapValueL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHCosineMFMapValueL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHCosineMFMapValueL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiCosineMappingFunction* function = new( ELeave ) THuiCosineMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MapValue( 0 ,0 ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// --------------------------THuiAverageMappingFunction------------------------- +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHAMFConstructorL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHAMFConstructorL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHAMFConstructorL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiAverageMappingFunction* function = new( ELeave ) THuiAverageMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHAMFMapValueL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHAMFMapValueL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHAMFMapValueL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiAverageMappingFunction* function = new( ELeave ) THuiAverageMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MapValue( 0 ,0 ); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHAMFMappingFunctionChangedL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHAMFMappingFunctionChangedL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHAMFMappingFunctionChangedL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiAverageMappingFunction* function = new( ELeave ) THuiAverageMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MappingFunctionChanged(); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + } + +// ----------------------------------------------------------------------------- +// CTestUiAifCoreToolkit::TestTHAMFMappingFunctionClearChangedL +// ----------------------------------------------------------------------------- +// +TInt CTestUiAifCoreToolkit::TestTHAMFMappingFunctionClearChangedL( CStifItemParser& /*aItem*/ ) + { + + // Print to UI + _LIT( KTestuiaifcoretoolkit, "testuiaifcoretoolkit" ); + _LIT( KHuiMappingFunctions, "In TestTHAMFMappingFunctionClearChangedL" ); + TestModuleIf().Printf( 0, KTestuiaifcoretoolkit, KHuiMappingFunctions ); + // Print to log file + iLog->Log( KHuiMappingFunctions ); + + THuiAverageMappingFunction* function = new( ELeave ) THuiAverageMappingFunction(); + CleanupStack::PushL( function ); + STIF_ASSERT_NOT_NULL( function ); + function->MappingFunctionClearChanged(); + CleanupStack::Pop( function ); + delete function; + function = NULL; + + return KErrNone; + }