os/graphics/windowing/windowserver/test/tcsc/cwsgcecsc.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// @file
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <w32std.h>
sl@0
    19
#include <e32std.h>
sl@0
    20
#include "cwsgcecsc.h"
sl@0
    21
#include "extendtef.h"
sl@0
    22
#include "teflogextensions.h"
sl@0
    23
#include "testscreencapture.h"
sl@0
    24
sl@0
    25
sl@0
    26
#if defined(__X86GCC__)
sl@0
    27
extern "C" TInt atexit(void (*function)(void))
sl@0
    28
	{
sl@0
    29
	return KErrNone;
sl@0
    30
	}
sl@0
    31
#endif
sl@0
    32
sl@0
    33
void TefUnitFailLeaveL()
sl@0
    34
	{
sl@0
    35
	User::Leave(KErrTEFUnitFail);
sl@0
    36
	}
sl@0
    37
sl@0
    38
CWSGceCsc::CWSGceCsc()
sl@0
    39
	{
sl@0
    40
	}
sl@0
    41
sl@0
    42
CWSGceCsc::~CWSGceCsc()
sl@0
    43
	{
sl@0
    44
	}
sl@0
    45
sl@0
    46
/**
sl@0
    47
Common set up code for all tests.
sl@0
    48
sl@0
    49
Creates the session and window group for further windows, plus a simple white
sl@0
    50
background to obscure any unwanted stuff behind the test. Sets up the surface
sl@0
    51
update session and surface manager, to work with surfaces. Creates a screen
sl@0
    52
device for use in the tests.
sl@0
    53
*/
sl@0
    54
void CWSGceCsc::SetupL()
sl@0
    55
	{
sl@0
    56
	CWsGceCscBase::SetupL();
sl@0
    57
	}
sl@0
    58
sl@0
    59
/**
sl@0
    60
Common tear down code for all tests.
sl@0
    61
sl@0
    62
Windows, group and session created are closed. Screen device is destroyed.
sl@0
    63
Surfaces, manager and update session are closed.
sl@0
    64
*/
sl@0
    65
void CWSGceCsc::TearDownL()
sl@0
    66
	{
sl@0
    67
	CWsGceCscBase::TearDownL();
sl@0
    68
	}
sl@0
    69
sl@0
    70
CTestSuite* CWSGceCsc::CreateSuiteL( const TDesC& aName)
sl@0
    71
	{
sl@0
    72
	SUB_SUITE;
sl@0
    73
	ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_101L);
sl@0
    74
	ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_102L);
sl@0
    75
	ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_103L);
sl@0
    76
	ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_104L);
sl@0
    77
	ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_105L);
sl@0
    78
	END_SUITE;
sl@0
    79
	}
sl@0
    80
sl@0
    81
/**
sl@0
    82
 @SYMTestCaseID			GRAPHICS_WSERV_CSC_101L
sl@0
    83
 
sl@0
    84
 @SYMTestCaseDesc		Compare the screen composition using the new and legacy API
sl@0
    85
 						
sl@0
    86
 @SYMPREQ				CSC
sl@0
    87
 
sl@0
    88
 @SYMTestStatus			Implemented
sl@0
    89
 
sl@0
    90
 @SYMTestPriority		1
sl@0
    91
 
sl@0
    92
 @SYMTestPurpose		To check that the screen composition retrieved using the new and legacy APIs
sl@0
    93
sl@0
    94
 @SYMTestActions		Initialization.
sl@0
    95
						Construct a background opaque window.
sl@0
    96
						Create two bitmaps with the size equal with the composition.
sl@0
    97
						Draw something on the screen.
sl@0
    98
						Use legacy API CopyScreenToBitmap() to copy the screen to first bitmap.
sl@0
    99
						Use the the new API to copy the composition of the screen.
sl@0
   100
						Compare the results.
sl@0
   101
 
sl@0
   102
 @SYMTestExpectedResults  The bitmap should be identical	 
sl@0
   103
*/
sl@0
   104
