os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-outfrwkchans/te-serial/uloggerserialplugintest.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "uloggerserialplugintest.h"
17 #include "uloggerdatatypes.h"
18 using namespace Ulogger;
22 * TestNewL: Test that the NewL method correctly constructs a CSerialWriter object
24 * Expected Verdict: PASS/FAIL/PANIC
28 * Description: Invoke CSerialWriter::NewL() and check that a non-NULL pointer is
32 void CSerial0Step::TestNewL()
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);
41 * TestNewL: Test that the CloseOutputPlugin method ???
43 * Expected Verdict: PASS/FAIL/PANIC
47 * Description: Retrieve and print some data from an external ini data file
50 void CSerial0Step::TestUnlockResourcesL()
52 Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL();
53 INFO_PRINTF1(_L("Invoking CSerialWriter::CloseOutputPlugin(). CloseOutputPlugin() is supposed to do nothing."));
54 serialWriter->CloseOutputPlugin();
60 * TestNewL: Test that the Settings method ???
62 * Expected Verdict: PASS/FAIL/PANIC
66 * Description: Retrieve and print some data from an external ini data file
69 void CSerial0Step::TestSettingsL()
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);
77 // Need More thorough testing of CSerialWriter::ConfigureOutputPlugin()
84 * TestNewL: Test that the Write method ???
86 * Expected Verdict: PASS/FAIL/PANIC
90 * Description: Invoke CSerialWriter::Write() and check that test string is
91 * written to KLogDefaultSerialName correctly.
94 // The implementation for this is not working correctly! Check this
95 void CSerial0Step::TestWriteL()
97 INFO_PRINTF1(_L("Checking that CSerialWriter::Write(const TDesC8&) writes a string correctly to the serial port"));
99 // Create new CSerialWriter instance and write a test string to it
100 Ulogger::CSerialWriter* serialWriter = Ulogger::CSerialWriter::NewL();
102 INFO_PRINTF1(_L("Writing 'Test' to the log using CSerialWriter::Write()"));
103 ASSERT_EQUALS(KErrNone, serialWriter->Write(KTxt));
106 // More thorough testing of CSerialWriter::Write()
109 // Destroy CSerialWriter instance
115 CSerial0Step::~CSerial0Step()
119 CSerial0Step::CSerial0Step()
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);
130 TVerdict CSerial0Step::doTestStepPreambleL()
132 CTe_serialSuiteStepBase::doTestStepPreambleL();
134 INFO_PRINTF1(_L("Connecting to file server"));
135 User::LeaveIfError(iFileServer.Connect());
136 SetTestStepResult(EPass);
137 return TestStepResult();
140 TVerdict CSerial0Step::doTestStepL()
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.
148 if (TestStepResult()==EPass)
151 TestUnlockResourcesL();
156 SetTestStepResult(EPass);
159 SetTestStepResult(EFail);
161 INFO_PRINTF1(_L("********"));
162 buf.AppendFormat(_L("%d errors were found!"), iErrors);
164 INFO_PRINTF1(_L("********"));
167 return TestStepResult();
170 TVerdict CSerial0Step::doTestStepPostambleL()
172 * @return - TVerdict code
173 * Override of base class virtual
176 CTe_serialSuiteStepBase::doTestStepPostambleL();
178 SetTestStepResult(EPass);
179 return TestStepResult();