Update contrib.
1 // Copyright (c) 2005-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.
14 // Internal Symbian test code
23 #include "TAutoServer.h"
29 #include "TMDISPLAY.H"
32 #include "TRECTLIST.H"
35 #include "TSCRDEVRESSWITCH.H"
40 #include "TScreenModeScaling.h"
41 #include "TSCREENMODEPOSITIONING.H"
46 #include "TGETPIXEL.H"
48 #include "TGWHANDLE.H"
49 #include "TTransptAnim.h"
52 #include "TTEXTCURS.H"
54 #include "TAlphaChannel.H"
60 #include "TALPHAWIN.H"
65 #include "TWSGRAPHS.H"
66 #include "TCAPABILITY.H"
69 #include "tdirecta2.h"
72 #include "TMULSCREENS.h"
73 #include "TBUFFERSECURITY.H"
74 #include "TFLICKERFREE.H"
75 #include "tdevicerotation.h"
76 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
77 #include "TFADINGBITMAP.H"
80 #include "TMemLeakMode.h"
82 #include "THeartBeat.h"
83 #include "TGRAPHICSDRAWER.H"
84 #include "tw32cmdbuf.h"
85 #include "tadvancedpointerevent.h"
86 #include "tmultiptrevent.h"
87 #include "tdrawresource.h"
88 #include "twindowsizecache.h"
92 z:\GraphicsTest\gditest.script
95 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
96 _LIT(KServerName,"tautoserver_nonnga");
99 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
100 _LIT(KServerName,"tautoserver_nga");
105 CTAutoServer* CTAutoServer::NewL()
107 @return - Instance of the test server
108 Same code for Secure and non-secure variants
109 Called inside the MainL() function to create and start the
110 CTestServer derived server.
114 CTAutoServer * server = new (ELeave) CTAutoServer();
115 CleanupStack::PushL(server);
116 // CServer base class call
117 server->StartL(KServerName);
118 CleanupStack::Pop(server);
126 // Much simpler, uses the new Rendezvous() call to sync with the client
130 #if (defined __DATA_CAGING__)
131 RProcess().DataCaging(RProcess::EDataCagingOn);
132 RProcess().SecureApi(RProcess::ESecureApiOn);
135 CActiveScheduler* sched=NULL;
136 sched=new(ELeave) CActiveScheduler;
137 CActiveScheduler::Install(sched);
138 CTAutoServer* server = NULL;
139 // Create the CTestServer derived server
140 TRAPD(err,server = CTAutoServer::NewL());
143 // client = CreateClientL();
144 // client->SetScreenNumber(1);
145 // client->ConstructL();
147 // Sync with the client and enter the active scheduler
148 RProcess::Rendezvous(KErrNone);
157 GLDEF_C TInt E32Main()
159 /** @return - Standard Epoc error code on process exit
161 Process entry point. Called by client using RProcess API
168 CTrapCleanup* cleanup = CTrapCleanup::New();
174 TWinCommand commandLine;
175 User::CommandLine(commandLine);
177 if (commandLine.Length()>0)
179 ret=CProcess::Start(commandLine);
180 // pass test result to parent process (in multi display test)
181 RProcess().Terminate(ret);
187 // This if statement is here just to shut up RVCT, which would otherwise warn
188 // that err was set but never used
197 // if (client != NULL)
202 CTestStep* CTAutoServer::CreateTestStep(const TDesC& aStepName)
204 @return - A CTestStep derived instance
205 Secure and non-secure variants
206 Implementation of CTestServer pure virtual
209 // Debug statements to indicate the progress of the wserv test suite
210 RDebug::Print(_L("**********************************************"));
211 RDebug::Print(_L("* WServ Test Step: %S"), &aStepName);
212 RDebug::Print(_L("**********************************************"));
214 ++CTestDriver::iTestNum;
215 CTestStep* testStep = NULL;
216 if(aStepName == KTEventTestStep)
217 testStep = new CTEventTestStep();
218 else if(aStepName == KTTSpriteStep)
219 testStep = new CTTSpriteStep();
220 else if(aStepName == KTBlankStep)
221 testStep = new CTBlankStep();
222 else if(aStepName == KTRectListStep)
223 testStep = new CTRectListStep();
224 else if(aStepName == KTMultiDisplayStep)
225 testStep = new CTMultiDisplayStep();
226 else if(aStepName == KTWindowTestStep)
227 testStep = new CTWindowTestStep();
228 else if(aStepName == KTDerivedStep)
229 testStep = new CTDerivedStep();
230 else if(aStepName == KTScreenDeviceStep)
231 testStep = new CTScreenDeviceStep();
232 else if(aStepName == KTScreenDeviceResSwitchStep)
233 testStep = new CTScreenDeviceResSwitchStep();
234 else if(aStepName == KTMessageStep)
235 testStep = new CTMessageStep();
236 else if(aStepName == KToomDrawStep)
237 testStep = new CToomDrawStep();
238 else if(aStepName == KTRedrawStoringStep)
239 testStep = new CTRedrawStoringStep();
240 else if(aStepName == KTPntKeyStep)
241 testStep = new CTPntKeyStep();
242 else if(aStepName == KTKRepeatStep)
243 testStep = new CTKRepeatStep();
244 else if(aStepName == KTBitmapStep)
245 testStep = new CTBitmapStep();
246 else if(aStepName == KTScreenModeScalingStep)
247 testStep = new CTScreenModeScalingStep();
248 else if(aStepName == KTScreenModePositioningStep)
249 testStep = new CTScreenModePositioningStep();
250 else if(aStepName == KTBackedUpWindowStep)
251 testStep = new CTBackedUpWindowStep();
252 else if(aStepName == KTFadeStep)
253 testStep = new CTFadeStep();
254 else if(aStepName == KTGetPixelStep)
255 testStep = new CTGetPixelStep();
256 else if(aStepName == KTOrdinalStep)
257 testStep = new CTOrdinalStep();
258 else if(aStepName == KTGwHandleStep)
259 testStep = new CTGwHandleStep();
260 else if (aStepName == KTTransparentAnimStep)
261 testStep = new CTTransparentAnimStep();
262 else if(aStepName == KTProcPriStep)
263 testStep = new CTProcPriStep();
264 else if(aStepName == KTKeyStep)
265 testStep = new CTKeyStep();
266 else if(aStepName == KTModifiersChangedStep)
267 testStep = new CTModifiersChangedStep();
268 else if(aStepName == KTCursorTestStep)
269 testStep = new CTCursorTestStep();
270 else if(aStepName == KTScrollStep)
271 testStep = new CTScrollStep();
272 else if(aStepName == KTAlphaChannelStep)
273 testStep = new CTAlphaChannelStep();
274 else if(aStepName == KTPanicStep)
275 testStep = new CTPanicStep();
276 else if(aStepName == KTGdiStep)
277 testStep = new CTGdiStep();
278 else if(aStepName == KTRegionStep)
279 testStep = new CTRegionStep();
280 else if(aStepName == KTRedrawTestStep)
281 testStep = new CTRedrawTestStep();
282 else if(aStepName == KTMultipleTransStep)
283 testStep = new CTMultipleTransStep();
284 else if(aStepName == KTAlphaWinStep)
285 testStep = new CTAlphaWinStep();
286 else if(aStepName == KTMultiConStep)
287 testStep = new CTMultiConStep();
288 else if(aStepName == KTPointerCaptureStep)
289 testStep = new CTPointerCaptureStep();
290 else if(aStepName == KTScrModeStep)
291 testStep = new CTScrModeStep();
292 else if(aStepName == KTAnimDllStep)
293 testStep = new CTAnimDllStep();
294 else if(aStepName == KTWsGraphsStep)
295 testStep = new CTWsGraphsStep();
296 else if(aStepName == KTCapabilityStep)
297 testStep = new CTCapabilityStep();
298 else if(aStepName == KTPointerStep)
299 testStep = new CTPointerStep();
300 else if(aStepName == KTDirectStep)
301 testStep = new CTDirectStep();
302 else if(aStepName == KTDirect2Step)
303 testStep = new CTDirect2Step();
304 else if(aStepName == KTOomStep)
305 testStep = new CTOomStep();
306 else if(aStepName == KTCaptureKeyStep)
307 testStep = new CTCaptureKeyStep();
308 else if(aStepName == KTMulScreensStep)
309 testStep = new CTMulScreensStep();
310 else if(aStepName == KTBufferSecurityStep)
311 testStep = new CTBufferSecurityStep();
312 else if(aStepName == KTFlickerFreeStep)
313 testStep = new CTFlickerFreeStep();
314 else if(aStepName == KTDeviceRotationStep)
315 testStep = new CTDeviceRotationStep();
316 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
317 else if(aStepName == KTFadingBitmapStep)
318 testStep = new CTFadingBitmapStep();
320 else if(aStepName == KTCrpAnimStep)
321 testStep = new CTCrpAnimStep();
322 else if(aStepName == KTMemLeakCheckEnableStep)
323 testStep = new CTMemLeakCheckEnableStep();
324 else if(aStepName == KTMemLeakCheckOneShotStep)
325 testStep = new CTMemLeakCheckOneShotStep();
326 else if(aStepName == KTGcStep)
327 testStep = new CTGcStep();
328 else if(aStepName == KTHeartBeatTestStep)
329 testStep = new CTHeartBeatTestStep();
330 else if(aStepName == KTGraphicsDrawerStep)
331 testStep = new CTGraphicsDrawerStep();
332 else if(aStepName == KTW32CmdBufStep)
333 testStep = new CTW32CmdBufStep();
334 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
335 else if(aStepName == KTAdvancedPointerEventStep)
336 testStep = new CTAdvancedPointerEventStep();
337 else if(aStepName == KTMultiPtrEventTestStep)
338 testStep = new CTMultiPtrEventTestStep();
339 else if(aStepName == KTDrawResourceStep)
340 testStep = new CTDrawResourceStep();
341 else if(aStepName == KTWindowSizeCacheTestStep)
342 testStep = new CTWindowSizeCacheTestStep();