void CWSGceCsc::GRAPHICS_WSERV_CSC_101L()
sl@0
   105
	{
sl@0
   106
	TRect screen(iScreenDevice->SizeInPixels());
sl@0
   107
	RWindow nonSurfacedWindow(iSession);
sl@0
   108
	iTestName.Format(_L("GRAPHICS_WSERV_CSC_101L"));
sl@0
   109
sl@0
   110
	INFO_PRINTF2(_L("%S"),&iTestName);
sl@0
   111
	iDisplayMode = iScreenDevice->DisplayMode();	// Get default display mode
sl@0
   112
sl@0
   113
	ConstructOpaqueWindowLC(nonSurfacedWindow, 
sl@0
   114
			                iCyan, 
sl@0
   115
		                    0, 
sl@0
   116
                            TPoint(0, 0),
sl@0
   117
                            screen.Size());
sl@0
   118
	iSession.Flush();
sl@0
   119
	Pause(1000);
sl@0
   120
sl@0
   121
	MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
sl@0
   122
    ASSERT_NOT_NULL(csc);
sl@0
   123
sl@0
   124
	TSize compositionScreenSize;
sl@0
   125
	
sl@0
   126
	User::LeaveIfError(csc->GetCompositedSize(compositionScreenSize));
sl@0
   127
	
sl@0
   128
    CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
sl@0
   129
    CleanupStack::PushL(bmp1);
sl@0
   130
    User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
sl@0
   131
    
sl@0
   132
    CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
sl@0
   133
    CleanupStack::PushL(bmp2);
sl@0
   134
	User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor16MU));
sl@0
   135
	
sl@0
   136
	iSession.Flush();
sl@0
   137
	Pause(200);
sl@0
   138
	
sl@0
   139
	iScreenDevice->CopyScreenToBitmap(bmp1);
sl@0
   140
	User::LeaveIfError(csc->ComposeScreen(*bmp2));
sl@0
   141
	
sl@0
   142
	SetBackgroundColorWindow(nonSurfacedWindow, iRed);
sl@0
   143
	iSession.Flush();
sl@0
   144
	
sl@0
   145
	Pause(500);
sl@0
   146
	
sl@0
   147
	iGc->Activate(nonSurfacedWindow);
sl@0
   148
	iGc->BitBlt(TPoint(0, 0), bmp1);
sl@0
   149
	iGc->Deactivate();
sl@0
   150
	iSession.Flush();
sl@0
   151
	Pause(500);
sl@0
   152
	
sl@0
   153
	SetBackgroundColorWindow(nonSurfacedWindow, iWhite);
sl@0
   154
	iSession.Flush();
sl@0
   155
	Pause(500);
sl@0
   156
	
sl@0
   157
	iGc->Activate(nonSurfacedWindow);
sl@0
   158
	iGc->BitBlt(TPoint(0, 0), bmp2);
sl@0
   159
	iGc->Deactivate();
sl@0
   160
	iSession.Flush();
sl@0
   161
	Pause(500);
sl@0
   162
sl@0
   163
    ASSERT_TRUE(Compare(*bmp1, *bmp2));    
sl@0
   164
	
sl@0
   165
	if (GCEIsSupported())
sl@0
   166
		{
sl@0
   167
		iUtility->DestroyAll();
sl@0
   168
		}
sl@0
   169
	
sl@0
   170
	CleanupStack::PopAndDestroy(bmp2);
sl@0
   171
	CleanupStack::PopAndDestroy(bmp1);
sl@0
   172
	CleanupStack::PopAndDestroy(&nonSurfacedWindow);
sl@0
   173
	iSession.Flush();
sl@0
   174
	Pause(1000);
sl@0
   175
	}
sl@0
   176
sl@0
   177
void CWSGceCsc::DrawBasicPattern (RWindow& aWin)
sl@0
   178
    {
sl@0
   179
    TSize rectSize(100, 100);
sl@0
   180
    aWin.Invalidate();
sl@0
   181
    aWin.BeginRedraw();
sl@0
   182
    iGc->Activate(aWin);
sl@0
   183
    iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   184
    iGc->SetBrushColor(KRgbDarkRed);
sl@0
   185
    iGc->DrawRect(TRect(TPoint(35, 5), rectSize));
sl@0
   186
    iGc->SetBrushColor(KRgbBlack);
sl@0
   187
    iGc->DrawRect(TRect(TPoint(55, 15), rectSize));
sl@0
   188
    iGc->SetBrushColor(KRgbDarkBlue);
sl@0
   189
    iGc->DrawRect(TRect(TPoint(75, 35), rectSize));
sl@0
   190
    iGc->SetBrushColor(KRgbYellow);
sl@0
   191
    iGc->DrawRect(TRect(TPoint(95, 55), rectSize));
sl@0
   192
    iGc->Deactivate();
sl@0
   193
    aWin.EndRedraw();
sl@0
   194
    iSession.Flush();
sl@0
   195
    Pause(500);
sl@0
   196
    }
