sl@0
|
1 |
// Copyright (c) 2008-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 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "t_wservgenericpluginstepload.h"
|
sl@0
|
23 |
#include <tefunit.h>
|
sl@0
|
24 |
#include <e32const.h> //KNullUidValue
|
sl@0
|
25 |
#include <gdi.h>
|
sl@0
|
26 |
#include <stdlib.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
const TPoint KWinPos(0,0);
|
sl@0
|
29 |
const TSize KWinSize(100,100);
|
sl@0
|
30 |
const TRect KWinRect(KWinPos,KWinSize);
|
sl@0
|
31 |
const TRect KEllipseRect(TPoint(10,10), TSize(50,50));
|
sl@0
|
32 |
|
sl@0
|
33 |
_LIT(KDefaultPluginBmp, "Z:\\wstest\\genericplugin\\defaultplugin.mbm");
|
sl@0
|
34 |
_LIT(KTestPluginBmp, "Z:\\wstest\\genericplugin\\testplugin.mbm");
|
sl@0
|
35 |
_LIT(KTWServGenericPluginStepTestId,"testid");
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
Constructor of CT_WServGenericpluginStepLoad
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
CT_WServGenericpluginStepLoad::CT_WServGenericpluginStepLoad()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
SetTestStepName(KT_WServGenericpluginStepLoad);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
Destructor of CT_WServGenericpluginStepLoad
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
CT_WServGenericpluginStepLoad::~CT_WServGenericpluginStepLoad()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
delete iGc;
|
sl@0
|
51 |
delete iScreen;
|
sl@0
|
52 |
delete iScreen1;
|
sl@0
|
53 |
delete iDefaultPluginBmp;
|
sl@0
|
54 |
delete iTestPluginBmp;
|
sl@0
|
55 |
iWinGroup.Close();
|
sl@0
|
56 |
iWinGroup1.Close();
|
sl@0
|
57 |
iWsSession.Flush();
|
sl@0
|
58 |
iWsSession.Close();
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Checks if message is logged in the log file.
|
sl@0
|
63 |
@param aMsg The message to be checked.
|
sl@0
|
64 |
@return ETrue if the message is found in the log file, otherwise EFalse.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
TInt CT_WServGenericpluginStepLoad::CheckLogL(TDesC8& aMsg)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
RFs fs;
|
sl@0
|
69 |
CleanupClosePushL(fs);
|
sl@0
|
70 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
71 |
|
sl@0
|
72 |
RFile logFile;
|
sl@0
|
73 |
CleanupClosePushL(logFile);
|
sl@0
|
74 |
|
sl@0
|
75 |
TInt ret = logFile.Open(fs, KLogFileName, EFileShareAny|EFileRead);
|
sl@0
|
76 |
if (ret == KErrNone)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TInt fileSize;
|
sl@0
|
79 |
User::LeaveIfError(logFile.Size(fileSize));
|
sl@0
|
80 |
|
sl@0
|
81 |
HBufC8* buf = HBufC8::NewLC(fileSize);
|
sl@0
|
82 |
TPtr8 ptr(buf->Des());
|
sl@0
|
83 |
ret = logFile.Read(ptr);
|
sl@0
|
84 |
if (ret == KErrNone)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
ret = ptr.Find(aMsg);
|
sl@0
|
87 |
if (ret != KErrNotFound)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
ret = EMsgFound;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
else
|
sl@0
|
92 |
{
|
sl@0
|
93 |
ret = EMsgNotFound;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
}
|
sl@0
|
96 |
CleanupStack::PopAndDestroy(buf);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
else if (ret == KErrNotFound)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
ret = EFileNotExist;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
CleanupStack::PopAndDestroy(&logFile);
|
sl@0
|
103 |
CleanupStack::PopAndDestroy(&fs);
|
sl@0
|
104 |
return ret;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
Overrides test step preamble.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPreambleL()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
TVerdict ret = CTestStep::doTestStepPreambleL();
|
sl@0
|
113 |
if ( !GetIntFromConfig( ConfigSection(), KTWServGenericPluginStepTestId, iTestId ))
|
sl@0
|
114 |
{
|
sl@0
|
115 |
User::Leave(KErrNotFound);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
else
|
sl@0
|
118 |
{
|
sl@0
|
119 |
iDisplayMode = EColor64K;
|
sl@0
|
120 |
User::LeaveIfError(iWsSession.Connect());
|
sl@0
|
121 |
|
sl@0
|
122 |
iScreen = new (ELeave) CWsScreenDevice(iWsSession);
|
sl@0
|
123 |
User::LeaveIfError(iScreen->Construct());
|
sl@0
|
124 |
iWinGroup = RWindowGroup(iWsSession);
|
sl@0
|
125 |
User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
|
sl@0
|
126 |
iWinGroup.AutoForeground(ETrue);
|
sl@0
|
127 |
iGc = new (ELeave) CWindowGc(iScreen);
|
sl@0
|
128 |
User::LeaveIfError(iGc->Construct());
|
sl@0
|
129 |
|
sl@0
|
130 |
iScreen1 = new (ELeave) CWsScreenDevice(iWsSession);
|
sl@0
|
131 |
User::LeaveIfError(iScreen1->Construct(1));
|
sl@0
|
132 |
iWinGroup1 = RWindowGroup(iWsSession);
|
sl@0
|
133 |
User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) );
|
sl@0
|
134 |
iWinGroup1.AutoForeground(ETrue);
|
sl@0
|
135 |
|
sl@0
|
136 |
iDefaultPluginBmp = new(ELeave) CFbsBitmap;
|
sl@0
|
137 |
User::LeaveIfError(iDefaultPluginBmp->Load(KDefaultPluginBmp));
|
sl@0
|
138 |
iTestPluginBmp = new(ELeave) CFbsBitmap;
|
sl@0
|
139 |
User::LeaveIfError(iTestPluginBmp->Load(KTestPluginBmp));
|
sl@0
|
140 |
iWsSession.Flush();
|
sl@0
|
141 |
}
|
sl@0
|
142 |
return ret;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
Overrides test step prostamble.
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPostambleL()
|
sl@0
|
149 |
{
|
sl@0
|
150 |
return TestStepResult();
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
/**
|
sl@0
|
154 |
Starts test step
|
sl@0
|
155 |
@return TVerdict pass / fail
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
enum TVerdict CT_WServGenericpluginStepLoad::doTestStepL()
|
sl@0
|
158 |
{
|
sl@0
|
159 |
__UHEAP_MARK;
|
sl@0
|
160 |
RWindow win;
|
sl@0
|
161 |
CleanupClosePushL(win);
|
sl@0
|
162 |
CreateRWindowL(iWinGroup, win, KWinPos, KRgbBlue, KWinSize);
|
sl@0
|
163 |
DrawShape(win);
|
sl@0
|
164 |
|
sl@0
|
165 |
RWindow win1;
|
sl@0
|
166 |
CleanupClosePushL(win1);
|
sl@0
|
167 |
CreateRWindowL(iWinGroup1, win1, KWinPos, KRgbBlue, KWinSize);
|
sl@0
|
168 |
DrawShape(win1);
|
sl@0
|
169 |
|
sl@0
|
170 |
switch( iTestId )
|
sl@0
|
171 |
{
|
sl@0
|
172 |
case 1:
|
sl@0
|
173 |
INFO_PRINTF1(_L("Testing Control of CWsPlugin loading from WSINI.INI..."));
|
sl@0
|
174 |
GraphicsWservGenericpluginLoad1L();
|
sl@0
|
175 |
break;
|
sl@0
|
176 |
case 2:
|
sl@0
|
177 |
INFO_PRINTF1(_L("Testing that plugins can be specified on a per-screen basis through WSINI.INI file..."));
|
sl@0
|
178 |
GraphicsWservGenericpluginLoad2L();
|
sl@0
|
179 |
break;
|
sl@0
|
180 |
case 3:
|
sl@0
|
181 |
INFO_PRINTF1(_L("Testing Integer and string attributes in WSINI.INI file can be read from CWsPlugin..."));
|
sl@0
|
182 |
GraphicsWservGenericpluginLoad3L();
|
sl@0
|
183 |
break;
|
sl@0
|
184 |
case 4:
|
sl@0
|
185 |
INFO_PRINTF1(_L("Testing CWsPlugin can gain information about closing windows using MWsWindow interface..."));
|
sl@0
|
186 |
GraphicsWservGenericpluginLoad4L();
|
sl@0
|
187 |
break;
|
sl@0
|
188 |
case 5:
|
sl@0
|
189 |
INFO_PRINTF1(_L("Testing CWsPlugin can obtain instance of another CWPlugin..."));
|
sl@0
|
190 |
GraphicsWservGenericpluginLoad5L();
|
sl@0
|
191 |
break;
|
sl@0
|
192 |
default:
|
sl@0
|
193 |
break;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
CleanupStack::PopAndDestroy(2,&win);
|
sl@0
|
196 |
|
sl@0
|
197 |
__UHEAP_MARKEND;
|
sl@0
|
198 |
return TestStepResult();
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
/**
|
sl@0
|
202 |
Creates a RWindow
|
sl@0
|
203 |
@param aWinGroup The window group object
|
sl@0
|
204 |
@param aWin The window object
|
sl@0
|
205 |
@param aPos The Position of the window
|
sl@0
|
206 |
@param aBkgdColor The background color of the window
|
sl@0
|
207 |
@param aSize The size of the window
|
sl@0
|
208 |
@param aHandle The handle of the window
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
void CT_WServGenericpluginStepLoad::CreateRWindowL(const RWindowGroup& aWinGroup,
|
sl@0
|
211 |
RWindow& aWin,
|
sl@0
|
212 |
const TPoint& aPos,
|
sl@0
|
213 |
const TRgb& aBkgdColor,
|
sl@0
|
214 |
const TSize& aWinSize,
|
sl@0
|
215 |
const TUint32 aHandle)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
aWin = RWindow( iWsSession );
|
sl@0
|
218 |
CleanupClosePushL( aWin );
|
sl@0
|
219 |
User::LeaveIfError( aWin.Construct( aWinGroup, aHandle ) );
|
sl@0
|
220 |
CleanupStack::Pop(&aWin);
|
sl@0
|
221 |
aWin.SetRequiredDisplayMode(iDisplayMode);
|
sl@0
|
222 |
aWin.SetExtent(aPos, aWinSize);
|
sl@0
|
223 |
aWin.SetBackgroundColor( aBkgdColor );
|
sl@0
|
224 |
aWin.Activate();
|
sl@0
|
225 |
aWin.SetVisible( ETrue );
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
/**
|
sl@0
|
229 |
Draw an ellipse to the window and fade the window.
|
sl@0
|
230 |
@param aWin The window object
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
void CT_WServGenericpluginStepLoad::DrawShape(RWindow& aWin)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
TUint8 white = 255;
|
sl@0
|
235 |
TUint8 black = 128;
|
sl@0
|
236 |
|
sl@0
|
237 |
iGc->Activate(aWin);
|
sl@0
|
238 |
iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
239 |
iGc->SetBrushColor(KRgbWhite);
|
sl@0
|
240 |
iGc->DrawEllipse(KEllipseRect);
|
sl@0
|
241 |
iWsSession.Flush();
|
sl@0
|
242 |
User::After(KDelay);
|
sl@0
|
243 |
|
sl@0
|
244 |
aWin.SetFaded(ETrue,RWindowTreeNode::EFadeWindowOnly,black,white);
|
sl@0
|
245 |
iWsSession.Flush();
|
sl@0
|
246 |
User::After(KDelay);
|
sl@0
|
247 |
|
sl@0
|
248 |
iGc->Deactivate();
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
/**
|
sl@0
|
252 |
Compare the window with the bitmap.
|
sl@0
|
253 |
@param aScreen The screen device object
|
sl@0
|
254 |
@param aBitmap The bitmap object for comparison
|
sl@0
|
255 |
@return ETrue if the window and the bitmap is identified. Otherwise return EFalse.
|
sl@0
|
256 |
*/
|
sl@0
|
257 |
TBool CT_WServGenericpluginStepLoad::CompareDisplayL(CWsScreenDevice* aScreen, CFbsBitmap* aBitmap)
|
sl@0
|
258 |
{
|
sl@0
|
259 |
// Capture window display to bitmap
|
sl@0
|
260 |
CFbsBitmap* screenBitmap = new(ELeave) CFbsBitmap();
|
sl@0
|
261 |
CleanupStack::PushL(screenBitmap);
|
sl@0
|
262 |
User::LeaveIfError(screenBitmap->Create(KWinRect.Size(), iDisplayMode));
|
sl@0
|
263 |
User::LeaveIfError(aScreen->CopyScreenToBitmap(screenBitmap, KWinRect));
|
sl@0
|
264 |
|
sl@0
|
265 |
//Compare the window bitmap with the bitmap pass in for comparison
|
sl@0
|
266 |
TBool ret = ETrue;
|
sl@0
|
267 |
|
sl@0
|
268 |
const TReal KErrorLimit = 0.05;
|
sl@0
|
269 |
|
sl@0
|
270 |
TInt mismatchedPixels = 0;
|
sl@0
|
271 |
TRgb testWinPix = TRgb(0,0,0,0);
|
sl@0
|
272 |
TRgb checkWinPix = TRgb(0,0,0,0);
|
sl@0
|
273 |
for (TInt x = 0; x < KWinRect.Width(); x++)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
for (TInt y = 0; y < KWinRect.Height(); y++)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
screenBitmap->GetPixel(testWinPix, TPoint(x,y));
|
sl@0
|
278 |
aBitmap->GetPixel(checkWinPix, TPoint(x,y));
|
sl@0
|
279 |
|
sl@0
|
280 |
//check if there are differeces between test Window colors and check Window colors
|
sl@0
|
281 |
if(((TReal)abs(testWinPix.Red() - checkWinPix.Red())/255) > KErrorLimit ||
|
sl@0
|
282 |
((TReal)abs(testWinPix.Blue() - checkWinPix.Blue())/255) > KErrorLimit ||
|
sl@0
|
283 |
((TReal)abs(testWinPix.Green() - checkWinPix.Green())/255) > KErrorLimit ||
|
sl@0
|
284 |
((TReal)abs(testWinPix.Alpha() - checkWinPix.Alpha())/255) > KErrorLimit)
|
sl@0
|
285 |
{
|
sl@0
|
286 |
mismatchedPixels++; // -- Useful for debugging
|
sl@0
|
287 |
ret = EFalse;
|
sl@0
|
288 |
break;
|
sl@0
|
289 |
}
|
sl@0
|
290 |
}
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|
sl@0
|
293 |
/* INFO_PRINTF2(_L("Number of different pixels: %i"), mismatchedPixels); */ // -- Useful for debugging
|
sl@0
|
294 |
|
sl@0
|
295 |
|
sl@0
|
296 |
CleanupStack::PopAndDestroy(screenBitmap);
|
sl@0
|
297 |
|
sl@0
|
298 |
|
sl@0
|
299 |
|
sl@0
|
300 |
return ret;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
|
sl@0
|
303 |
/**
|
sl@0
|
304 |
Calculate the portion of window displayed on the screen (absRect).
|
sl@0
|
305 |
@param aAbsRect The size of the window displayed on the screen
|
sl@0
|
306 |
@param aPos The origin of the window
|
sl@0
|
307 |
@param aWinSize The size of the window
|
sl@0
|
308 |
*/
|
sl@0
|
309 |
void CT_WServGenericpluginStepLoad::CalcAbsRect(TSize& aAbsRect, const TPoint& aPos, const TSize& aWinSize)
|
sl@0
|
310 |
{
|
sl@0
|
311 |
if((aPos.iX + aWinSize.iWidth) > iScreen->SizeInPixels().iWidth)
|
sl@0
|
312 |
{
|
sl@0
|
313 |
aAbsRect.iWidth = iScreen->SizeInPixels().iWidth - aPos.iX;
|
sl@0
|
314 |
}
|
sl@0
|
315 |
else if(aPos.iX < 0)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
aAbsRect.iWidth = aPos.iX + aWinSize.iWidth;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
else
|
sl@0
|
320 |
{
|
sl@0
|
321 |
aAbsRect.iWidth = aWinSize.iWidth;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
if((aPos.iY + aWinSize.iHeight) > iScreen->SizeInPixels().iHeight)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
aAbsRect.iHeight = iScreen->SizeInPixels().iHeight - aPos.iY;
|
sl@0
|
326 |
}
|
sl@0
|
327 |
else if(aPos.iY < 0)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
aAbsRect.iHeight = aPos.iY + aWinSize.iHeight;
|
sl@0
|
330 |
}
|
sl@0
|
331 |
else
|
sl@0
|
332 |
{
|
sl@0
|
333 |
aAbsRect.iHeight = aWinSize.iHeight;
|
sl@0
|
334 |
}
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
/**
|
sl@0
|
338 |
@SYMTestCaseID graphics-wserv-1841-0001
|
sl@0
|
339 |
@SYMPREQ 1841
|
sl@0
|
340 |
@SYMTestCaseDesc Control of CWsPlugin loading from WSINI.INI
|
sl@0
|
341 |
@SYMTestActions tests alternative fader specified by an ID and alternative
|
sl@0
|
342 |
render stage specified by TYPE in wsini.ini file are loaded
|
sl@0
|
343 |
@SYMTestStatus Implemented
|
sl@0
|
344 |
@SYMTestPriority 2
|
sl@0
|
345 |
@SYMTestExpectedResults Alternative plugins are loaded as specified.
|
sl@0
|
346 |
Window created in screen 0 is faded with custom fader and
|
sl@0
|
347 |
two lines are drawn on the left top window by custom render stage.
|
sl@0
|
348 |
@SYMTestType CT
|
sl@0
|
349 |
*/
|
sl@0
|
350 |
void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad1L()
|
sl@0
|
351 |
{
|
sl@0
|
352 |
//Compare the window with the bitmap which uses test plugin. They are identical.
|
sl@0
|
353 |
TEST(CompareDisplayL(iScreen, iTestPluginBmp));
|
sl@0
|
354 |
//Check the log file. Test fader and test render stage are created.
|
sl@0
|
355 |
TBuf8<255> msg(_L8("TestMWsIniFile is created."));
|
sl@0
|
356 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
357 |
msg = _L8("TestRenderStageFactory is created.");
|
sl@0
|
358 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
359 |
msg = _L8("TestRenderStage is created.");
|
sl@0
|
360 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
/**
|
sl@0
|
364 |
@SYMTestCaseID graphics-wserv-1841-0002
|
sl@0
|
365 |
@SYMPREQ 1841
|
sl@0
|
366 |
@SYMTestCaseDesc Test that plugins can be specified on a per-screen basis through WSINI.INI file
|
sl@0
|
367 |
@SYMTestActions Create modified WSINI.INI file which specifies different fader and render stage
|
sl@0
|
368 |
plugins to be used on screens 0 and 1.
|
sl@0
|
369 |
@SYMTestStatus Implemented
|
sl@0
|
370 |
@SYMTestPriority 2
|
sl@0
|
371 |
@SYMTestExpectedResults Both sets of plugins are loaded, and the correct plugin is used on each screen.
|
sl@0
|
372 |
Windows created in different screen are faded with different color.
|
sl@0
|
373 |
Windows in screen 0 have two lines drawn on left top window by custom render stage
|
sl@0
|
374 |
while windows in screen 1 use standard render stage.
|
sl@0
|
375 |
@SYMTestType CT
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad2L()
|
sl@0
|
378 |
{
|
sl@0
|
379 |
//Test drawing in screen 0. testfader and testRenderStage are used.
|
sl@0
|
380 |
//Compare the window with the bitmap which uses default plugin.
|
sl@0
|
381 |
TEST(!CompareDisplayL(iScreen, iDefaultPluginBmp));
|
sl@0
|
382 |
//Compare the window with the bitmap which uses test plugins.
|
sl@0
|
383 |
TEST(CompareDisplayL(iScreen, iTestPluginBmp));
|
sl@0
|
384 |
|
sl@0
|
385 |
//Test drawing in screen 1. testfader_data and testrenderstage_invalid are used.
|
sl@0
|
386 |
//TestRenderStage_Invalid is not created because NULL is returned from CreateStageL.
|
sl@0
|
387 |
|
sl@0
|
388 |
//Check the log file.
|
sl@0
|
389 |
TBuf8<255> msg(_L8("TestMWsIniFile is created."));
|
sl@0
|
390 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
391 |
msg = _L8("TestRenderStageFactory is created.");
|
sl@0
|
392 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
393 |
msg = _L8("TestRenderStage is created.");
|
sl@0
|
394 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
395 |
msg = _L8("TestRenderStage_invalid is created.");
|
sl@0
|
396 |
TEST(CheckLogL(msg) == EMsgNotFound);
|
sl@0
|
397 |
}
|
sl@0
|
398 |
|
sl@0
|
399 |
/**
|
sl@0
|
400 |
@SYMTestCaseID graphics-wserv-1841-0004
|
sl@0
|
401 |
@SYMPREQ 1841
|
sl@0
|
402 |
@SYMTestCaseDesc Integer and string attributes in WSINI.INI file can be read from CWsPlugin.
|
sl@0
|
403 |
@SYMTestActions Create modified WSINI.INI file which specifies a test fader to be loaded to screen 0.
|
sl@0
|
404 |
Specifies integer and string variables for default, custom, and screen sections
|
sl@0
|
405 |
@SYMTestStatus Implemented
|
sl@0
|
406 |
@SYMTestPriority 2
|
sl@0
|
407 |
@SYMTestExpectedResults Alternative plug-in is loaded as specified and attributes can be accessed from plug-in.
|
sl@0
|
408 |
@SYMTestType CT
|
sl@0
|
409 |
*/
|
sl@0
|
410 |
void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad3L()
|
sl@0
|
411 |
{
|
sl@0
|
412 |
//Check the log file.
|
sl@0
|
413 |
TBuf8<255> msg;
|
sl@0
|
414 |
msg = _L8("Screen Section has correct integer data");
|
sl@0
|
415 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
416 |
msg = _L8("Screen Section has correct string data");
|
sl@0
|
417 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
418 |
msg = _L8("Custom Section has correct integer data");
|
sl@0
|
419 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
420 |
msg = _L8("Custom Section has correct string data");
|
sl@0
|
421 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
422 |
msg = _L8("Default Section has correct integer data");
|
sl@0
|
423 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
424 |
msg = _L8("Default Section has correct string data");
|
sl@0
|
425 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
426 |
msg = _L8("Default Section does not have missing attribute");
|
sl@0
|
427 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
428 |
msg = _L8("Screen Section does not have missing attribute");
|
sl@0
|
429 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
430 |
msg = _L8("Custom Section does not have missing attribute");
|
sl@0
|
431 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
432 |
msg = _L8("Default Section - Integer data retrieved with method for string attribute");
|
sl@0
|
433 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
434 |
msg = _L8("Default Section - Could not access string attribute with method for integer attribute");
|
sl@0
|
435 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
436 |
msg = _L8("Screen Section - Integer data retrieved with method for string attribute");
|
sl@0
|
437 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
438 |
msg = _L8("Screen Section - Could not access string attribute with method for integer attribute");
|
sl@0
|
439 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
440 |
msg = _L8("Custom Section - Integer data retrieved with method for string attribute");
|
sl@0
|
441 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
442 |
msg = _L8("Custom Section - Could not access string attribute with method for integer attribute");
|
sl@0
|
443 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
444 |
msg = _L8("Could not access variables because screen does not exist");
|
sl@0
|
445 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
446 |
msg = _L8("Could not access variables because section does not exist");
|
sl@0
|
447 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
448 |
}
|
sl@0
|
449 |
|
sl@0
|
450 |
/**
|
sl@0
|
451 |
@SYMTestCaseID graphics-wserv-1841-0005
|
sl@0
|
452 |
@SYMPREQ 1841
|
sl@0
|
453 |
@SYMTestCaseDesc CWsPlugin can gain information about closing windows using MWsWindow interface.
|
sl@0
|
454 |
@SYMTestActions Create modified WSINI.INI file which specifies a test renderer to be loaded.
|
sl@0
|
455 |
Register CWsPLugin as eventhandler receiving EWindowClosing events.
|
sl@0
|
456 |
@SYMTestStatus Implemented
|
sl@0
|
457 |
@SYMTestPriority 2
|
sl@0
|
458 |
@SYMTestExpectedResults Plugin can access information about closing windows through MWsWindow interface.
|
sl@0
|
459 |
Windows with different size and position are created and closed in screen 0.
|
sl@0
|
460 |
@SYMTestType CT
|
sl@0
|
461 |
*/
|
sl@0
|
462 |
void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad4L()
|
sl@0
|
463 |
{
|
sl@0
|
464 |
const TUint32 KWin1WsHandle = 0xFFFFFFFC;
|
sl@0
|
465 |
const TUint32 KWin2WsHandle = 0xFFFFFFFD;
|
sl@0
|
466 |
const TUint32 KWin3WsHandle = 0xFFFFFFFE;
|
sl@0
|
467 |
TPoint w1Point(50,240);
|
sl@0
|
468 |
TPoint w2Point(580,100);
|
sl@0
|
469 |
TPoint w3Point(25,100);
|
sl@0
|
470 |
TSize w1Size(10,10);
|
sl@0
|
471 |
TSize w2Size(150,70);
|
sl@0
|
472 |
TSize w3Size(50,140);
|
sl@0
|
473 |
|
sl@0
|
474 |
//Draw windows with different origins and sizes
|
sl@0
|
475 |
RWindow win;
|
sl@0
|
476 |
CleanupClosePushL(win);
|
sl@0
|
477 |
CreateRWindowL(iWinGroup, win, w1Point, KRgbBlue, w1Size, KWin1WsHandle);
|
sl@0
|
478 |
DrawShape(win);
|
sl@0
|
479 |
CleanupStack::PopAndDestroy(&win);
|
sl@0
|
480 |
|
sl@0
|
481 |
CleanupClosePushL(win);
|
sl@0
|
482 |
CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle);
|
sl@0
|
483 |
DrawShape(win);
|
sl@0
|
484 |
CleanupStack::PopAndDestroy(&win);
|
sl@0
|
485 |
|
sl@0
|
486 |
CleanupClosePushL(win);
|
sl@0
|
487 |
CreateRWindowL(iWinGroup, win, w3Point, KRgbBlue, w3Size, KWin3WsHandle);
|
sl@0
|
488 |
DrawShape(win);
|
sl@0
|
489 |
CleanupStack::PopAndDestroy(&win);
|
sl@0
|
490 |
|
sl@0
|
491 |
CleanupClosePushL(win); //create dummy 4th window to ensure window3 closing event has time to log info
|
sl@0
|
492 |
CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle);
|
sl@0
|
493 |
DrawShape(win);
|
sl@0
|
494 |
CleanupStack::PopAndDestroy(&win);
|
sl@0
|
495 |
|
sl@0
|
496 |
//Calculate AbsRect values
|
sl@0
|
497 |
TSize absRect1;
|
sl@0
|
498 |
TSize absRect2;
|
sl@0
|
499 |
TSize absRect3;
|
sl@0
|
500 |
CalcAbsRect(absRect1, w1Point, w1Size);
|
sl@0
|
501 |
CalcAbsRect(absRect2, w2Point, w2Size);
|
sl@0
|
502 |
CalcAbsRect(absRect3, w3Point, w3Size);
|
sl@0
|
503 |
|
sl@0
|
504 |
TBuf8<255> msg;
|
sl@0
|
505 |
//check log for window1 info
|
sl@0
|
506 |
msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin1WsHandle, w1Point.iX, w1Point.iY);
|
sl@0
|
507 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
508 |
msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin1WsHandle, absRect1.iHeight, absRect1.iWidth);
|
sl@0
|
509 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
510 |
msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin1WsHandle, w1Size.iHeight, w1Size.iWidth);
|
sl@0
|
511 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
512 |
//check log for window2 info
|
sl@0
|
513 |
msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin2WsHandle, w2Point.iX, w2Point.iY);
|
sl@0
|
514 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
515 |
msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin2WsHandle, absRect2.iHeight, absRect2.iWidth);
|
sl@0
|
516 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
517 |
msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin2WsHandle, w2Size.iHeight, w2Size.iWidth);
|
sl@0
|
518 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
519 |
//check log for window3 info
|
sl@0
|
520 |
msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin3WsHandle, w3Point.iX, w3Point.iY);
|
sl@0
|
521 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
522 |
msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin3WsHandle, absRect3.iHeight, absRect3.iWidth);
|
sl@0
|
523 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
524 |
msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin3WsHandle, w3Size.iHeight, w3Size.iWidth);
|
sl@0
|
525 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
526 |
}
|
sl@0
|
527 |
|
sl@0
|
528 |
/**
|
sl@0
|
529 |
@SYMTestCaseID graphics-wserv-1841-0006
|
sl@0
|
530 |
@SYMPREQ 1841
|
sl@0
|
531 |
@SYMTestCaseDesc CWsPlugin can obtain instance of another CWPlugin.
|
sl@0
|
532 |
@SYMTestActions Create modified WSINI.INI file which specifies a test renderer, test fader, and service plug-in to be loaded.
|
sl@0
|
533 |
Service plugin offers elementary service to other plug-ins.
|
sl@0
|
534 |
@SYMTestStatus Implemented
|
sl@0
|
535 |
@SYMTestPriority 2
|
sl@0
|
536 |
@SYMTestExpectedResults Test fader can access information set in service plugin by test renderer.
|
sl@0
|
537 |
@SYMTestType CT
|
sl@0
|
538 |
*/
|
sl@0
|
539 |
void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad5L()
|
sl@0
|
540 |
{
|
sl@0
|
541 |
//Check the log file.
|
sl@0
|
542 |
TBuf8<255> msg;
|
sl@0
|
543 |
msg = _L8("Fading parameters have been set.");
|
sl@0
|
544 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
545 |
msg = _L8("Returned fade color.");
|
sl@0
|
546 |
TEST(CheckLogL(msg) == EMsgFound);
|
sl@0
|
547 |
}
|
sl@0
|
548 |
|