os/ossrv/lowlevellibsandfws/apputils/tsrc/t_baassert.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32debug.h>
sl@0
    17
#include <e32test.h>
sl@0
    18
#include "BaAssert.h"
sl@0
    19
#include "BaCompileAssert.h"
sl@0
    20
sl@0
    21
RTest TheTest(_L(" t_baassert.cpp"));
sl@0
    22
sl@0
    23
//
sl@0
    24
//
sl@0
    25
//Test macro and functions
sl@0
    26
LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    27
	{
sl@0
    28
	if(aValue != aExpected)
sl@0
    29
		{
sl@0
    30
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    31
		TheTest(EFalse, aLine);
sl@0
    32
		}
sl@0
    33
	}
sl@0
    34
sl@0
    35
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    36
sl@0
    37
sl@0
    38
/**
sl@0
    39
@SYMTestCaseID          BASESRVCS-BAFL-UT-4068
sl@0
    40
@SYMTestCaseDesc        Tests the error code table (KErrorMapTbl) looks ups do not
sl@0
    41
                        overrun and return random data in memory.
sl@0
    42
@SYMTestPriority        Medium
sl@0
    43
@SYMTestActions         Passes in an invalid error code, to check the correct error is return.
sl@0
    44
                        Passes in valid error codes, at the end of the table to make sure the correct error
sl@0
    45
                        code is returned.
sl@0
    46
@SYMTestExpectedResults Correct system error codes are returned.
sl@0
    47
@SYMDEF                 DEF124481
sl@0
    48
*/
sl@0
    49
void DEF124481()
sl@0
    50
	{
sl@0
    51
	TBaAssert assertObj(TBaAssert::ELeave);
sl@0
    52
sl@0
    53
	TInt panicCode = 111; // Invalid error code. Valid range is 0-110. See KErrorMapTbl.
sl@0
    54
	// Should return 'KErrArgument' as the panicCode is outside the valid range.
sl@0
    55
	TRAPD (error, assertObj.AssertDebL(EFalse, static_cast <TBafPanic> (panicCode)));
sl@0
    56
	TEST2(error, KErrArgument);
sl@0
    57
sl@0
    58
	panicCode = EBafPanicRFsConnectArg; // Equates to 110, which maps to 'KErrArgument'.
sl@0
    59
	// Should return 'KErrArgument'.
sl@0
    60
	TRAP (error, assertObj.AssertDebL(EFalse, static_cast <TBafPanic> (panicCode)));
sl@0
    61
	TEST2(error, KErrArgument);
sl@0
    62
sl@0
    63
	panicCode = EBafPanicBufLength; // Equates to 109, which maps to 'KErrCorrupt'.
sl@0
    64
	// Should return 'KErrCorrupt'.
sl@0
    65
	TRAP (error, assertObj.AssertDebL(EFalse, static_cast <TBafPanic> (panicCode)));
sl@0
    66
	TEST2(error, KErrCorrupt);
sl@0
    67
	}
sl@0
    68
sl@0
    69
sl@0
    70
LOCAL_D void RunTestsL()
sl@0
    71
	{
sl@0
    72
	TheTest.Start(_L("@SYMTestCaseID:ASESRVCS-BAFL-UT-4068 BAFL error code table look up tests"));
sl@0
    73
	DEF124481();
sl@0
    74
	}
sl@0
    75
sl@0
    76
sl@0
    77
TInt E32Main()
sl@0
    78
	{
sl@0
    79
	__UHEAP_MARK;
sl@0
    80
    CTrapCleanup *cleanup=CTrapCleanup::New();
sl@0
    81
    TheTest.Title();
sl@0
    82
    TRAPD(err,::RunTestsL());
sl@0
    83
	TEST2(err, KErrNone);
sl@0
    84
	TheTest.End();
sl@0
    85
	TheTest.Close();
sl@0
    86
    delete(cleanup);
sl@0
    87
	__UHEAP_MARKEND;
sl@0
    88
    return(0);
sl@0
    89
	}