sl@0
   197
sl@0
   198
/**
sl@0
   199
 @SYMTestCaseID			GRAPHICS_WSERV_CSC_102L
sl@0
   200
 
sl@0
   201
 @SYMTestCaseDesc		Compare the screen composition using the new and legacy API
sl@0
   202
 						
sl@0
   203
 @SYMPREQ				CSC
sl@0
   204
 
sl@0
   205
 @SYMTestStatus			Implemented
sl@0
   206
 
sl@0
   207
 @SYMTestPriority		1
sl@0
   208
 
sl@0
   209
 @SYMTestPurpose		To check that the screen composition retrieved using the new and legacy APIs 
sl@0
   210
sl@0
   211
 @SYMTestActions		Initialization.
sl@0
   212
 						Draw a pattern on the screen
sl@0
   213
 						Retrieve to a bitmap the UI content using the legacy API
sl@0
   214
 						Blank the screen.
sl@0
   215
 						Display the retrieved content to a surface
sl@0
   216
 						Retrieve the composited content
sl@0
   217
 						Compare the UI content with the composited content
sl@0
   218
 						NOTE:assumes current screen mode is at 0 offset
sl@0
   219
 
sl@0
   220
 @SYMTestExpectedResults  The UI content should be identical with the composited content	 
sl@0
   221
*/
sl@0
   222
void CWSGceCsc::GRAPHICS_WSERV_CSC_102L()
sl@0
   223
	{
sl@0
   224
	TRect screen(iScreenDevice->SizeInPixels());
sl@0
   225
	RWindow testWindow(iSession);
sl@0
   226
	RWindow surfacedTestWindow(iSession);
sl@0
   227
	TSurfaceId surfaceID;
sl@0
   228
sl@0
   229
    MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
sl@0
   230
    ASSERT_NOT_NULL(csc);
sl@0
   231
	
sl@0
   232
	TSize compositionScreenSize;
sl@0
   233
	User::LeaveIfError(csc->GetCompositedSize(compositionScreenSize));
sl@0
   234
	
sl@0
   235
	iTestName.Format(_L("GRAPHICS_WSERV_CSC_102"));
sl@0
   236
	INFO_PRINTF2(_L("%S"),&iTestName);
sl@0
   237
	
sl@0
   238
	iDisplayMode = iScreenDevice->DisplayMode();
sl@0
   239
sl@0
   240
	TRAPD(err, surfaceID = iUtility->CreateSurfaceL(compositionScreenSize, 
sl@0
   241
			                                        KSurfaceFormat, 
sl@0
   242
			                                        compositionScreenSize.iWidth * KBytesPerPixel));
sl@0
   243
	ASSERT_EQUALS(err,KErrNone);
sl@0
   244
	
sl@0
   245
	ConstructOpaqueWindowLC(testWindow, 
sl@0
   246
			                iWhite, 
sl@0
   247
		                    0, 
sl@0
   248
                            TPoint(0, 0),
sl@0
   249
                            compositionScreenSize);
sl@0
   250
sl@0
   251
	iSession.Flush();
sl@0
   252
	Pause(100);
sl@0
   253
	
sl@0
   254
	CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
sl@0
   255
	CleanupStack::PushL(bmp1);
sl@0
   256
	User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
sl@0
   257
	
sl@0
   258
	CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
sl@0
   259
	CleanupStack::PushL(bmp2);
sl@0
   260
	User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor16MU));
sl@0
   261
	
sl@0
   262
	iSession.Flush();
sl@0
   263
	Pause(500);
sl@0
   264
sl@0
   265
	SetBackgroundColorWindow(testWindow, iWhite);
sl@0
   266
	DrawBasicPattern (testWindow);
sl@0
   267
	
sl@0
   268
	iScreenDevice->CopyScreenToBitmap(bmp1);
sl@0
   269
	iSession.Flush();
sl@0
   270
    Pause(100);
sl@0
   271
    
sl@0
   272
	ConstructOpaqueSurfacedWindowLC(surfacedTestWindow, 
sl@0
   273
			                        iRed,
sl@0
   274
		                            0,
sl@0
   275
		                            TPoint(0, 0),
sl@0
   276
		                            compositionScreenSize,
sl@0
   277
		                            surfaceID);
