os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-serial/uloggerserialplugintest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "uloggerserialplugintest.h"
    17 #include "uloggerdatatypes.h"
    18 using namespace Ulogger;
    19 
    20 
    21 /*
    22  * TestNewL: Test that the NewL method correctly constructs a CSerialWriter object
    23  *
    24  * Expected Verdict: PASS/FAIL/PANIC
    25  *
    26  * Prerequisites:
    27  *
    28  * Description: Invoke CSerialWriter::NewL() and check that a non-NULL pointer is
    29  *              returned.
    30  *
    31  */
    32 void CSerial0Step::TestNewL()
    33 	{
    34 	Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL();
    35 	INFO_PRINTF1(_L("Checking that pointer returned by CSerialWriter::NewL() is not NULL"));
    36 	ASSERT_NOT_NULL(serialWriter);
    37 	delete serialWriter;
    38 	}
    39 
    40 /*
    41  * TestNewL: Test that the CloseOutputPlugin method ???
    42  *
    43  * Expected Verdict: PASS/FAIL/PANIC
    44  *
    45  * Prerequisites:
    46  *
    47  * Description: Retrieve and print some data from an external ini data file
    48  *
    49  */
    50 void CSerial0Step::TestUnlockResourcesL()
    51 	{
    52 	Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL();
    53 	INFO_PRINTF1(_L("Invoking CSerialWriter::CloseOutputPlugin(). CloseOutputPlugin() is supposed to do nothing."));
    54 	serialWriter->CloseOutputPlugin();
    55 	ASSERT_TRUE(ETrue);
    56 	delete serialWriter;
    57 	}
    58 
    59 /*
    60  * TestNewL: Test that the Settings method ???
    61  *
    62  * Expected Verdict: PASS/FAIL/PANIC
    63  *
    64  * Prerequisites:
    65  *
    66  * Description: Retrieve and print some data from an external ini data file
    67  *
    68  */
    69 void CSerial0Step::TestSettingsL()
    70 	{
    71 	Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL();
    72 	INFO_PRINTF1(_L("Passing empty RPointerArray to CSerialWriter::ConfigureOutputPlugin()"));
    73 	RPointerArray<TPluginConfiguration> emptyPointerArray;
    74 	serialWriter->ConfigureOutputPlugin(emptyPointerArray);
    75 
    76 	//
    77 	// Need More thorough testing of CSerialWriter::ConfigureOutputPlugin()
    78 	//
    79 
    80 	delete serialWriter;
    81 	}
    82 
    83 /*
    84  * TestNewL: Test that the Write method ???
    85  *
    86  * Expected Verdict: PASS/FAIL/PANIC
    87  *
    88  * Prerequisites:
    89  *
    90  * Description: Invoke CSerialWriter::Write() and check that test string is
    91  *              written to KLogDefaultSerialName correctly.
    92  *
    93  */
    94 // The implementation for this is not working correctly! Check this
    95 void CSerial0Step::TestWriteL()
    96 	{
    97 	INFO_PRINTF1(_L("Checking that CSerialWriter::Write(const TDesC8&) writes a string correctly to the serial port"));
    98 
    99 	// Create new CSerialWriter instance and write a test string to it
   100 	Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL();
   101 	_LIT8(KTxt, "Test");
   102 	INFO_PRINTF1(_L("Writing 'Test' to the log using CSerialWriter::Write()"));
   103 	ASSERT_EQUALS(KErrNone, serialWriter->Write(KTxt));
   104 	
   105 	//
   106 	// More thorough testing of CSerialWriter::Write()
   107 	//
   108 
   109 	// Destroy CSerialWriter instance
   110 	delete serialWriter;
   111 	}
   112 
   113 
   114 
   115 CSerial0Step::~CSerial0Step()
   116 	{
   117 	}
   118 
   119 CSerial0Step::CSerial0Step()
   120 /**
   121  * Constructor
   122  */
   123 	{
   124 	// **MUST** call SetTestStepName in the constructor as the controlling
   125 	// framework uses the test step name immediately following construction to set
   126 	// up the step's unique logging ID.
   127 	SetTestStepName(KSerial0Step);
   128 	}
   129 
   130 TVerdict CSerial0Step::doTestStepPreambleL()
   131 	{
   132 	CTe_serialSuiteStepBase::doTestStepPreambleL();
   133 	
   134 	INFO_PRINTF1(_L("Connecting to file server"));
   135 	User::LeaveIfError(iFileServer.Connect());
   136 	SetTestStepResult(EPass);
   137 	return TestStepResult();
   138 	}
   139 
   140 TVerdict CSerial0Step::doTestStepL()
   141 /**
   142  * @return - TVerdict code
   143  * Override of base class pure virtual
   144  * Our implementation only gets called if the base class doTestStepPreambleL() did
   145  * not leave. That being the case, the current test result value will be EPass.
   146  */
   147 	{	
   148 	  if (TestStepResult()==EPass)
   149 		{
   150 		TestNewL();
   151 		TestUnlockResourcesL();
   152 		TestSettingsL();
   153 		TestWriteL();
   154 		
   155 		if(iErrors == 0)
   156 			SetTestStepResult(EPass);
   157 		else
   158 			{
   159 			SetTestStepResult(EFail);
   160 			TBuf<64> buf;
   161 			INFO_PRINTF1(_L("********"));
   162 			buf.AppendFormat(_L("%d errors were found!"), iErrors);
   163 			INFO_PRINTF1(buf); 
   164 			INFO_PRINTF1(_L("********"));
   165 			}
   166 		}
   167 	  return TestStepResult();
   168 	}
   169 
   170 TVerdict CSerial0Step::doTestStepPostambleL()
   171 /**
   172  * @return - TVerdict code
   173  * Override of base class virtual
   174  */
   175 	{
   176 	CTe_serialSuiteStepBase::doTestStepPostambleL();
   177 	iFileServer.Close();
   178 	SetTestStepResult(EPass);
   179 	return TestStepResult();
   180 	}
   181 
   182