os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-file/uloggerfileplugintest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 "uloggerfileplugintest.h"
sl@0
    17
#include "uloggerdatatypes.h"
sl@0
    18
using namespace Ulogger;
sl@0
    19
sl@0
    20
/*
sl@0
    21
 * TestNewL: Test that the NewL method correctly constructs a CFileWriter object
sl@0
    22
 *
sl@0
    23
 * Expected Verdict: PASS/FAIL/PANIC
sl@0
    24
 *
sl@0
    25
 * Prerequisites:
sl@0
    26
 *
sl@0
    27
 * Description: Invoke CFileWriter::NewL() and check that a non-NULL pointer is
sl@0
    28
 *              returned.
sl@0
    29
 *
sl@0
    30
 */
sl@0
    31
void CFile0Step::TestNewL()
sl@0
    32
	{
sl@0
    33
	CFileWriter* fileWriter = CFileWriter::NewL();
sl@0
    34
	INFO_PRINTF1(_L("Checking that pointer returned by CFileWriter::NewL() is not NULL"));
sl@0
    35
	ASSERT_NOT_NULL(fileWriter);
sl@0
    36
	delete fileWriter;
sl@0
    37
	}
sl@0
    38
/*
sl@0
    39
 * TestUnlockResourcesL: Test that the CloseOutputPlugin method ???
sl@0
    40
 *
sl@0
    41
 * Expected Verdict: PASS/FAIL/PANIC
sl@0
    42
 *
sl@0
    43
 * Prerequisites:
sl@0
    44
 *
sl@0
    45
 * Description: Retrieve and print some data from an external ini data file
sl@0
    46
 *
sl@0
    47
 */
sl@0
    48
void CFile0Step::TestUnlockResourcesL()
sl@0
    49
	{
sl@0
    50
	CFileWriter* fileWriter = CFileWriter::NewL();
sl@0
    51
	INFO_PRINTF1(_L("Invoking CFileWriter::CloseOutputPlugin(). CloseOutputPlugin() is supposed to do nothing."));
sl@0
    52
	fileWriter->CloseOutputPlugin();
sl@0
    53
	ASSERT_TRUE(ETrue);
sl@0
    54
	delete fileWriter;
sl@0
    55
	}
sl@0
    56
sl@0
    57
/*
sl@0
    58
 * TestSettingsL: Test that the Settings method ???
sl@0
    59
 *
sl@0
    60
 * Expected Verdict: PASS/FAIL/PANIC
sl@0
    61
 *
sl@0
    62
 * Prerequisites:
sl@0
    63
 *
sl@0
    64
 * Description: Retrieve and print some data from an external ini data file
sl@0
    65
 *
sl@0
    66
 */
sl@0
    67
void CFile0Step::TestSettingsL()
sl@0
    68
	{
sl@0
    69
	CFileWriter* fileWriter = CFileWriter::NewL();
sl@0
    70
	INFO_PRINTF1(_L("Passing empty RPointerArray to CFileWriter::ConfigureOutputPlugin()"));
sl@0
    71
	RPointerArray<TPluginConfiguration> emptyPointerArray;
sl@0
    72
	fileWriter->ConfigureOutputPlugin(emptyPointerArray);
sl@0
    73
sl@0
    74
	delete fileWriter;
sl@0
    75
	}
sl@0
    76
sl@0
    77
/*
sl@0
    78
 * TestWriteL: Test that the Write method ???
sl@0
    79
 *
sl@0
    80
 * Expected Verdict: PASS/FAIL/PANIC
sl@0
    81
 *
sl@0
    82
 * Prerequisites:
sl@0
    83
 *
sl@0
    84
 * Description: Invoke CFileWriter::Write() and check that test string is
sl@0
    85
 *              written to KLogDefaultFileName correctly.
sl@0
    86
 *
sl@0
    87
 */
sl@0
    88
// The implementation for this is not working correctly! Check this
sl@0
    89
