1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_baassert.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,89 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32debug.h>
1.20 +#include <e32test.h>
1.21 +#include "BaAssert.h"
1.22 +#include "BaCompileAssert.h"
1.23 +
1.24 +RTest TheTest(_L(" t_baassert.cpp"));
1.25 +
1.26 +//
1.27 +//
1.28 +//Test macro and functions
1.29 +LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
1.30 + {
1.31 + if(aValue != aExpected)
1.32 + {
1.33 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.34 + TheTest(EFalse, aLine);
1.35 + }
1.36 + }
1.37 +
1.38 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
1.39 +
1.40 +
1.41 +/**
1.42 +@SYMTestCaseID BASESRVCS-BAFL-UT-4068
1.43 +@SYMTestCaseDesc Tests the error code table (KErrorMapTbl) looks ups do not
1.44 + overrun and return random data in memory.
1.45 +@SYMTestPriority Medium
1.46 +@SYMTestActions Passes in an invalid error code, to check the correct error is return.
1.47 + Passes in valid error codes, at the end of the table to make sure the correct error
1.48 + code is returned.
1.49 +@SYMTestExpectedResults Correct system error codes are returned.
1.50 +@SYMDEF DEF124481
1.51 +*/
1.52 +void DEF124481()
1.53 + {
1.54 + TBaAssert assertObj(TBaAssert::ELeave);
1.55 +
1.56 + TInt panicCode = 111; // Invalid error code. Valid range is 0-110. See KErrorMapTbl.
1.57 + // Should return 'KErrArgument' as the panicCode is outside the valid range.
1.58 + TRAPD (error, assertObj.AssertDebL(EFalse, static_cast <TBafPanic> (panicCode)));
1.59 + TEST2(error, KErrArgument);
1.60 +
1.61 + panicCode = EBafPanicRFsConnectArg; // Equates to 110, which maps to 'KErrArgument'.
1.62 + // Should return 'KErrArgument'.
1.63 + TRAP (error, assertObj.AssertDebL(EFalse, static_cast <TBafPanic> (panicCode)));
1.64 + TEST2(error, KErrArgument);
1.65 +
1.66 + panicCode = EBafPanicBufLength; // Equates to 109, which maps to 'KErrCorrupt'.
1.67 + // Should return 'KErrCorrupt'.
1.68 + TRAP (error, assertObj.AssertDebL(EFalse, static_cast <TBafPanic> (panicCode)));
1.69 + TEST2(error, KErrCorrupt);
1.70 + }
1.71 +
1.72 +
1.73 +LOCAL_D void RunTestsL()
1.74 + {
1.75 + TheTest.Start(_L("@SYMTestCaseID:ASESRVCS-BAFL-UT-4068 BAFL error code table look up tests"));
1.76 + DEF124481();
1.77 + }
1.78 +
1.79 +
1.80 +TInt E32Main()
1.81 + {
1.82 + __UHEAP_MARK;
1.83 + CTrapCleanup *cleanup=CTrapCleanup::New();
1.84 + TheTest.Title();
1.85 + TRAPD(err,::RunTestsL());
1.86 + TEST2(err, KErrNone);
1.87 + TheTest.End();
1.88 + TheTest.Close();
1.89 + delete(cleanup);
1.90 + __UHEAP_MARKEND;
1.91 + return(0);
1.92 + }