sl@0
   278
	
sl@0
   279
	TRAP(err,iUtility->FillSurfaceL(surfaceID, iCyan));
sl@0
   280
	ASSERT_EQUALS(err,KErrNone);
sl@0
   281
	iSession.Flush();
sl@0
   282
    Pause(500);
sl@0
   283
    
sl@0
   284
	TRAP(err, iUtility->CopyBitmapToSurfaceL(surfaceID, *bmp1));
sl@0
   285
	ASSERT_EQUALS(err,KErrNone);
sl@0
   286
	iSession.Flush();
sl@0
   287
    Pause(500);
sl@0
   288
sl@0
   289
	User::LeaveIfError(csc->ComposeScreen(*bmp2));
sl@0
   290
    
sl@0
   291
    ASSERT_TRUE(Compare(*bmp1, *bmp2));    
sl@0
   292
	
sl@0
   293
	iUtility->DestroyAll();
sl@0
   294
	CleanupStack::PopAndDestroy(&surfacedTestWindow);
sl@0
   295
	CleanupStack::PopAndDestroy(bmp2);
sl@0
   296
	CleanupStack::PopAndDestroy(bmp1);
sl@0
   297
	CleanupStack::PopAndDestroy(&testWindow);
sl@0
   298
	iSession.Flush();
sl@0
   299
	Pause(1000);
sl@0
   300
	}
sl@0
   301
sl@0
   302
/**
sl@0
   303
 @SYMTestCaseID			GRAPHICS_WSERV_CSC_103L
sl@0
   304
 
sl@0
   305
 @SYMTestCaseDesc		Test TranslateExtent
sl@0
   306
 						
sl@0
   307
 @SYMPREQ				CSC
sl@0
   308
 
sl@0
   309
 @SYMTestStatus			Implemented
sl@0
   310
 
sl@0
   311
 @SYMTestPriority		1
sl@0
   312
 
sl@0
   313
 @SYMTestPurpose		To check that the correct translated extent is returned to the client 
sl@0
   314
sl@0
   315
 @SYMTestActions		Initialization
sl@0
   316
 						Change to app mode with offset and 90 degrees rotation
sl@0
   317
 						Translate a rectangle corresponding to the original app mode
sl@0
   318
 						Compare the expected rectangle with the translated rectangle
sl@0
   319
 
sl@0
   320
 @SYMTestExpectedResults  The translated rectangle should take into account the offset and rotation
sl@0
   321
							and be equal to the expected rectangle
sl@0
   322
*/
sl@0
   323
void CWSGceCsc::GRAPHICS_WSERV_CSC_103L()
sl@0
   324
	{
sl@0
   325
	TRect screen(iScreenDevice->SizeInPixels());
sl@0
   326
	RWindow testWindow(iSession);
sl@0
   327
	
sl@0
   328
	iTestName.Format(_L("GRAPHICS_WSERV_CSC_103L"));
sl@0
   329
	INFO_PRINTF2(_L("%S"),&iTestName);
sl@0
   330
	
sl@0
   331
	iDisplayMode = iScreenDevice->DisplayMode();
sl@0
   332
	
sl@0
   333
	ConstructOpaqueWindowLC(testWindow, 
sl@0
   334
			                iWhite, 
sl@0
   335
		                    0, 
sl@0
   336
                            TPoint(0, 0),
sl@0
   337
                            screen.Size());
sl@0
   338
	iSession.Flush();
sl@0
   339
	Pause(1000);
sl@0
   340
sl@0
   341
	// Get the screen modes
sl@0
   342
	RArray<TInt> modeList;
sl@0
   343
	TInt err = iScreenDevice->GetScreenSizeModeList(&modeList);
sl@0
   344
	ASSERT_TRUE(err > 1);  //2 modes expected
sl@0
   345
	ASSERT_TRUE(modeList.Count() > 1); //2 modes expected
sl@0
   346
	
sl@0
   347
	// The initial extent and the expected translated extent
sl@0
   348
	TRect initial(TPoint(10,10), TSize(20,30));
sl@0
   349
	TRect extent(initial);
sl@0
   350
	TRect expected(TPoint(15,15), TSize(20,30));
sl@0
   351
	
sl@0
   352
	// Change app mode to 5 pixels offset
sl@0
   353
	iScreenDevice->SetAppScreenMode(modeList[1]);
sl@0
   354
	iScreenDevice->SetScreenMode(modeList[1]);
sl@0
   355
	iSession.Flush();
sl@0
   356
	Pause(100);
sl@0
   357
sl@0
   358
	TPoint origin = iScreenDevice->GetCurrentScreenModeScaledOrigin();
sl@0
   359
	if(origin != TPoint(0,0))
sl@0
   360
		{
sl@0
   361
		// Calculate the new extent
sl@0
   362
	    MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
sl@0
   363
	    ASSERT_NOT_NULL(csc);
sl@0
   364
		csc->TranslateExtent(initial, extent);	
sl@0
   365
		ASSERT_TRUE(extent == expected); 
sl@0
   366
		}
sl@0
   367
	else
sl@0
   368
		{
sl@0
   369
		INFO_PRINTF1(_L("Non zero offset not supported"));
sl@0
   370
		}
sl@0
   371
    // Change app mode
sl@0
   372
    iScreenDevice->SetAppScreenMode(modeList[0]);
sl@0
   373
    iScreenDevice->SetScreenMode(modeList[0]);
sl@0
   374
    iSession.Flush();
sl@0
   375
    Pause(100);
sl@0
   376
sl@0
   377
    modeList.Close();
sl@0
   378
	CleanupStack::PopAndDestroy(&testWindow);
sl@0
   379
	iSession.Flush();
sl@0
   380
	Pause(1000);
sl@0
   381
	}
