os/graphics/windowing/windowserver/test/TAutoServer/TAutoServer.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Internal Symbian test code
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21 */
    22 
    23 #include "TAutoServer.h"
    24 
    25 // Convereted tests
    26 #include "TEVENT.H"
    27 #include "TSPRITE.H"
    28 #include "TBLANK.H"
    29 #include "TMDISPLAY.H"
    30 #include "TPROCPRI.H"
    31 #include "TWINDOW.H"
    32 #include "TRECTLIST.H"
    33 #include "TDERIVED.H"
    34 #include "TSCRDEV.H"
    35 #include "TSCRDEVRESSWITCH.H"
    36 #include "TMESSAGE.H"
    37 #include "TOOMDRAW.H"
    38 #include "TREDRSTR.H"
    39 #include "TPNTKEY.H"
    40 #include "TScreenModeScaling.h"
    41 #include "TSCREENMODEPOSITIONING.H"
    42 #include "TKRepeat.H"
    43 #include "TBITMAP.H"
    44 #include "TBACKUPW.H"
    45 #include "TFADE.H"
    46 #include "TGETPIXEL.H"
    47 #include "TORDINAL.H"
    48 #include "TGWHANDLE.H"
    49 #include "TTransptAnim.h"
    50 #include "TKEY.H"
    51 #include "TMODCHG.H"
    52 #include "TTEXTCURS.H"
    53 #include "TSCROLL.H"
    54 #include "TAlphaChannel.H"
    55 #include "TPANIC.H"
    56 #include "TGDI.H"
    57 #include "TRegion.H"
    58 #include "TREDRAW.H"
    59 #include "TMulTran.H"
    60 #include "TALPHAWIN.H"
    61 #include "TMULTCON.H"
    62 #include "TPNTCAP.H"
    63 #include "TSCRMODE.H"
    64 #include "TAUTODLL.H"
    65 #include "TWSGRAPHS.H"
    66 #include "TCAPABILITY.H"
    67 #include "TPointer.H"
    68 #include "tdirecta.h"
    69 #include "tdirecta2.h"
    70 #include "TOOM.H"
    71 #include "TCapKey.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"
    78 #endif
    79 #include "tcrpanim.h"
    80 #include "TMemLeakMode.h"
    81 #include "tgc.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"
    89 
    90 
    91 /* Path to the script
    92 z:\GraphicsTest\gditest.script
    93 */
    94 
    95 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
    96 _LIT(KServerName,"tautoserver_nonnga");
    97 #endif
    98 
    99 #ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
   100 _LIT(KServerName,"tautoserver_nga");
   101 #endif
   102 
   103 //CTClient *client;
   104 
   105 CTAutoServer* CTAutoServer::NewL()
   106 /**
   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.
   111  */
   112 	{
   113 
   114 	CTAutoServer * server = new (ELeave) CTAutoServer();
   115 	CleanupStack::PushL(server);
   116 	// CServer base class call
   117 	server->StartL(KServerName);
   118 	CleanupStack::Pop(server);
   119 	return server;
   120 	}
   121 
   122 
   123 LOCAL_C void MainL()
   124 //
   125 // Secure variant
   126 // Much simpler, uses the new Rendezvous() call to sync with the client
   127 //
   128 	{
   129 
   130 #if (defined __DATA_CAGING__)
   131  	RProcess().DataCaging(RProcess::EDataCagingOn);
   132 	RProcess().SecureApi(RProcess::ESecureApiOn);
   133 #endif
   134 
   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());
   141 	if(!err)
   142 		{
   143 //		client = CreateClientL();
   144 //		client->SetScreenNumber(1);
   145 //		client->ConstructL();
   146 
   147 		// Sync with the client and enter the active scheduler
   148 		RProcess::Rendezvous(KErrNone);
   149 		sched->Start();
   150 
   151 		}
   152 	delete server;
   153 	delete sched;
   154 //
   155 	}
   156 
   157 GLDEF_C TInt E32Main()
   158 
   159 /** @return - Standard Epoc error code on process exit
   160     Secure variant only
   161     Process entry point. Called by client using RProcess API
   162 */
   163 	{
   164 
   165 
   166 	__UHEAP_MARK;
   167 
   168 	CTrapCleanup* cleanup = CTrapCleanup::New();
   169 	if(cleanup == NULL)
   170 		{
   171 		return KErrNoMemory;
   172 		}
   173 
   174 	TWinCommand commandLine;
   175 	User::CommandLine(commandLine);
   176 	TInt ret=KErrNone;
   177 	if (commandLine.Length()>0)
   178 		{
   179 		ret=CProcess::Start(commandLine);
   180 		// pass test result to parent process (in multi display test)
   181 		RProcess().Terminate(ret);
   182 		return(ret);
   183 		}
   184 
   185 
   186 	TRAPD(err,MainL());
   187 	// This if statement is here just to shut up RVCT, which would otherwise warn
   188 	// that err was set but never used
   189 	if (err)
   190 	    {
   191 	    err = KErrNone;
   192 	    }
   193 	delete cleanup;
   194 
   195 	__UHEAP_MARKEND;
   196 
   197 //	if (client != NULL)
   198 //	delete client;
   199 	return KErrNone;
   200     }
   201 
   202 CTestStep* CTAutoServer::CreateTestStep(const TDesC& aStepName)
   203 /**
   204    @return - A CTestStep derived instance
   205    Secure and non-secure variants
   206    Implementation of CTestServer pure virtual
   207  */
   208 	{
   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("**********************************************"));
   213 	
   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();
   319 #endif
   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();
   343 #endif
   344 	return testStep;
   345 	}