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