sl@0
   382
sl@0
   383
/**
sl@0
   384
 @SYMTestCaseID			GRAPHICS_WSERV_CSC_104L
sl@0
   385
 
sl@0
   386
 @SYMTestCaseDesc		Compare the screen composition using bitmaps with different display modes
sl@0
   387
 						
sl@0
   388
 @SYMPREQ				CSC
sl@0
   389
 
sl@0
   390
 @SYMTestStatus			Implemented
sl@0
   391
 
sl@0
   392
 @SYMTestPriority		1
sl@0
   393
 
sl@0
   394
 @SYMTestPurpose		To check that bitmaps with different display modes  
sl@0
   395
sl@0
   396
 @SYMTestActions		Initialization.
sl@0
   397
 						Draw a pattern on the screen
sl@0
   398
 						Retrieve to a bitmap the UI content using the legacy API
sl@0
   399
 						Blank the screen.
sl@0
   400
 						Display the retrieved content to a surface
sl@0
   401
 						Retrieve the composited content to a 2nd bitmap
sl@0
   402
 						Compare the UI content with the composited content
sl@0
   403
 
sl@0
   404
 @SYMTestExpectedResults  The bitmaps format should not match and should return KErrArgument 
sl@0
   405
*/
sl@0
   406
void CWSGceCsc::GRAPHICS_WSERV_CSC_104L()
sl@0
   407
	{
sl@0
   408
	TRect screen(iScreenDevice->SizeInPixels());
sl@0
   409
	RWindow testWindow(iSession);
sl@0
   410
	RWindow surfacedTestWindow(iSession);
sl@0
   411
	TSurfaceId surfaceID;
sl@0
   412
sl@0
   413
    MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
sl@0
   414
    ASSERT_NOT_NULL(csc);
sl@0
   415
	
sl@0
   416
	TSize compositionScreenSize;
sl@0
   417
	User::LeaveIfError(csc->GetCompositedSize(compositionScreenSize));
sl@0
   418
	
sl@0
   419
	iTestName.Format(_L("GRAPHICS_WSERV_CSC_102"));
sl@0
   420
	INFO_PRINTF2(_L("%S"),&iTestName);
sl@0
   421
	
sl@0
   422
	iDisplayMode = iScreenDevice->DisplayMode();
sl@0
   423
sl@0
   424
	TRAPD(err, surfaceID = iUtility->CreateSurfaceL(compositionScreenSize, 
sl@0
   425
			                                        KSurfaceFormat, 
sl@0
   426
			                                        compositionScreenSize.iWidth * KBytesPerPixel));
sl@0
   427
	ASSERT_EQUALS(err,KErrNone);
sl@0
   428
	
sl@0
   429
	ConstructOpaqueWindowLC(testWindow, 
sl@0
   430
			                iWhite, 
sl@0
   431
		                    0, 
sl@0
   432
                            TPoint(0, 0),
sl@0
   433
                            compositionScreenSize);
sl@0
   434
sl@0
   435
	iSession.Flush();
sl@0
   436
	Pause(100);
sl@0
   437
	
sl@0
   438
	CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
sl@0
   439
	CleanupStack::PushL(bmp1);
sl@0
   440
	User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
sl@0
   441
	
sl@0
   442
	// Invalid bitmap display mode
sl@0
   443
	CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
sl@0
   444
	CleanupStack::PushL(bmp2);
sl@0
   445
	User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor256));
