os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-file/uloggerfileplugintest.cpp
Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "uloggerfileplugintest.h"
17 #include "uloggerdatatypes.h"
18 using namespace Ulogger;
21 * TestNewL: Test that the NewL method correctly constructs a CFileWriter object
23 * Expected Verdict: PASS/FAIL/PANIC
27 * Description: Invoke CFileWriter::NewL() and check that a non-NULL pointer is
31 void CFile0Step::TestNewL()
33 CFileWriter* fileWriter = CFileWriter::NewL();
34 INFO_PRINTF1(_L("Checking that pointer returned by CFileWriter::NewL() is not NULL"));
35 ASSERT_NOT_NULL(fileWriter);
39 * TestUnlockResourcesL: Test that the CloseOutputPlugin method ???
41 * Expected Verdict: PASS/FAIL/PANIC
45 * Description: Retrieve and print some data from an external ini data file
48 void CFile0Step::TestUnlockResourcesL()
50 CFileWriter* fileWriter = CFileWriter::NewL();
51 INFO_PRINTF1(_L("Invoking CFileWriter::CloseOutputPlugin(). CloseOutputPlugin() is supposed to do nothing."));
52 fileWriter->CloseOutputPlugin();
58 * TestSettingsL: Test that the Settings method ???
60 * Expected Verdict: PASS/FAIL/PANIC
64 * Description: Retrieve and print some data from an external ini data file
67 void CFile0Step::TestSettingsL()
69 CFileWriter* fileWriter = CFileWriter::NewL();
70 INFO_PRINTF1(_L("Passing empty RPointerArray to CFileWriter::ConfigureOutputPlugin()"));
71 RPointerArray<TPluginConfiguration> emptyPointerArray;
72 fileWriter->ConfigureOutputPlugin(emptyPointerArray);
78 * TestWriteL: Test that the Write method ???
80 * Expected Verdict: PASS/FAIL/PANIC
84 * Description: Invoke CFileWriter::Write() and check that test string is
85 * written to KLogDefaultFileName correctly.
88 // The implementation for this is not working correctly! Check this
89 void CFile0Step::TestWriteL()
91 INFO_PRINTF1(_L("Checking that CFileWriter::Write(const TDesC8&) writes a String correctly to C:\\logs\\log.txt"));
93 // Create new CFileWriter instance
94 CFileWriter* fileWriter = CFileWriter::NewL();
96 INFO_PRINTF1(_L("Writing 'Test' to the log using CFileWriter::Write()"));
97 ASSERT_EQUALS(KErrNone, fileWriter->Write(KTxt));
103 CFile0Step::~CFile0Step()
107 CFile0Step::CFile0Step()
112 // **MUST** call SetTestStepName in the constructor as the controlling
113 // framework uses the test step name immediately following construction to set
114 // up the step's unique logging ID.
115 SetTestStepName(KFile0Step);
118 TVerdict CFile0Step::doTestStepPreambleL()
120 CTe_fileSuiteStepBase::doTestStepPreambleL();
122 INFO_PRINTF1(_L("Connecting to file server"));
123 User::LeaveIfError(iFileServer.Connect());
124 SetTestStepResult(EPass);
125 return TestStepResult();
128 TVerdict CFile0Step::doTestStepL()
130 * @return - TVerdict code
131 * Override of base class pure virtual
132 * Our implementation only gets called if the base class doTestStepPreambleL() did
133 * not leave. That being the case, the current test result value will be EPass.
136 if (TestStepResult()==EPass)
139 TestUnlockResourcesL();
144 SetTestStepResult(EPass);
147 SetTestStepResult(EFail);
149 INFO_PRINTF1(_L("********"));
150 buf.AppendFormat(_L("%d errors were found!"), iErrors);
152 INFO_PRINTF1(_L("********"));
155 return TestStepResult();
158 TVerdict CFile0Step::doTestStepPostambleL()
160 * @return - TVerdict code
161 * Override of base class virtual
164 CTe_fileSuiteStepBase::doTestStepPostambleL();
166 SetTestStepResult(EPass);
167 return TestStepResult();