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.
sl@0
     1
// Copyright (c) 2005-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
// Internal Symbian test code
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalComponent
sl@0
    21
*/
sl@0
    22
sl@0
    23
#include "TAutoServer.h"
sl@0
    24
sl@0
    25
// Convereted tests
sl@0
    26
#include "TEVENT.H"
sl@0
    27
#include "TSPRITE.H"
sl@0
    28
#include "TBLANK.H"
sl@0
    29
#include "TMDISPLAY.H"
sl@0
    30
#include "TPROCPRI.H"
sl@0
    31
#include "TWINDOW.H"
sl@0
    32
#include "TRECTLIST.H"
sl@0
    33
#include "TDERIVED.H"
sl@0
    34
#include "TSCRDEV.H"
sl@0
    35
#include "TSCRDEVRESSWITCH.H"
sl@0
    36
#include "TMESSAGE.H"
sl@0
    37
#include "TOOMDRAW.H"
sl@0
    38
#include "TREDRSTR.H"
sl@0
    39
#include "TPNTKEY.H"
sl@0
    40
#include "TScreenModeScaling.h"
sl@0
    41
#include "TSCREENMODEPOSITIONING.H"
sl@0
    42
#include "TKRepeat.H"
sl@0
    43
#include "TBITMAP.H"
sl@0
    44
#include "TBACKUPW.H"
sl@0
    45
#include "TFADE.H"
sl@0
    46
#include "TGETPIXEL.H"
sl@0
    47
#include "TORDINAL.H"
sl@0
    48
#include "TGWHANDLE.H"
sl@0
    49
#include "TTransptAnim.h"
sl@0
    50
#include "TKEY.H"
sl@0
    51
#include "TMODCHG.H"
sl@0
    52
#include "TTEXTCURS.H"
sl@0
    53
#include "TSCROLL.H"
sl@0
    54
#include "TAlphaChannel.H"
sl@0
    55
#include "TPANIC.H"
sl@0
    56
#include "TGDI.H"
sl@0
    57
#include "TRegion.H"
sl@0
    58
#include "TREDRAW.H"
sl@0
    59
#include "TMulTran.H"
sl@0
    60
#include "TALPHAWIN.H"
sl@0
    61
#include "TMULTCON.H"
sl@0
    62
#include "TPNTCAP.H"
sl@0
    63
#include "TSCRMODE.H"
sl@0
    64
#include "TAUTODLL.H"
sl@0
    65
#include "TWSGRAPHS.H"
sl@0
    66
#include "TCAPABILITY.H"
sl@0
    67
#include "TPointer.H"
sl@0
    68
#include "tdirecta.h"
sl@0
    69
#include "tdirecta2.h"
sl@0
    70
#include "TOOM.H"
sl@0
    71
#include "TCapKey.H"
sl@0
    72
#include "TMULSCREENS.h"
sl@0
    73
#include "TBUFFERSECURITY.H"
sl@0
    74
#include "TFLICKERFREE.H"
sl@0
    75
#include "tdevicerotation.h"
sl@0
    76
#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
sl@0
    77
#include "TFADINGBITMAP.H"
sl@0
    78
#endif
sl@0
    79
#include "tcrpanim.h"
sl@0
    80
#include "TMemLeakMode.h"
sl@0
    81
#include "tgc.h"
sl@0
    82
#include "THeartBeat.h"
sl@0
    83
#include "TGRAPHICSDRAWER.H"
sl@0
    84
#include "tw32cmdbuf.h"
sl@0
    85
#include "tadvancedpointerevent.h"
sl@0
    86
#include "tmultiptrevent.h"
sl@0
    87
#include "tdrawresource.h"
sl@0
    88
#include "twindowsizecache.h"
sl@0
    89
sl@0
    90
sl@0
    91
/* Path to the script
sl@0
    92
z:\GraphicsTest\gditest.script
sl@0
    93
*/
sl@0
    94
sl@0
    95
#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
sl@0
    96
_LIT(KServerName,"tautoserver_nonnga");
sl@0
    97
#endif
sl@0
    98
sl@0
    99
#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
sl@0
   100
_LIT(KServerName,"tautoserver_nga");
sl@0
   101
#endif
sl@0
   102
sl@0
   103
//CTClient *client;
sl@0
   104
sl@0
   105
CTAutoServer* CTAutoServer::NewL()
sl@0
   106
/**
sl@0
   107
   @return - Instance of the test server
sl@0
   108
   Same code for Secure and non-secure variants
sl@0
   109
   Called inside the MainL() function to create and start the
sl@0
   110
   CTestServer derived server.
sl@0
   111
 */