sl@0
   446
	
sl@0
   447
	iSession.Flush();
sl@0
   448
	Pause(500);
sl@0
   449
sl@0
   450
	// Draw a pattern using WServ
sl@0
   451
	SetBackgroundColorWindow(testWindow, iWhite);
sl@0
   452
sl@0
   453
	TSize rectSize(100, 100);
sl@0
   454
	testWindow.Invalidate();
sl@0
   455
	testWindow.BeginRedraw();
sl@0
   456
	iGc->Activate(testWindow);
sl@0
   457
	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   458
	iGc->SetBrushColor(KRgbDarkRed);
sl@0
   459
	iGc->DrawRect(TRect(TPoint(35, 5), rectSize));
sl@0
   460
	iGc->SetBrushColor(KRgbBlack);
sl@0
   461
	iGc->DrawRect(TRect(TPoint(55, 15), rectSize));
sl@0
   462
	iGc->SetBrushColor(KRgbDarkBlue);
sl@0
   463
	iGc->DrawRect(TRect(TPoint(75, 35), rectSize));
sl@0
   464
	iGc->SetBrushColor(KRgbYellow);
sl@0
   465
	iGc->DrawRect(TRect(TPoint(95, 55), rectSize));
sl@0
   466
	iGc->Deactivate();
sl@0
   467
	testWindow.EndRedraw();
sl@0
   468
	iSession.Flush();
sl@0
   469
	Pause(500);
sl@0
   470
	
sl@0
   471
	iScreenDevice->CopyScreenToBitmap(bmp1);
sl@0
   472
	iSession.Flush();
sl@0
   473
    Pause(100);
sl@0
   474
    
sl@0
   475
	ConstructOpaqueSurfacedWindowLC(surfacedTestWindow, 
sl@0
   476
			                        iRed,
sl@0
   477
		                            0,
sl@0
   478
		                            TPoint(0, 0),
sl@0
   479
		                            compositionScreenSize,
sl@0
   480
		                            surfaceID);
sl@0
   481
	
sl@0
   482
	TRAP(err,iUtility->FillSurfaceL(surfaceID, iCyan));
sl@0
   483
	ASSERT_EQUALS(err,KErrNone);
sl@0
   484
	iSession.Flush();
sl@0
   485
    Pause(500);
sl@0
   486
    
sl@0
   487
	TRAP(err, iUtility->CopyBitmapToSurfaceL(surfaceID, *bmp1));
sl@0
   488
	ASSERT_EQUALS(err,KErrNone);
sl@0
   489
	iSession.Flush();
sl@0
   490
    Pause(500);
sl@0
   491
sl@0
   492
    // negative test, it should fail wit KErrArgument
sl@0
   493
	TInt ret = csc->ComposeScreen(*bmp2);
sl@0
   494
	ASSERT_EQUALS(ret, KErrArgument);
sl@0
   495
	
sl@0
   496
	iUtility->DestroyAll();
sl@0
   497
	CleanupStack::PopAndDestroy(&surfacedTestWindow);
sl@0
   498
	CleanupStack::PopAndDestroy(bmp2);
sl@0
   499
	CleanupStack::PopAndDestroy(bmp1);
sl@0
   500
	CleanupStack::PopAndDestroy(&testWindow);
sl@0
   501
	iSession.Flush();
sl@0
   502
	Pause(1000);
sl@0
   503
	}
sl@0
   504
sl@0
   505
