diff -r 000000000000 -r 08ec8eefde2f traceservices/commsdebugutility/TE_commsdebugutility/src/step_008_xx.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/traceservices/commsdebugutility/TE_commsdebugutility/src/step_008_xx.cpp Fri Jan 22 11:06:30 2010 +0200 @@ -0,0 +1,727 @@ +// Copyright (c) 2003-2009 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: +// This contains Flogger Unit Test Case 008.xx + +// EPOC includes +#include + +// Test system includes +#include +#include + + +//User includes +#include "teststepcomsdbg.h" +#include "step_008_xx.h" + + +/** +* Function Name : CFloggerTest008_01 +* Input parameters : None +* Output parameters : None +* Description : This is the constructor +*/ + + +CFloggerTest008_01::CFloggerTest008_01() + { + // store the name of this test case + SetTestStepName(_L("step_008_01")); + + } + + + +/** +* Function Name :~ CFloggerTest008_01 +* Input parameters : None +* Output parameters : None +* Description : This is the Destructor +*/ + + +CFloggerTest008_01::~CFloggerTest008_01() + { + + } + + +/** +* Function Name : doTestStepL +* Input parameters : None +* Output parameters : TVerdict +* Description : This function returns weather the test case 008_01 has +* passed or failed + +*/ + + +TVerdict CFloggerTest008_01::doTestStepL( ) + { + INFO_PRINTF1(_L("Step 008.01 called ")); + + if ( executeStepL(EFalse) == KErrNone ) + SetTestStepResult(EPass); + + else + SetTestStepResult(EFail); + + + User::After(KTimeForDisplay); + return TestStepResult(); + } + + +/** +* Function Name : executeStepL +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the test data in to the log file +* This function check the test message is present in the +* log file + +*/ + + +TInt CFloggerTest008_01::executeStepL(TBool heapTest) + { + TInt ret = KErrNone; + ret = DoTestConnect(); + if (ret == KErrNone) + { + ret = DoTestWrite(); + if ( ret == KErrNone) + { + TRAPD(r, ret = DoTestCheckWriteL()); + if ((heapTest) && ((ret == KErrNotFound) || (r != KErrNone))) + { + ret = KErrNoMemory; + } + else if (r != KErrNone) + { + ret = r; + } + } + } + +// if (ret == KErrNone) + iFlogger.Close(); + return ret; + } + +/** +* Function Name : executeStepL +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the test data in to the log file +* This function check the test message is present in the +* log file + +*/ + + +TInt CFloggerTest008_01::executeStepL() + { + return KErrGeneral; + } + +/** +* Function Name : DoTestWrite +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the data to the file logger + +*/ + + +TInt CFloggerTest008_01::DoTestWrite() + { + _LIT8(KTestMessageOne,"TC 8_01: The value of test integer variable :%d"); + iFlogger.WriteFormat(KTestMessageOne, 100); //Write 8 bit test descriptor + + ForceLogFlush(iFlogger); + + return KErrNone; + } + + +/** +* Function Name : DoTestCheckWriteL +* Input parameters : None +* Output parameters : TInt +* Description : This function checks the weather test data was written + in to the log file by DoTestWriteL() or not. + +*/ + + +TInt CFloggerTest008_01::DoTestCheckWriteL() + { + User::After(1000*1000); + RFile theFile; + HBufC8 * hBuffer; + TInt listfilesize; + TInt returnCode; + RFs fileSystem; //For file operation create a file system + _LIT(KLogFile,"c:\\logs\\log.txt"); // the log file path + + TBuf8<256> testData; //To hold the test descriptor + + _LIT8(KTestMessageOne,"TC 8_01: The value of test integer variable :%d"); + testData.Format(KTestMessageOne,100); + + _LIT8(KOOMError, "#Logs may be lost out of memory!!"); //Error message + + User::LeaveIfError(fileSystem.Connect()); + + //Open the file in the read mode + User::LeaveIfError(theFile.Open(fileSystem,KLogFile,EFileRead)); + + CleanupClosePushL(theFile); + + User::LeaveIfError(returnCode = theFile.Size(listfilesize)); //Size of the file + hBuffer = HBufC8::New(listfilesize); //Allocate the buffer + CleanupStack::PushL(hBuffer); + TPtr8 ptrString = hBuffer->Des(); ; //To hold the buffer + + // Read from position 0: start of file + returnCode = theFile.Read(ptrString); + + returnCode = ptrString.Find(testData); //find the test descriptor in the buffer read + //from the file + + if (returnCode == KErrNotFound) //Find the error message + { + returnCode = ptrString.Find(KOOMError); + if (returnCode > 0) + User::Leave(KErrNoMemory); + } + + CleanupStack::PopAndDestroy(hBuffer); + CleanupStack::PopAndDestroy(); // For theFile object + if (returnCode > 0) + return KErrNone; + else + return KErrNotFound; + } + + + +/** +* Function Name : DoTestConnect +* Input parameters : None +* Output parameters : TInt +* Description : This function establishes a connection to file logger +* and sets the system and component name in file logger. + +*/ + + +TInt CFloggerTest008_01::DoTestConnect() + { + TInt ret = EFail; + TPtrC8 ptrSubSystem; + TPtrC8 ptrComponent; + ptrSubSystem.Set(_L8("SubSystem")); + ptrComponent.Set(_L8("Component")); + + ret = iFlogger.Connect(); //Call connect() of Flogger + if (ret == KErrNone) + ret = iFlogger.SetLogTags(ptrSubSystem, ptrComponent); //SetLogTags() of Flogger called + + if (ret == KErrNone) + ret = iFlogger.ClearLog(); //clear the contents from the log + + return ret; + } + + + + + +/** +* Function Name : CFloggerTest008_02 +* Input parameters : None +* Output parameters : None +* Description : This is the constructor +*/ + + +CFloggerTest008_02::CFloggerTest008_02() + { + // store the name of this test case + SetTestStepName(_L("step_008_02")); + } + + +/** +* Function Name :~ CFloggerTest008_02 +* Input parameters : None +* Output parameters : None +* Description : This is the Destructor +*/ + + +CFloggerTest008_02::~CFloggerTest008_02() + { + + } + + +/** +* Function Name : doTestStepL +* Input parameters : None +* Output parameters : TVerdict +* Description : This function returns weather the test case 008_02 has +* passed or failed + +*/ + + +TVerdict CFloggerTest008_02::doTestStepL( ) + { + INFO_PRINTF1(_L("Step 008.02 called ")); + + if ( executeStepL() == KErrNone ) + SetTestStepResult(EPass); + + else + SetTestStepResult(EFail); + + + User::After(KTimeForDisplay); + return TestStepResult(); + } + + +/** +* Function Name : executeStepL +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the test data in to the log file +* This function check the test message is present in the +* log file + +*/ + + +TInt CFloggerTest008_02::executeStepL() + { + TInt ret = KErrGeneral; + ret = DoTestConnect(); + CleanupClosePushL(iFlogger); + if (ret == KErrNone) + { + ret = DoTestWrite() ; + if ( ret == KErrNone) + { + iFlogger.Close(); + TRAPD(r, ret = DoTestCheckWriteL() ); + if ( r != KErrNone) + ret = r; + } + } + CleanupStack::PopAndDestroy(); //logger + return ret; + } + +/** +* Function Name : executeStepL +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the test data in to the log file +* This function check the test message is present in the +* log file + +*/ + + +TInt CFloggerTest008_02::executeStepL(TBool) + { + return KErrGeneral; + } + +/** +* Function Name : DoTestConnect +* Input parameters : None +* Output parameters : TInt +* Description : This function establishes a connection to file logger +* and sets the system and component name in file logger. + +*/ + + +TInt CFloggerTest008_02::DoTestConnect() + { + TInt ret; + TPtrC8 ptrSubSystem, ptrComponent; + ptrSubSystem.Set(_L8("SubSystem")); + ptrComponent.Set(_L8("Component")); + + ret = iFlogger.Connect(); //Call connect() of Flogger + if (ret == KErrNone) + ret = iFlogger.SetLogTags(ptrSubSystem, ptrComponent); //SetLogTags() of Flogger called + + if (ret == KErrNone) + ret = iFlogger.ClearLog(); //clear the contents from the log + + return ret; + + } + + +/** +* Function Name : DoTestWrite +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the data to the file logger + +*/ + + +TInt CFloggerTest008_02::DoTestWrite() + { + _LIT8(KTestMessageTwo,"TC 8_02: The value of first test integer variable :%d The value of second test integer variable : %d"); + iFlogger.WriteFormat(KTestMessageTwo, 100, 200); //Writes a 8 bit test descriptor + + ForceLogFlush(iFlogger); + return KErrNone; + } + + +/** +//Function Name : DoTestCheckWriteL +//Input parameters : None +//Output parameters : TInt +//Description : This function checks the weather test data was written +// in to the log file by DoTestWriteL() or not. + +*/ + + +TInt CFloggerTest008_02::DoTestCheckWriteL() + { + User::After(1000*1000); + RFile theFile; + HBufC8 * hBuffer; + TInt listfilesize; + TInt returnCode; + + RFs fileSystem; //For file operation create a file system + _LIT(KLogFile,"c:\\logs\\log.txt"); // the log file path + + TBuf8<256> testData; //To hold the test descriptor + _LIT8(KTestMessageTwo,"TC 8_02: The value of first test integer variable :%d The value of second test integer variable : %d"); + testData.Format(KTestMessageTwo,100, 200); + + _LIT8(KOOMError, "#Logs may be lost out of memory!!"); // Error message + + User::LeaveIfError(fileSystem.Connect());//Connect to the file server + + //Open the file in the read mode + User::LeaveIfError(theFile.Open(fileSystem,KLogFile,EFileRead)); + + CleanupClosePushL(theFile); + + + User::LeaveIfError(returnCode = theFile.Size(listfilesize)); //Size of the file + hBuffer = HBufC8::New(listfilesize); //Allocate the buffer + CleanupStack::PushL(hBuffer); + TPtr8 ptrString = hBuffer->Des(); ; //To hold the buffer + + // Read from position 0: start of file + returnCode = theFile.Read(ptrString); + + returnCode = ptrString.Find(testData); //find the test descriptor in the buffer read + //from the file + + if (returnCode == KErrNotFound) // Check for the error message in the log + { + returnCode = ptrString.Find(KOOMError); + if (returnCode > 0) + User::Leave(KErrNoMemory); + } + + + CleanupStack::PopAndDestroy(hBuffer); + CleanupStack::PopAndDestroy(); //theFile + if (returnCode > 0) + return KErrNone; + else + return KErrGeneral; + } + + + + + +/** +* Function Name : CFloggerTest008_03 +* Input parameters : None +* Output parameters : None +* Description : This is the constructor +*/ + + +CFloggerTest008_03::CFloggerTest008_03() + { + // store the name of this test case + SetTestStepName(_L("step_008_03")); + + } + + + +/** +* Function Name :~ CFloggerTest008_03 +* Input parameters : None +* Output parameters : None +* Description : This is the Destructor +*/ + + +CFloggerTest008_03::~CFloggerTest008_03() + { + } + + + +/** +* Function Name : doTestStepL +* Input parameters : None +* Output parameters : TVerdict +* Description : This function returns weather the test case 004_01 has +* passed or failed + +*/ + + +TVerdict CFloggerTest008_03::doTestStepL( ) + { + if ( executeStepL() == KErrNone ) + SetTestStepResult(EPass); + + else + SetTestStepResult(EFail); + + User::After(KTimeForDisplay); + return TestStepResult(); + } + + +/** +* Function Name : executeStepL +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the test data in to the log file +* This function check the test message is present in the +* log file + +*/ + + +TInt CFloggerTest008_03::executeStepL() + { + TInt ret = KErrGeneral; + + ret = DoTestConnect(); + CleanupClosePushL(iFlogger); + if (ret == KErrNone) + ret = DoTestWrite(); + if (ret == KErrNone) + ret = DoTestCheckWriteL(); + + CleanupStack::PopAndDestroy(); //logger + + User::After(1000000); + return ret; + } + +/** +* Function Name : executeStepL +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the test data in to the log file +* This function check the test message is present in the +* log file + +*/ + + +TInt CFloggerTest008_03::executeStepL(TBool) + { + return KErrGeneral; + } + +/** +* Function Name : DoTestConnect +* Input parameters : None +* Output parameters : TInt +* Description : This function establishes a connection to file logger +* and sets the system and component name in file logger. + +*/ + + +TInt CFloggerTest008_03::DoTestConnect() + { + TInt ret; + TPtrC8 ptrSubSystem; + TPtrC8 ptrComponent; + ptrSubSystem.Set(_L8("SubSystem")); + ptrComponent.Set(_L8("Component")); + + ret = iFlogger.Connect(); //Call connect() of Flogger + + if (ret == KErrNone) + ret = iFlogger.SetLogTags(ptrSubSystem, ptrComponent); //SetLogTags() of Flogger called + + return ret; + } + + +/** +Function Name : DoTestWrite +* Input parameters : None +* Output parameters : TInt +* Description : This function writes the data to the file logger + +*/ + + +TInt CFloggerTest008_03::DoTestWrite() + { + //KTestLongMessage contains a very long test message + _LIT(KTestLongMessage,"TC 8_03: This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message "); + + iFlogger.Write(KTestLongMessage); //this causes a PANIC + ForceLogFlush(iFlogger); + return KErrNone; + } + + +/** +* Function Name : DoTestCheckWriteL +* Input parameters : None +* Output parameters : TInt +* Description : This function checks the weather test data was written +* in to the log file by DoTestWriteL() or not. + +*/ + + +TInt CFloggerTest008_03::DoTestCheckWriteL() + { + User::After(KTimeToLog); + RFile theFile; + HBufC8 * hBuffer; + TInt listfilesize,returnCode; + RFs fileSystem; //For file operation create a file system + TBuf8<256> testData; //To hold the test descriptor + _LIT(KLogFile,"c:\\logs\\log.txt"); // log file name and path + + //The following contains the string of length 200(max) + //which is written to the log file + //_LIT(KTestLongMessage, "This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message"); + _LIT(KTestLongMessage, "TC 8_03: This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long message This is the long"); + + //_LIT8(KOOMError, "#Logs may be lost out of memory!!"); + + User::LeaveIfError(fileSystem.Connect()); + + //Open the file in the read mode + User::LeaveIfError(theFile.Open(fileSystem,KLogFile,EFileRead)); + + CleanupClosePushL(theFile); + + User::LeaveIfError(theFile.Size(listfilesize)); //Size of the file + + hBuffer = HBufC8::New(listfilesize); //Allocate the buffer + CleanupStack::PushL(hBuffer); + + TPtr8 ptrString = hBuffer->Des(); ; //To hold the buffer + + // Read from position 0: start of file + User::LeaveIfError(returnCode = theFile.Read(ptrString)); + + testData.Copy(KTestLongMessage); //Copy the test descriptor + returnCode = ptrString.Find(testData); //find the test descriptor in the buffer read + //from the file + + + CleanupStack::PopAndDestroy(hBuffer); + CleanupStack::PopAndDestroy(); //theFile + if (returnCode > 0) + return KErrNone; + else + return KErrGeneral; + } + + + + + +/** +* Function Name : CFloggerTest008_04 +* Input parameters : None +* Output parameters : None +* Description : This is the constructor +*/ + + +CFloggerTest008_04::CFloggerTest008_04() + { + // store the name of this test case + SetTestStepName(_L("step_008_04")); + } + + + +/** +* Function Name :~ CFloggerTest008_04 +* Input parameters : None +* Output parameters : None +* Description : This is the Destructor +*/ + + +CFloggerTest008_04::~CFloggerTest008_04() + { + } + + + +/** + +*Function Name : doTestStepL +* Input parameters : None +* Output parameters : TVerdict +* Description : This function is responsible for doing the heap test analysis + +*/ + +TVerdict CFloggerTest008_04::doTestStepL( ) + { + INFO_PRINTF1(_L("Step 008.04 called ")); + + CFloggerTest008_01* step008_01 = new CFloggerTest008_01; + CleanupStack::PushL(step008_01); + doTestStepWithHeapFailureL( *step008_01, 1, 20, KErrNone, ETrue); + + CleanupStack::PopAndDestroy(step008_01); + + User::After(KTimeForDisplay); + return TestStepResult(); + } +