sl@0
   112
	{
sl@0
   113
sl@0
   114
	CTAutoServer * server = new (ELeave) CTAutoServer();
sl@0
   115
	CleanupStack::PushL(server);
sl@0
   116
	// CServer base class call
sl@0
   117
	server->StartL(KServerName);
sl@0
   118
	CleanupStack::Pop(server);
sl@0
   119
	return server;
sl@0
   120
	}
sl@0
   121
sl@0
   122
sl@0
   123
LOCAL_C void MainL()
sl@0
   124
//
sl@0
   125
// Secure variant
sl@0
   126
// Much simpler, uses the new Rendezvous() call to sync with the client
sl@0
   127
//
sl@0
   128
	{
sl@0
   129
sl@0
   130
#if (defined __DATA_CAGING__)
sl@0
   131
 	RProcess().DataCaging(RProcess::EDataCagingOn);
sl@0
   132
	RProcess().SecureApi(RProcess::ESecureApiOn);
sl@0
   133
#endif
sl@0
   134
sl@0
   135
	CActiveScheduler* sched=NULL;
sl@0
   136
	sched=new(ELeave) CActiveScheduler;
sl@0
   137
	CActiveScheduler::Install(sched);
sl@0
   138
	CTAutoServer* server = NULL;
sl@0
   139
	// Create the CTestServer derived server
sl@0
   140
	TRAPD(err,server = CTAutoServer::NewL());
sl@0
   141
	if(!err)
sl@0
   142
		{
sl@0
   143
//		client = CreateClientL();
sl@0
   144
//		client->SetScreenNumber(1);
sl@0
   145
//		client->ConstructL();
sl@0
   146
sl@0
   147
		// Sync with the client and enter the active scheduler
sl@0
   148
		RProcess::Rendezvous(KErrNone);
sl@0
   149
		sched->Start();
sl@0
   150
sl@0
   151
		}
sl@0
   152
	delete server;
sl@0
   153
	delete sched;
sl@0
   154
//
sl@0
   155
	}
sl@0
   156
sl@0
   157
GLDEF_C TInt E32Main()
sl@0
   158
sl@0
   159
/** @return - Standard Epoc error code on process exit
sl@0
   160
    Secure variant only
sl@0
   161
    Process entry point. Called by client using RProcess API
sl@0
   162
*/
sl@0
   163
	{
sl@0
   164
sl@0
   165
sl@0
   166
	__UHEAP_MARK;
sl@0
   167
sl@0
   168
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   169
	if(cleanup == NULL)
sl@0
   170
		{
sl@0
   171
		return KErrNoMemory;
sl@0
   172
		}
sl@0
   173
sl@0
   174
	TWinCommand commandLine;
sl@0
   175
	User::CommandLine(commandLine);
sl@0
   176
	TInt ret=KErrNone;
sl@0
   177
	if (commandLine.Length()>0)
sl@0
   178
		{
sl@0
   179
		ret=CProcess::Start(commandLine);
sl@0
   180
		// pass test result to parent process (in multi display test)
sl@0
   181
		RProcess().Terminate(ret);
sl@0
   182
		return(ret);
sl@0
   183
		}
sl@0
   184
sl@0
   185
sl@0
   186
	TRAPD(err,MainL());
sl@0
   187
	// This if statement is here just to shut up RVCT, which would otherwise warn
sl@0
   188
	// that err was set but never used
sl@0
   189
	if (err)
sl@0
   190
	    {
sl@0
   191
	    err = KErrNone;
sl@0
   192
	    }
sl@0
   193
	delete cleanup;
sl@0
   194
sl@0
   195
	__UHEAP_MARKEND;
sl@0
   196
sl@0
   197
//	if (client != NULL)
sl@0
   198
//	delete client;
sl@0
   199
	return KErrNone;
sl@0
   200
    }
sl@0
   201
sl@0
   202
CTestStep* CTAutoServer::CreateTestStep(const TDesC& aStepName)
sl@0
   203
/**
sl@0
   204
   @return - A CTestStep derived instance
sl@0
   205
   Secure and non-secure variants
sl@0
   206
   Implementation of CTestServer pure virtual
sl@0
   207
 */