/**
sl@0
   506
 @SYMTestCaseID         GRAPHICS_WSERV_CSC_105L
sl@0
   507
 @SYMTestCaseDesc       Correct bitmap size returned when in small screen mode
sl@0
   508
 @SYMDEF                DEF139191                   
sl@0
   509
 @SYMPREQ               CSC
sl@0
   510
 @SYMTestStatus         Implemented
sl@0
   511
 @SYMTestPriority       1
sl@0
   512
 @SYMTestPurpose        Checking GetCompositedSize is correct on gce & acceptable behaviour in non gce mode
sl@0
   513
 @SYMTestActions        For every available screen mode
sl@0
   514
                        Get size from GetCompositedSize
sl@0
   515
                        Draw some coloured rectangles on screen
sl@0
   516
                        If gce, do a full screen surface, and paste the coloured rectangles into the surface
sl@0
   517
                        ComposeScreen - bitmap 1 should be the same as bitmap 2
sl@0
   518
                        Note - non GCE mode - GetCompositedSize returns unrotated appmode size, so only
sl@0
   519
                            compares the intersection of that with actual screen size
sl@0
   520
                        Note - gce mode - GetCompositedSize returns actual rotated screen size, so 
sl@0
   521
                            does a complete screen comparison
sl@0
   522
 @SYMTestExpectedResults  All asserts should complete. Comparison should succeed!
sl@0
   523
*/
sl@0
   524
void CWSGceCsc::GRAPHICS_WSERV_CSC_105L()
sl@0
   525
    {
sl@0
   526
    iTestName.Format(_L("GRAPHICS_WSERV_CSC_105"));
sl@0
   527
    INFO_PRINTF2(_L("%S"),&iTestName);
sl@0
   528
    TInt err;
sl@0
   529
    //get list of modes
sl@0
   530
    RArray<TInt> screenModes;
sl@0
   531
    err = iScreenDevice->GetScreenSizeModeList(&screenModes);
sl@0
   532
    ASSERT_TRUE (err > 0);
sl@0
   533
    //get first mode info
sl@0
   534
    TPixelsAndRotation firstModeInfo;
sl@0
   535
    iScreenDevice->GetScreenModeSizeAndRotation(screenModes[0],firstModeInfo);
sl@0
   536
sl@0
   537
    //make sure csc is available
sl@0
   538
    MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
sl@0
   539
    ASSERT_NOT_NULL(csc);
sl@0
   540
sl@0
   541
    TBool differentSizes = EFalse;
sl@0
   542
    TSizeMode currentModeInfo;
sl@0
   543
    TSize compositionScreenSize;
sl@0
   544
    //for every screen mode
sl@0
   545
    for (TInt ii = 0; ii < screenModes.Count(); ++ii && !differentSizes)
sl@0
   546
        {
sl@0
   547
        //set mode
sl@0
   548
        iScreenDevice->SetAppScreenMode(screenModes[ii]);
sl@0
   549
        iScreenDevice->SetScreenMode(screenModes[ii]);
sl@0
   550
        iSession.Flush();
sl@0
   551
        Pause(100);
sl@0
   552
        //get mode info
sl@0
   553
        currentModeInfo = iScreenDevice->GetCurrentScreenModeAttributes();
sl@0
   554
        if (currentModeInfo.iScreenSize.iWidth != firstModeInfo.iPixelSize.iWidth ||
sl@0
   555
                currentModeInfo.iScreenSize.iHeight != firstModeInfo.iPixelSize.iHeight ||
sl@0
   556
                currentModeInfo.iRotation != firstModeInfo.iRotation)
sl@0
   557
            {   //note that we have modes of different sizes / rotations
sl@0
   558
            differentSizes = ETrue;
sl@0
   559
            }
sl@0
   560
sl@0
   561
        RWindow testWindow(iSession);
sl@0
   562
        RWindow surfacedTestWindow(iSession);
sl@0
   563
        TSurfaceId surfaceID;
sl@0
   564
sl@0
   565
        err = csc->GetCompositedSize(compositionScreenSize);
sl@0
   566
        ASSERT_EQUALS (err,KErrNone);
sl@0
   567
        iDisplayMode = iScreenDevice->DisplayMode();
sl@0
   568
        
sl@0
   569
        if (GCEIsSupported())
sl@0
   570
            {   //create a surface
sl@0
   571
            TRAP(err, surfaceID = iUtility->CreateSurfaceL(compositionScreenSize, 
sl@0
   572
                                                       KSurfaceFormat, 
sl@0
   573
                                                       compositionScreenSize.iWidth * KBytesPerPixel));
sl@0
   574
            ASSERT_EQUALS(err,KErrNone);
sl@0
   575
            }
sl@0
   576
        
sl@0
   577
        //create a basic window
sl@0
   578
        ConstructOpaqueWindowLC(testWindow, 
sl@0
   579
                iWhite, 
sl@0
   580
                0, 
sl@0
   581
                -currentModeInfo.iOrigin,
sl@0
   582
                compositionScreenSize);  //negative origin to ensure it fills screen, not app mode area
sl@0
   583
        iSession.Flush();
sl@0
   584
        Pause(100);
sl@0
   585
        
sl@0
   586
        //bitmap 1 to compare against
sl@0
   587
        CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
sl@0
   588
        CleanupStack::PushL(bmp1);
sl@0
   589
        User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
sl@0
   590
        //bitmap 2 to pass into csc
sl@0
   591
        CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
sl@0
   592
        CleanupStack::PushL(bmp2);
sl@0
   593
        User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor16MU));
