os/graphics/windowing/windowserver/test/TAutoServer/TAutoServer.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/TAutoServer/TAutoServer.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,345 @@
     1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Internal Symbian test code
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 + @internalComponent
    1.24 +*/
    1.25 +
    1.26 +#include "TAutoServer.h"
    1.27 +
    1.28 +// Convereted tests
    1.29 +#include "TEVENT.H"
    1.30 +#include "TSPRITE.H"
    1.31 +#include "TBLANK.H"
    1.32 +#include "TMDISPLAY.H"
    1.33 +#include "TPROCPRI.H"
    1.34 +#include "TWINDOW.H"
    1.35 +#include "TRECTLIST.H"
    1.36 +#include "TDERIVED.H"
    1.37 +#include "TSCRDEV.H"
    1.38 +#include "TSCRDEVRESSWITCH.H"
    1.39 +#include "TMESSAGE.H"
    1.40 +#include "TOOMDRAW.H"
    1.41 +#include "TREDRSTR.H"
    1.42 +#include "TPNTKEY.H"
    1.43 +#include "TScreenModeScaling.h"
    1.44 +#include "TSCREENMODEPOSITIONING.H"
    1.45 +#include "TKRepeat.H"
    1.46 +#include "TBITMAP.H"
    1.47 +#include "TBACKUPW.H"
    1.48 +#include "TFADE.H"
    1.49 +#include "TGETPIXEL.H"
    1.50 +#include "TORDINAL.H"
    1.51 +#include "TGWHANDLE.H"
    1.52 +#include "TTransptAnim.h"
    1.53 +#include "TKEY.H"
    1.54 +#include "TMODCHG.H"
    1.55 +#include "TTEXTCURS.H"
    1.56 +#include "TSCROLL.H"
    1.57 +#include "TAlphaChannel.H"
    1.58 +#include "TPANIC.H"
    1.59 +#include "TGDI.H"
    1.60 +#include "TRegion.H"
    1.61 +#include "TREDRAW.H"
    1.62 +#include "TMulTran.H"
    1.63 +#include "TALPHAWIN.H"
    1.64 +#include "TMULTCON.H"
    1.65 +#include "TPNTCAP.H"
    1.66 +#include "TSCRMODE.H"
    1.67 +#include "TAUTODLL.H"
    1.68 +#include "TWSGRAPHS.H"
    1.69 +#include "TCAPABILITY.H"
    1.70 +#include "TPointer.H"
    1.71 +#include "tdirecta.h"
    1.72 +#include "tdirecta2.h"
    1.73 +#include "TOOM.H"
    1.74 +#include "TCapKey.H"
    1.75 +#include "TMULSCREENS.h"
    1.76 +#include "TBUFFERSECURITY.H"
    1.77 +#include "TFLICKERFREE.H"
    1.78 +#include "tdevicerotation.h"
    1.79 +#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
    1.80 +#include "TFADINGBITMAP.H"
    1.81 +#endif
    1.82 +#include "tcrpanim.h"
    1.83 +#include "TMemLeakMode.h"
    1.84 +#include "tgc.h"
    1.85 +#include "THeartBeat.h"
    1.86 +#include "TGRAPHICSDRAWER.H"
    1.87 +#include "tw32cmdbuf.h"
    1.88 +#include "tadvancedpointerevent.h"
    1.89 +#include "tmultiptrevent.h"
    1.90 +#include "tdrawresource.h"
    1.91 +#include "twindowsizecache.h"
    1.92 +
    1.93 +
    1.94 +/* Path to the script
    1.95 +z:\GraphicsTest\gditest.script
    1.96 +*/
    1.97 +
    1.98 +#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
    1.99 +_LIT(KServerName,"tautoserver_nonnga");
   1.100 +#endif
   1.101 +
   1.102 +#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
   1.103 +_LIT(KServerName,"tautoserver_nga");
   1.104 +#endif
   1.105 +
   1.106 +//CTClient *client;
   1.107 +
   1.108 +CTAutoServer* CTAutoServer::NewL()
   1.109 +/**
   1.110 +   @return - Instance of the test server
   1.111 +   Same code for Secure and non-secure variants
   1.112 +   Called inside the MainL() function to create and start the
   1.113 +   CTestServer derived server.
   1.114 + */
   1.115 +	{
   1.116 +
   1.117 +	CTAutoServer * server = new (ELeave) CTAutoServer();
   1.118 +	CleanupStack::PushL(server);
   1.119 +	// CServer base class call
   1.120 +	server->StartL(KServerName);
   1.121 +	CleanupStack::Pop(server);
   1.122 +	return server;
   1.123 +	}
   1.124 +
   1.125 +
   1.126 +LOCAL_C void MainL()
   1.127 +//
   1.128 +// Secure variant
   1.129 +// Much simpler, uses the new Rendezvous() call to sync with the client
   1.130 +//
   1.131 +	{
   1.132 +
   1.133 +#if (defined __DATA_CAGING__)
   1.134 + 	RProcess().DataCaging(RProcess::EDataCagingOn);
   1.135 +	RProcess().SecureApi(RProcess::ESecureApiOn);
   1.136 +#endif
   1.137 +
   1.138 +	CActiveScheduler* sched=NULL;
   1.139 +	sched=new(ELeave) CActiveScheduler;
   1.140 +	CActiveScheduler::Install(sched);
   1.141 +	CTAutoServer* server = NULL;
   1.142 +	// Create the CTestServer derived server
   1.143 +	TRAPD(err,server = CTAutoServer::NewL());
   1.144 +	if(!err)
   1.145 +		{
   1.146 +//		client = CreateClientL();
   1.147 +//		client->SetScreenNumber(1);
   1.148 +//		client->ConstructL();
   1.149 +
   1.150 +		// Sync with the client and enter the active scheduler
   1.151 +		RProcess::Rendezvous(KErrNone);
   1.152 +		sched->Start();
   1.153 +
   1.154 +		}
   1.155 +	delete server;
   1.156 +	delete sched;
   1.157 +//
   1.158 +	}
   1.159 +
   1.160 +GLDEF_C TInt E32Main()
   1.161 +
   1.162 +/** @return - Standard Epoc error code on process exit
   1.163 +    Secure variant only
   1.164 +    Process entry point. Called by client using RProcess API
   1.165 +*/
   1.166 +	{
   1.167 +
   1.168 +
   1.169 +	__UHEAP_MARK;
   1.170 +
   1.171 +	CTrapCleanup* cleanup = CTrapCleanup::New();
   1.172 +	if(cleanup == NULL)
   1.173 +		{
   1.174 +		return KErrNoMemory;
   1.175 +		}
   1.176 +
   1.177 +	TWinCommand commandLine;
   1.178 +	User::CommandLine(commandLine);
   1.179 +	TInt ret=KErrNone;
   1.180 +	if (commandLine.Length()>0)
   1.181 +		{
   1.182 +		ret=CProcess::Start(commandLine);
   1.183 +		// pass test result to parent process (in multi display test)
   1.184 +		RProcess().Terminate(ret);
   1.185 +		return(ret);
   1.186 +		}
   1.187 +
   1.188 +
   1.189 +	TRAPD(err,MainL());
   1.190 +	// This if statement is here just to shut up RVCT, which would otherwise warn
   1.191 +	// that err was set but never used
   1.192 +	if (err)
   1.193 +	    {
   1.194 +	    err = KErrNone;
   1.195 +	    }
   1.196 +	delete cleanup;
   1.197 +
   1.198 +	__UHEAP_MARKEND;
   1.199 +
   1.200 +//	if (client != NULL)
   1.201 +//	delete client;
   1.202 +	return KErrNone;
   1.203 +    }
   1.204 +
   1.205 +CTestStep* CTAutoServer::CreateTestStep(const TDesC& aStepName)
   1.206 +/**
   1.207 +   @return - A CTestStep derived instance
   1.208 +   Secure and non-secure variants
   1.209 +   Implementation of CTestServer pure virtual
   1.210 + */
   1.211 +	{
   1.212 +	// Debug statements to indicate the progress of the wserv test suite
   1.213 +	RDebug::Print(_L("**********************************************"));
   1.214 +	RDebug::Print(_L("* WServ Test Step: %S"), &aStepName);
   1.215 +	RDebug::Print(_L("**********************************************"));
   1.216 +	
   1.217 +	++CTestDriver::iTestNum;
   1.218 +	CTestStep* testStep = NULL;
   1.219 +	if(aStepName == KTEventTestStep)
   1.220 +		testStep = new CTEventTestStep();
   1.221 +	else if(aStepName == KTTSpriteStep)
   1.222 +		testStep = new CTTSpriteStep();
   1.223 +	else if(aStepName == KTBlankStep)
   1.224 +		testStep = new CTBlankStep();
   1.225 +	else if(aStepName == KTRectListStep)
   1.226 +		testStep = new CTRectListStep();
   1.227 +	else if(aStepName == KTMultiDisplayStep)
   1.228 +		testStep = new CTMultiDisplayStep();
   1.229 +	else if(aStepName == KTWindowTestStep)
   1.230 +		testStep = new CTWindowTestStep();
   1.231 +	else if(aStepName == KTDerivedStep)
   1.232 +		testStep = new CTDerivedStep();
   1.233 +	else if(aStepName == KTScreenDeviceStep)
   1.234 +		testStep = new CTScreenDeviceStep();
   1.235 +	else if(aStepName == KTScreenDeviceResSwitchStep)
   1.236 +	    testStep = new CTScreenDeviceResSwitchStep();
   1.237 +	else if(aStepName == KTMessageStep)
   1.238 +		testStep = new CTMessageStep();
   1.239 +	else if(aStepName == KToomDrawStep)
   1.240 +		testStep = new CToomDrawStep();
   1.241 +	else if(aStepName == KTRedrawStoringStep)
   1.242 +		testStep = new CTRedrawStoringStep();
   1.243 +	else if(aStepName == KTPntKeyStep)
   1.244 +		testStep = new CTPntKeyStep();
   1.245 +	else if(aStepName == KTKRepeatStep)
   1.246 +		testStep = new CTKRepeatStep();
   1.247 +	else if(aStepName == KTBitmapStep)
   1.248 +		testStep = new CTBitmapStep();
   1.249 +	else if(aStepName == KTScreenModeScalingStep)
   1.250 +		testStep = new CTScreenModeScalingStep();
   1.251 +	else if(aStepName == KTScreenModePositioningStep)
   1.252 +		testStep = new CTScreenModePositioningStep();
   1.253 +	else if(aStepName == KTBackedUpWindowStep)
   1.254 +		testStep = new CTBackedUpWindowStep();
   1.255 +	else if(aStepName == KTFadeStep)
   1.256 +		testStep = new CTFadeStep();
   1.257 +	else if(aStepName == KTGetPixelStep)
   1.258 +		testStep = new CTGetPixelStep();
   1.259 +	else if(aStepName == KTOrdinalStep)
   1.260 +		testStep = new CTOrdinalStep();
   1.261 +	else if(aStepName == KTGwHandleStep)
   1.262 +		testStep = new CTGwHandleStep();
   1.263 +	else if (aStepName == KTTransparentAnimStep)
   1.264 +		testStep = new CTTransparentAnimStep();	
   1.265 +	else if(aStepName == KTProcPriStep)
   1.266 +		testStep = new CTProcPriStep();
   1.267 +	else if(aStepName == KTKeyStep)
   1.268 +		testStep = new CTKeyStep();
   1.269 + 	else if(aStepName == KTModifiersChangedStep)
   1.270 +  		testStep = new CTModifiersChangedStep();
   1.271 + 	else if(aStepName == KTCursorTestStep)
   1.272 +  		testStep = new CTCursorTestStep();
   1.273 + 	else if(aStepName == KTScrollStep)
   1.274 +  		testStep = new CTScrollStep();
   1.275 +  	else if(aStepName == KTAlphaChannelStep)
   1.276 +  		testStep = new CTAlphaChannelStep();
   1.277 + 	else if(aStepName == KTPanicStep)
   1.278 +  		testStep = new CTPanicStep();
   1.279 + 	else if(aStepName == KTGdiStep)
   1.280 +  		testStep = new CTGdiStep();
   1.281 + 	else if(aStepName == KTRegionStep)
   1.282 +  		testStep = new CTRegionStep();
   1.283 + 	else if(aStepName == KTRedrawTestStep)
   1.284 +  		testStep = new CTRedrawTestStep();
   1.285 + 	else if(aStepName == KTMultipleTransStep)
   1.286 +  		testStep = new CTMultipleTransStep();
   1.287 + 	else if(aStepName == KTAlphaWinStep)
   1.288 +  		testStep = new CTAlphaWinStep();
   1.289 + 	else if(aStepName == KTMultiConStep)
   1.290 +  		testStep = new CTMultiConStep();
   1.291 + 	else if(aStepName == KTPointerCaptureStep)
   1.292 +  		testStep = new CTPointerCaptureStep();
   1.293 + 	else if(aStepName == KTScrModeStep)
   1.294 +  		testStep = new CTScrModeStep();
   1.295 + 	else if(aStepName == KTAnimDllStep)
   1.296 +  		testStep = new CTAnimDllStep();
   1.297 + 	else if(aStepName == KTWsGraphsStep)
   1.298 +  		testStep = new CTWsGraphsStep();
   1.299 + 	else if(aStepName == KTCapabilityStep)
   1.300 +  		testStep = new CTCapabilityStep();
   1.301 + 	else if(aStepName == KTPointerStep)
   1.302 +  		testStep = new CTPointerStep();
   1.303 + 	else if(aStepName == KTDirectStep)
   1.304 +  		testStep = new CTDirectStep();
   1.305 + 	else if(aStepName == KTDirect2Step)
   1.306 +  		testStep = new CTDirect2Step();
   1.307 + 	else if(aStepName == KTOomStep)
   1.308 +  		testStep = new CTOomStep();
   1.309 + 	else if(aStepName == KTCaptureKeyStep)
   1.310 +  		testStep = new CTCaptureKeyStep();
   1.311 +  	else if(aStepName == KTMulScreensStep)
   1.312 +  		testStep = new CTMulScreensStep();
   1.313 + 	else if(aStepName == KTBufferSecurityStep)
   1.314 +  		testStep = new CTBufferSecurityStep();
   1.315 +   	else if(aStepName == KTFlickerFreeStep)
   1.316 +  		testStep = new CTFlickerFreeStep();
   1.317 +    else if(aStepName == KTDeviceRotationStep)
   1.318 +     testStep = new CTDeviceRotationStep();
   1.319 +#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
   1.320 +	else if(aStepName == KTFadingBitmapStep)
   1.321 +  		testStep = new CTFadingBitmapStep();
   1.322 +#endif
   1.323 +	else if(aStepName == KTCrpAnimStep)
   1.324 +		testStep = new CTCrpAnimStep();
   1.325 +	else if(aStepName == KTMemLeakCheckEnableStep)
   1.326 +		testStep = new CTMemLeakCheckEnableStep();
   1.327 +	else if(aStepName == KTMemLeakCheckOneShotStep)
   1.328 +		testStep = new CTMemLeakCheckOneShotStep();
   1.329 +	else if(aStepName == KTGcStep)
   1.330 +		testStep = new CTGcStep(); 
   1.331 + 	else if(aStepName == KTHeartBeatTestStep)
   1.332 +  		testStep = new CTHeartBeatTestStep();
   1.333 + 	else if(aStepName == KTGraphicsDrawerStep)
   1.334 + 		testStep = new CTGraphicsDrawerStep();
   1.335 + 	else if(aStepName == KTW32CmdBufStep) 
   1.336 + 		testStep = new CTW32CmdBufStep();
   1.337 +#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
   1.338 + 	else if(aStepName == KTAdvancedPointerEventStep)
   1.339 + 		testStep = new CTAdvancedPointerEventStep();
   1.340 + 	else if(aStepName == KTMultiPtrEventTestStep) 
   1.341 + 	 	testStep = new CTMultiPtrEventTestStep();
   1.342 +	else if(aStepName == KTDrawResourceStep)
   1.343 +		testStep = new CTDrawResourceStep();
   1.344 +    else if(aStepName == KTWindowSizeCacheTestStep)
   1.345 +        testStep = new CTWindowSizeCacheTestStep();
   1.346 +#endif
   1.347 +	return testStep;
   1.348 +	}