void CFile0Step::TestWriteL()
sl@0
    90
	{
sl@0
    91
	INFO_PRINTF1(_L("Checking that CFileWriter::Write(const TDesC8&) writes a String correctly to C:\\logs\\log.txt"));
sl@0
    92
sl@0
    93
	// Create new CFileWriter instance
sl@0
    94
	CFileWriter* fileWriter = CFileWriter::NewL();
sl@0
    95
	_LIT8(KTxt, "Test");
sl@0
    96
	INFO_PRINTF1(_L("Writing 'Test' to the log using CFileWriter::Write()"));
sl@0
    97
	ASSERT_EQUALS(KErrNone, fileWriter->Write(KTxt));
sl@0
    98
sl@0
    99
	delete fileWriter;
sl@0
   100
	}
sl@0
   101
sl@0
   102
sl@0
   103
CFile0Step::~CFile0Step()
sl@0
   104
	{
sl@0
   105
	}
sl@0
   106
sl@0
   107
CFile0Step::CFile0Step()
sl@0
   108
/**
sl@0
   109
 * Constructor
sl@0
   110
 */
sl@0
   111
	{
sl@0
   112
	// **MUST** call SetTestStepName in the constructor as the controlling
sl@0
   113
	// framework uses the test step name immediately following construction to set
sl@0
   114
	// up the step's unique logging ID.
sl@0
   115
	SetTestStepName(KFile0Step);
sl@0
   116
	}
sl@0
   117
sl@0
   118
TVerdict CFile0Step::doTestStepPreambleL()
sl@0
   119
	{
sl@0
   120
	CTe_fileSuiteStepBase::doTestStepPreambleL();
sl@0
   121
	
sl@0
   122
	INFO_PRINTF1(_L("Connecting to file server"));
sl@0
   123
	User::LeaveIfError(iFileServer.Connect());
sl@0
   124
	SetTestStepResult(EPass);
sl@0
   125
	return TestStepResult();
sl@0
   126
	}
sl@0
   127
sl@0
   128
TVerdict CFile0Step::doTestStepL()
sl@0
   129
/**
sl@0
   130
 * @return - TVerdict code
sl@0
   131
 * Override of base class pure virtual
sl@0
   132
 * Our implementation only gets called if the base class doTestStepPreambleL() did
sl@0
   133
 * not leave. That being the case, the current test result value will be EPass.
sl@0
   134
 */
sl@0
   135
	{	
sl@0
   136
	  if (TestStepResult()==EPass)
sl@0
   137
		{
sl@0
   138
		TestNewL();
sl@0
   139
		TestUnlockResourcesL();
sl@0
   140
		TestSettingsL();
sl@0
   141
		TestWriteL();
sl@0
   142
		
sl@0
   143
		if(iErrors == 0)
sl@0
   144
			SetTestStepResult(EPass);
sl@0
   145
		else
sl@0
   146
			{
sl@0
   147
			SetTestStepResult(EFail);
sl@0
   148
			TBuf<64> buf;
sl@0
   149
			INFO_PRINTF1(_L("********"));
sl@0
   150
			buf.AppendFormat(_L("%d errors were found!"), iErrors);
sl@0
   151
			INFO_PRINTF1(buf); 
sl@0
   152
			INFO_PRINTF1(_L("********"));
sl@0
   153
			}
sl@0
   154
		}
sl@0
   155
	  return TestStepResult();
sl@0
   156
	}
sl@0
   157
sl@0
   158
TVerdict CFile0Step::doTestStepPostambleL()
sl@0
   159
/**
sl@0
   160
 * @return - TVerdict code
sl@0
   161
 * Override of base class virtual
sl@0
   162
 */
sl@0
   163
	{
sl@0
   164
	CTe_fileSuiteStepBase::doTestStepPostambleL();
sl@0
   165
	iFileServer.Close();
sl@0
   166
	SetTestStepResult(EPass);
sl@0
   167
	return TestStepResult();
sl@0
   168
	}