sl@0
   594
        
sl@0
   595
        //draw coloured rectangles in the test window
sl@0
   596
        SetBackgroundColorWindow(testWindow, iWhite);
sl@0
   597
        DrawBasicPattern (testWindow);
sl@0
   598
        
sl@0
   599
        //copy screen to bitmap 1
sl@0
   600
        err = iScreenDevice->CopyScreenToBitmap(bmp1);
sl@0
   601
        ASSERT_EQUALS (err,KErrNone);
sl@0
   602
        iSession.Flush();
sl@0
   603
        Pause(100);
sl@0
   604
        
sl@0
   605
        if (GCEIsSupported())
sl@0
   606
            {   //place a window with a surface into the screen
sl@0
   607
            ConstructOpaqueSurfacedWindowLC(surfacedTestWindow, 
sl@0
   608
                    iRed,
sl@0
   609
                    0,
sl@0
   610
                    -currentModeInfo.iOrigin,
sl@0
   611
                    compositionScreenSize,
sl@0
   612
                    surfaceID);  //negative origin to ensure it fills screen,not app mode area
sl@0
   613
sl@0
   614
            //make surface boring cyan
sl@0
   615
            TRAP(err,iUtility->FillSurfaceL(surfaceID, iCyan));
sl@0
   616
            ASSERT_EQUALS(err,KErrNone);
sl@0
   617
            iSession.Flush();
sl@0
   618
            Pause(300);
sl@0
   619
            
sl@0
   620
            //paste bitmap 1 contents into the surface
sl@0
   621
            TRAP(err, iUtility->CopyBitmapToSurfaceL(surfaceID, *bmp1));
sl@0
   622
            ASSERT_EQUALS(err,KErrNone);
sl@0
   623
            iSession.Flush();
sl@0
   624
            Pause(300);
sl@0
   625
            }
sl@0
   626
        
sl@0
   627
        //use csc to get a copy of the screen
sl@0
   628
        err = csc->ComposeScreen(*bmp2);
sl@0
   629
        ASSERT_EQUALS (err, KErrNone);
sl@0
   630
        
sl@0
   631
        //should match the original bitmap copy of the screen
sl@0
   632
        ASSERT_TRUE(Compare(*bmp1, *bmp2));    
sl@0
   633
        
sl@0
   634
        if (GCEIsSupported())
sl@0
   635
            {
sl@0
   636
            iUtility->DestroyAll();
sl@0
   637
            CleanupStack::PopAndDestroy(&surfacedTestWindow);
sl@0
   638
            }
sl@0
   639
        else
sl@0
   640
            {
sl@0
   641
            surfacedTestWindow.Close();
sl@0
   642
            }
sl@0
   643
        CleanupStack::PopAndDestroy(bmp2);
sl@0
   644
        CleanupStack::PopAndDestroy(bmp1);
sl@0
   645
        CleanupStack::PopAndDestroy(&testWindow);
sl@0
   646
        iSession.Flush();
sl@0
   647
        Pause(300);
sl@0
   648
        }
sl@0
   649
    if (!differentSizes)
sl@0
   650
        {
sl@0
   651
        INFO_PRINTF1(_L("Didn't find screen modes of different sizes - test inconclusive"));
sl@0
   652
        }
sl@0
   653
    iScreenDevice->SetAppScreenMode(screenModes[0]);
sl@0
   654
    iScreenDevice->SetScreenMode(screenModes[0]);
sl@0
   655
    screenModes.Close();
sl@0
   656
    }