sl@0
   208
	{
sl@0
   209
	// Debug statements to indicate the progress of the wserv test suite
sl@0
   210
	RDebug::Print(_L("**********************************************"));
sl@0
   211
	RDebug::Print(_L("* WServ Test Step: %S"), &aStepName);
sl@0
   212
	RDebug::Print(_L("**********************************************"));
sl@0
   213
	
sl@0
   214
	++CTestDriver::iTestNum;
sl@0
   215
	CTestStep* testStep = NULL;
sl@0
   216
	if(aStepName == KTEventTestStep)
sl@0
   217
		testStep = new CTEventTestStep();
sl@0
   218
	else if(aStepName == KTTSpriteStep)
sl@0
   219
		testStep = new CTTSpriteStep();
sl@0
   220
	else if(aStepName == KTBlankStep)
sl@0
   221
		testStep = new CTBlankStep();
sl@0
   222
	else if(aStepName == KTRectListStep)
sl@0
   223
		testStep = new CTRectListStep();
sl@0
   224
	else if(aStepName == KTMultiDisplayStep)
sl@0
   225
		testStep = new CTMultiDisplayStep();
sl@0
   226
	else if(aStepName == KTWindowTestStep)
sl@0
   227
		testStep = new CTWindowTestStep();
sl@0
   228
	else if(aStepName == KTDerivedStep)
sl@0
   229
		testStep = new CTDerivedStep();
sl@0
   230
	else if(aStepName == KTScreenDeviceStep)
sl@0
   231
		testStep = new CTScreenDeviceStep();
sl@0
   232
	else if(aStepName == KTScreenDeviceResSwitchStep)
sl@0
   233
	    testStep = new CTScreenDeviceResSwitchStep();
sl@0
   234
	else if(aStepName == KTMessageStep)
sl@0
   235
		testStep = new CTMessageStep();
sl@0
   236
	else if(aStepName == KToomDrawStep)
sl@0
   237
		testStep = new CToomDrawStep();
sl@0
   238
	else if(aStepName == KTRedrawStoringStep)
sl@0
   239
		testStep = new CTRedrawStoringStep();
sl@0
   240
	else if(aStepName == KTPntKeyStep)
sl@0
   241
		testStep = new CTPntKeyStep();
sl@0
   242
	else if(aStepName == KTKRepeatStep)
sl@0
   243
		testStep = new CTKRepeatStep();
sl@0
   244
	else if(aStepName == KTBitmapStep)
sl@0
   245
		testStep = new CTBitmapStep();
sl@0
   246
	else if(aStepName == KTScreenModeScalingStep)
sl@0
   247
		testStep = new CTScreenModeScalingStep();
sl@0
   248
	else if(aStepName == KTScreenModePositioningStep)
sl@0
   249
		testStep = new CTScreenModePositioningStep();
sl@0
   250
	else if(aStepName == KTBackedUpWindowStep)
sl@0
   251
		testStep = new CTBackedUpWindowStep();
sl@0
   252
	else if(aStepName == KTFadeStep)
sl@0
   253
		testStep = new CTFadeStep();
sl@0
   254
	else if(aStepName == KTGetPixelStep)
sl@0
   255
		testStep = new CTGetPixelStep();
sl@0
   256
	else if(aStepName == KTOrdinalStep)
sl@0
   257
		testStep = new CTOrdinalStep();
sl@0
   258
	else if(aStepName == KTGwHandleStep)
sl@0
   259
		testStep = new CTGwHandleStep();
sl@0
   260
	else if (aStepName == KTTransparentAnimStep)
sl@0
   261
		testStep = new CTTransparentAnimStep();	
sl@0
   262
	else if(aStepName == KTProcPriStep)
sl@0
   263
		testStep = new CTProcPriStep();
sl@0
   264
	else if(aStepName == KTKeyStep)
sl@0
   265
		testStep = new CTKeyStep();
sl@0
   266
 	else if(aStepName == KTModifiersChangedStep)
sl@0
   267
  		testStep = new CTModifiersChangedStep();
sl@0
   268
 	else if(aStepName == KTCursorTestStep)
sl@0
   269
  		testStep = new CTCursorTestStep();
sl@0
   270
 	else if(aStepName == KTScrollStep)
sl@0
   271
  		testStep = new CTScrollStep();
sl@0
   272
  	else if(aStepName == KTAlphaChannelStep)
sl@0
   273
  		testStep = new CTAlphaChannelStep();
sl@0
   274
 	else if(aStepName == KTPanicStep)
sl@0
   275
  		testStep = new CTPanicStep();
sl@0
   276
 	else if(aStepName == KTGdiStep)
sl@0
   277
  		testStep = new CTGdiStep();
sl@0
   278
 	else if(aStepName == KTRegionStep)
sl@0
   279
  		testStep = new CTRegionStep();
sl@0
   280
 	else if(aStepName == KTRedrawTestStep)
sl@0
   281
  		testStep = new CTRedrawTestStep();
sl@0
   282
 	else if(aStepName == KTMultipleTransStep)
sl@0
   283
  		testStep = new CTMultipleTransStep();
sl@0
   284
 	else if(aStepName == KTAlphaWinStep)
sl@0
   285
  		testStep = new CTAlphaWinStep();
sl@0
   286
 	else if(aStepName == KTMultiConStep)
sl@0
   287
  		testStep = new CTMultiConStep();
sl@0
   288
 	else if(aStepName == KTPointerCaptureStep)
sl@0
   289
  		testStep = new CTPointerCaptureStep();
sl@0
   290
 	else if(aStepName == KTScrModeStep)
sl@0
   291
  		testStep = new CTScrModeStep();
sl@0
   292
 	else if(aStepName == KTAnimDllStep)
sl@0
   293
  		testStep = new CTAnimDllStep();
sl@0
   294
 	else if(aStepName == KTWsGraphsStep)
sl@0
   295
  		testStep = new CTWsGraphsStep();
sl@0
   296
 	else if(aStepName == KTCapabilityStep)
sl@0
   297
  		testStep = new CTCapabilityStep();
sl@0
   298
 	else if(aStepName == KTPointerStep)
sl@0
   299
  		testStep = new CTPointerStep();
sl@0
   300
 	else if(aStepName == KTDirectStep)
sl@0
   301
  		testStep = new CTDirectStep();
sl@0
   302
 	else if(aStepName == KTDirect2Step)
sl@0
   303
  		testStep = new CTDirect2Step();
sl@0
   304
 	else if(aStepName == KTOomStep)
sl@0
   305
  		testStep = new CTOomStep();
sl@0
   306
 	else if(aStepName == KTCaptureKeyStep)
sl@0
   307
  		testStep = new CTCaptureKeyStep();
sl@0
   308
  	else if(aStepName == KTMulScreensStep)
sl@0
   309
  		testStep = new CTMulScreensStep();
sl@0
   310
 	else if(aStepName == KTBufferSecurityStep)
sl@0
   311
  		testStep = new CTBufferSecurityStep();
sl@0
   312
   	else if(aStepName == KTFlickerFreeStep)
sl@0
   313
  		testStep = new CTFlickerFreeStep();
sl@0
   314
    else if(aStepName == KTDeviceRotationStep)
sl@0
   315
     testStep = new CTDeviceRotationStep();
sl@0
   316
#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NONNGA
sl@0
   317
	else if(aStepName == KTFadingBitmapStep)
sl@0
   318
  		testStep = new CTFadingBitmapStep();
sl@0
   319
#endif
sl@0
   320
	else if(aStepName == KTCrpAnimStep)
sl@0
   321
		testStep = new CTCrpAnimStep();
sl@0
   322
	else if(aStepName == KTMemLeakCheckEnableStep)
sl@0
   323
		testStep = new CTMemLeakCheckEnableStep();
sl@0
   324
	else if(aStepName == KTMemLeakCheckOneShotStep)
sl@0
   325
		testStep = new CTMemLeakCheckOneShotStep();
sl@0
   326
	else if(aStepName == KTGcStep)
sl@0
   327
		testStep = new CTGcStep(); 
sl@0
   328
 	else if(aStepName == KTHeartBeatTestStep)
sl@0
   329
  		testStep = new CTHeartBeatTestStep();
sl@0
   330
 	else if(aStepName == KTGraphicsDrawerStep)
sl@0
   331
 		testStep = new CTGraphicsDrawerStep();
sl@0
   332
 	else if(aStepName == KTW32CmdBufStep) 
sl@0
   333
 		testStep = new CTW32CmdBufStep();
sl@0
   334
#ifdef TEST_GRAPHICS_WSERV_TAUTOSERVER_NGA
sl@0
   335
 	else if(aStepName == KTAdvancedPointerEventStep)
sl@0
   336
 		testStep = new CTAdvancedPointerEventStep();
sl@0
   337
 	else if(aStepName == KTMultiPtrEventTestStep) 
sl@0
   338
 	 	testStep = new CTMultiPtrEventTestStep();
sl@0
   339
	else if(aStepName == KTDrawResourceStep)
sl@0
   340
		testStep = new CTDrawResourceStep();
sl@0
   341
    else if(aStepName == KTWindowSizeCacheTestStep)
sl@0
   342
        testStep = new CTWindowSizeCacheTestStep();
sl@0
   343
#endif
sl@0
   344
	return testStep;
sl@0
   345
	}