sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "BaAssert.h" sl@0: #include "BaCompileAssert.h" sl@0: sl@0: RTest TheTest(_L(" t_baassert.cpp")); sl@0: sl@0: // sl@0: // sl@0: //Test macro and functions sl@0: LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID BASESRVCS-BAFL-UT-4068 sl@0: @SYMTestCaseDesc Tests the error code table (KErrorMapTbl) looks ups do not sl@0: overrun and return random data in memory. sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Passes in an invalid error code, to check the correct error is return. sl@0: Passes in valid error codes, at the end of the table to make sure the correct error sl@0: code is returned. sl@0: @SYMTestExpectedResults Correct system error codes are returned. sl@0: @SYMDEF DEF124481 sl@0: */ sl@0: void DEF124481() sl@0: { sl@0: TBaAssert assertObj(TBaAssert::ELeave); sl@0: sl@0: TInt panicCode = 111; // Invalid error code. Valid range is 0-110. See KErrorMapTbl. sl@0: // Should return 'KErrArgument' as the panicCode is outside the valid range. sl@0: TRAPD (error, assertObj.AssertDebL(EFalse, static_cast (panicCode))); sl@0: TEST2(error, KErrArgument); sl@0: sl@0: panicCode = EBafPanicRFsConnectArg; // Equates to 110, which maps to 'KErrArgument'. sl@0: // Should return 'KErrArgument'. sl@0: TRAP (error, assertObj.AssertDebL(EFalse, static_cast (panicCode))); sl@0: TEST2(error, KErrArgument); sl@0: sl@0: panicCode = EBafPanicBufLength; // Equates to 109, which maps to 'KErrCorrupt'. sl@0: // Should return 'KErrCorrupt'. sl@0: TRAP (error, assertObj.AssertDebL(EFalse, static_cast (panicCode))); sl@0: TEST2(error, KErrCorrupt); sl@0: } sl@0: sl@0: sl@0: LOCAL_D void RunTestsL() sl@0: { sl@0: TheTest.Start(_L("@SYMTestCaseID:ASESRVCS-BAFL-UT-4068 BAFL error code table look up tests")); sl@0: DEF124481(); sl@0: } sl@0: sl@0: sl@0: TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup *cleanup=CTrapCleanup::New(); sl@0: TheTest.Title(); sl@0: TRAPD(err,::RunTestsL()); sl@0: TEST2(err, KErrNone); sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: delete(cleanup); sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: }