First public contribution.
1 // Copyright (c) 2008-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.
20 #include "cwsgcecsc.h"
21 #include "extendtef.h"
22 #include "teflogextensions.h"
23 #include "testscreencapture.h"
26 #if defined(__X86GCC__)
27 extern "C" TInt atexit(void (*function)(void))
33 void TefUnitFailLeaveL()
35 User::Leave(KErrTEFUnitFail);
38 CWSGceCsc::CWSGceCsc()
42 CWSGceCsc::~CWSGceCsc()
47 Common set up code for all tests.
49 Creates the session and window group for further windows, plus a simple white
50 background to obscure any unwanted stuff behind the test. Sets up the surface
51 update session and surface manager, to work with surfaces. Creates a screen
52 device for use in the tests.
54 void CWSGceCsc::SetupL()
56 CWsGceCscBase::SetupL();
60 Common tear down code for all tests.
62 Windows, group and session created are closed. Screen device is destroyed.
63 Surfaces, manager and update session are closed.
65 void CWSGceCsc::TearDownL()
67 CWsGceCscBase::TearDownL();
70 CTestSuite* CWSGceCsc::CreateSuiteL( const TDesC& aName)
73 ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_101L);
74 ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_102L);
75 ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_103L);
76 ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_104L);
77 ADD_WSGCE_TEST_STEP(CWSGceCsc, GRAPHICS_WSERV_CSC_105L);
82 @SYMTestCaseID GRAPHICS_WSERV_CSC_101L
84 @SYMTestCaseDesc Compare the screen composition using the new and legacy API
88 @SYMTestStatus Implemented
92 @SYMTestPurpose To check that the screen composition retrieved using the new and legacy APIs
94 @SYMTestActions Initialization.
95 Construct a background opaque window.
96 Create two bitmaps with the size equal with the composition.
97 Draw something on the screen.
98 Use legacy API CopyScreenToBitmap() to copy the screen to first bitmap.
99 Use the the new API to copy the composition of the screen.
102 @SYMTestExpectedResults The bitmap should be identical
104 void CWSGceCsc::GRAPHICS_WSERV_CSC_101L()
106 TRect screen(iScreenDevice->SizeInPixels());
107 RWindow nonSurfacedWindow(iSession);
108 iTestName.Format(_L("GRAPHICS_WSERV_CSC_101L"));
110 INFO_PRINTF2(_L("%S"),&iTestName);
111 iDisplayMode = iScreenDevice->DisplayMode(); // Get default display mode
113 ConstructOpaqueWindowLC(nonSurfacedWindow,
121 MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
122 ASSERT_NOT_NULL(csc);
124 TSize compositionScreenSize;
126 User::LeaveIfError(csc->GetCompositedSize(compositionScreenSize));
128 CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
129 CleanupStack::PushL(bmp1);
130 User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
132 CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
133 CleanupStack::PushL(bmp2);
134 User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor16MU));
139 iScreenDevice->CopyScreenToBitmap(bmp1);
140 User::LeaveIfError(csc->ComposeScreen(*bmp2));
142 SetBackgroundColorWindow(nonSurfacedWindow, iRed);
147 iGc->Activate(nonSurfacedWindow);
148 iGc->BitBlt(TPoint(0, 0), bmp1);
153 SetBackgroundColorWindow(nonSurfacedWindow, iWhite);
157 iGc->Activate(nonSurfacedWindow);
158 iGc->BitBlt(TPoint(0, 0), bmp2);
163 ASSERT_TRUE(Compare(*bmp1, *bmp2));
165 if (GCEIsSupported())
167 iUtility->DestroyAll();
170 CleanupStack::PopAndDestroy(bmp2);
171 CleanupStack::PopAndDestroy(bmp1);
172 CleanupStack::PopAndDestroy(&nonSurfacedWindow);
177 void CWSGceCsc::DrawBasicPattern (RWindow& aWin)
179 TSize rectSize(100, 100);
183 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
184 iGc->SetBrushColor(KRgbDarkRed);
185 iGc->DrawRect(TRect(TPoint(35, 5), rectSize));
186 iGc->SetBrushColor(KRgbBlack);
187 iGc->DrawRect(TRect(TPoint(55, 15), rectSize));
188 iGc->SetBrushColor(KRgbDarkBlue);
189 iGc->DrawRect(TRect(TPoint(75, 35), rectSize));
190 iGc->SetBrushColor(KRgbYellow);
191 iGc->DrawRect(TRect(TPoint(95, 55), rectSize));
199 @SYMTestCaseID GRAPHICS_WSERV_CSC_102L
201 @SYMTestCaseDesc Compare the screen composition using the new and legacy API
205 @SYMTestStatus Implemented
209 @SYMTestPurpose To check that the screen composition retrieved using the new and legacy APIs
211 @SYMTestActions Initialization.
212 Draw a pattern on the screen
213 Retrieve to a bitmap the UI content using the legacy API
215 Display the retrieved content to a surface
216 Retrieve the composited content
217 Compare the UI content with the composited content
218 NOTE:assumes current screen mode is at 0 offset
220 @SYMTestExpectedResults The UI content should be identical with the composited content
222 void CWSGceCsc::GRAPHICS_WSERV_CSC_102L()
224 TRect screen(iScreenDevice->SizeInPixels());
225 RWindow testWindow(iSession);
226 RWindow surfacedTestWindow(iSession);
227 TSurfaceId surfaceID;
229 MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
230 ASSERT_NOT_NULL(csc);
232 TSize compositionScreenSize;
233 User::LeaveIfError(csc->GetCompositedSize(compositionScreenSize));
235 iTestName.Format(_L("GRAPHICS_WSERV_CSC_102"));
236 INFO_PRINTF2(_L("%S"),&iTestName);
238 iDisplayMode = iScreenDevice->DisplayMode();
240 TRAPD(err, surfaceID = iUtility->CreateSurfaceL(compositionScreenSize,
242 compositionScreenSize.iWidth * KBytesPerPixel));
243 ASSERT_EQUALS(err,KErrNone);
245 ConstructOpaqueWindowLC(testWindow,
249 compositionScreenSize);
254 CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
255 CleanupStack::PushL(bmp1);
256 User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
258 CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
259 CleanupStack::PushL(bmp2);
260 User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor16MU));
265 SetBackgroundColorWindow(testWindow, iWhite);
266 DrawBasicPattern (testWindow);
268 iScreenDevice->CopyScreenToBitmap(bmp1);
272 ConstructOpaqueSurfacedWindowLC(surfacedTestWindow,
276 compositionScreenSize,
279 TRAP(err,iUtility->FillSurfaceL(surfaceID, iCyan));
280 ASSERT_EQUALS(err,KErrNone);
284 TRAP(err, iUtility->CopyBitmapToSurfaceL(surfaceID, *bmp1));
285 ASSERT_EQUALS(err,KErrNone);
289 User::LeaveIfError(csc->ComposeScreen(*bmp2));
291 ASSERT_TRUE(Compare(*bmp1, *bmp2));
293 iUtility->DestroyAll();
294 CleanupStack::PopAndDestroy(&surfacedTestWindow);
295 CleanupStack::PopAndDestroy(bmp2);
296 CleanupStack::PopAndDestroy(bmp1);
297 CleanupStack::PopAndDestroy(&testWindow);
303 @SYMTestCaseID GRAPHICS_WSERV_CSC_103L
305 @SYMTestCaseDesc Test TranslateExtent
309 @SYMTestStatus Implemented
313 @SYMTestPurpose To check that the correct translated extent is returned to the client
315 @SYMTestActions Initialization
316 Change to app mode with offset and 90 degrees rotation
317 Translate a rectangle corresponding to the original app mode
318 Compare the expected rectangle with the translated rectangle
320 @SYMTestExpectedResults The translated rectangle should take into account the offset and rotation
321 and be equal to the expected rectangle
323 void CWSGceCsc::GRAPHICS_WSERV_CSC_103L()
325 TRect screen(iScreenDevice->SizeInPixels());
326 RWindow testWindow(iSession);
328 iTestName.Format(_L("GRAPHICS_WSERV_CSC_103L"));
329 INFO_PRINTF2(_L("%S"),&iTestName);
331 iDisplayMode = iScreenDevice->DisplayMode();
333 ConstructOpaqueWindowLC(testWindow,
341 // Get the screen modes
342 RArray<TInt> modeList;
343 TInt err = iScreenDevice->GetScreenSizeModeList(&modeList);
344 ASSERT_TRUE(err > 1); //2 modes expected
345 ASSERT_TRUE(modeList.Count() > 1); //2 modes expected
347 // The initial extent and the expected translated extent
348 TRect initial(TPoint(10,10), TSize(20,30));
349 TRect extent(initial);
350 TRect expected(TPoint(15,15), TSize(20,30));
352 // Change app mode to 5 pixels offset
353 iScreenDevice->SetAppScreenMode(modeList[1]);
354 iScreenDevice->SetScreenMode(modeList[1]);
358 TPoint origin = iScreenDevice->GetCurrentScreenModeScaledOrigin();
359 if(origin != TPoint(0,0))
361 // Calculate the new extent
362 MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
363 ASSERT_NOT_NULL(csc);
364 csc->TranslateExtent(initial, extent);
365 ASSERT_TRUE(extent == expected);
369 INFO_PRINTF1(_L("Non zero offset not supported"));
372 iScreenDevice->SetAppScreenMode(modeList[0]);
373 iScreenDevice->SetScreenMode(modeList[0]);
378 CleanupStack::PopAndDestroy(&testWindow);
384 @SYMTestCaseID GRAPHICS_WSERV_CSC_104L
386 @SYMTestCaseDesc Compare the screen composition using bitmaps with different display modes
390 @SYMTestStatus Implemented
394 @SYMTestPurpose To check that bitmaps with different display modes
396 @SYMTestActions Initialization.
397 Draw a pattern on the screen
398 Retrieve to a bitmap the UI content using the legacy API
400 Display the retrieved content to a surface
401 Retrieve the composited content to a 2nd bitmap
402 Compare the UI content with the composited content
404 @SYMTestExpectedResults The bitmaps format should not match and should return KErrArgument
406 void CWSGceCsc::GRAPHICS_WSERV_CSC_104L()
408 TRect screen(iScreenDevice->SizeInPixels());
409 RWindow testWindow(iSession);
410 RWindow surfacedTestWindow(iSession);
411 TSurfaceId surfaceID;
413 MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
414 ASSERT_NOT_NULL(csc);
416 TSize compositionScreenSize;
417 User::LeaveIfError(csc->GetCompositedSize(compositionScreenSize));
419 iTestName.Format(_L("GRAPHICS_WSERV_CSC_102"));
420 INFO_PRINTF2(_L("%S"),&iTestName);
422 iDisplayMode = iScreenDevice->DisplayMode();
424 TRAPD(err, surfaceID = iUtility->CreateSurfaceL(compositionScreenSize,
426 compositionScreenSize.iWidth * KBytesPerPixel));
427 ASSERT_EQUALS(err,KErrNone);
429 ConstructOpaqueWindowLC(testWindow,
433 compositionScreenSize);
438 CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
439 CleanupStack::PushL(bmp1);
440 User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
442 // Invalid bitmap display mode
443 CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
444 CleanupStack::PushL(bmp2);
445 User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor256));
450 // Draw a pattern using WServ
451 SetBackgroundColorWindow(testWindow, iWhite);
453 TSize rectSize(100, 100);
454 testWindow.Invalidate();
455 testWindow.BeginRedraw();
456 iGc->Activate(testWindow);
457 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
458 iGc->SetBrushColor(KRgbDarkRed);
459 iGc->DrawRect(TRect(TPoint(35, 5), rectSize));
460 iGc->SetBrushColor(KRgbBlack);
461 iGc->DrawRect(TRect(TPoint(55, 15), rectSize));
462 iGc->SetBrushColor(KRgbDarkBlue);
463 iGc->DrawRect(TRect(TPoint(75, 35), rectSize));
464 iGc->SetBrushColor(KRgbYellow);
465 iGc->DrawRect(TRect(TPoint(95, 55), rectSize));
467 testWindow.EndRedraw();
471 iScreenDevice->CopyScreenToBitmap(bmp1);
475 ConstructOpaqueSurfacedWindowLC(surfacedTestWindow,
479 compositionScreenSize,
482 TRAP(err,iUtility->FillSurfaceL(surfaceID, iCyan));
483 ASSERT_EQUALS(err,KErrNone);
487 TRAP(err, iUtility->CopyBitmapToSurfaceL(surfaceID, *bmp1));
488 ASSERT_EQUALS(err,KErrNone);
492 // negative test, it should fail wit KErrArgument
493 TInt ret = csc->ComposeScreen(*bmp2);
494 ASSERT_EQUALS(ret, KErrArgument);
496 iUtility->DestroyAll();
497 CleanupStack::PopAndDestroy(&surfacedTestWindow);
498 CleanupStack::PopAndDestroy(bmp2);
499 CleanupStack::PopAndDestroy(bmp1);
500 CleanupStack::PopAndDestroy(&testWindow);
506 @SYMTestCaseID GRAPHICS_WSERV_CSC_105L
507 @SYMTestCaseDesc Correct bitmap size returned when in small screen mode
510 @SYMTestStatus Implemented
512 @SYMTestPurpose Checking GetCompositedSize is correct on gce & acceptable behaviour in non gce mode
513 @SYMTestActions For every available screen mode
514 Get size from GetCompositedSize
515 Draw some coloured rectangles on screen
516 If gce, do a full screen surface, and paste the coloured rectangles into the surface
517 ComposeScreen - bitmap 1 should be the same as bitmap 2
518 Note - non GCE mode - GetCompositedSize returns unrotated appmode size, so only
519 compares the intersection of that with actual screen size
520 Note - gce mode - GetCompositedSize returns actual rotated screen size, so
521 does a complete screen comparison
522 @SYMTestExpectedResults All asserts should complete. Comparison should succeed!
524 void CWSGceCsc::GRAPHICS_WSERV_CSC_105L()
526 iTestName.Format(_L("GRAPHICS_WSERV_CSC_105"));
527 INFO_PRINTF2(_L("%S"),&iTestName);
530 RArray<TInt> screenModes;
531 err = iScreenDevice->GetScreenSizeModeList(&screenModes);
532 ASSERT_TRUE (err > 0);
533 //get first mode info
534 TPixelsAndRotation firstModeInfo;
535 iScreenDevice->GetScreenModeSizeAndRotation(screenModes[0],firstModeInfo);
537 //make sure csc is available
538 MTestScreenCapture* csc = static_cast<MTestScreenCapture*> (iScreenDevice->GetInterface(MTestScreenCapture::KUidTestScreenCaptureIf));
539 ASSERT_NOT_NULL(csc);
541 TBool differentSizes = EFalse;
542 TSizeMode currentModeInfo;
543 TSize compositionScreenSize;
544 //for every screen mode
545 for (TInt ii = 0; ii < screenModes.Count(); ++ii && !differentSizes)
548 iScreenDevice->SetAppScreenMode(screenModes[ii]);
549 iScreenDevice->SetScreenMode(screenModes[ii]);
553 currentModeInfo = iScreenDevice->GetCurrentScreenModeAttributes();
554 if (currentModeInfo.iScreenSize.iWidth != firstModeInfo.iPixelSize.iWidth ||
555 currentModeInfo.iScreenSize.iHeight != firstModeInfo.iPixelSize.iHeight ||
556 currentModeInfo.iRotation != firstModeInfo.iRotation)
557 { //note that we have modes of different sizes / rotations
558 differentSizes = ETrue;
561 RWindow testWindow(iSession);
562 RWindow surfacedTestWindow(iSession);
563 TSurfaceId surfaceID;
565 err = csc->GetCompositedSize(compositionScreenSize);
566 ASSERT_EQUALS (err,KErrNone);
567 iDisplayMode = iScreenDevice->DisplayMode();
569 if (GCEIsSupported())
571 TRAP(err, surfaceID = iUtility->CreateSurfaceL(compositionScreenSize,
573 compositionScreenSize.iWidth * KBytesPerPixel));
574 ASSERT_EQUALS(err,KErrNone);
577 //create a basic window
578 ConstructOpaqueWindowLC(testWindow,
581 -currentModeInfo.iOrigin,
582 compositionScreenSize); //negative origin to ensure it fills screen, not app mode area
586 //bitmap 1 to compare against
587 CFbsBitmap *bmp1 = new (ELeave) CFbsBitmap;
588 CleanupStack::PushL(bmp1);
589 User::LeaveIfError(bmp1->Create(compositionScreenSize, EColor16MU));
590 //bitmap 2 to pass into csc
591 CFbsBitmap *bmp2 = new (ELeave) CFbsBitmap;
592 CleanupStack::PushL(bmp2);
593 User::LeaveIfError(bmp2->Create(compositionScreenSize, EColor16MU));
595 //draw coloured rectangles in the test window
596 SetBackgroundColorWindow(testWindow, iWhite);
597 DrawBasicPattern (testWindow);
599 //copy screen to bitmap 1
600 err = iScreenDevice->CopyScreenToBitmap(bmp1);
601 ASSERT_EQUALS (err,KErrNone);
605 if (GCEIsSupported())
606 { //place a window with a surface into the screen
607 ConstructOpaqueSurfacedWindowLC(surfacedTestWindow,
610 -currentModeInfo.iOrigin,
611 compositionScreenSize,
612 surfaceID); //negative origin to ensure it fills screen,not app mode area
614 //make surface boring cyan
615 TRAP(err,iUtility->FillSurfaceL(surfaceID, iCyan));
616 ASSERT_EQUALS(err,KErrNone);
620 //paste bitmap 1 contents into the surface
621 TRAP(err, iUtility->CopyBitmapToSurfaceL(surfaceID, *bmp1));
622 ASSERT_EQUALS(err,KErrNone);
627 //use csc to get a copy of the screen
628 err = csc->ComposeScreen(*bmp2);
629 ASSERT_EQUALS (err, KErrNone);
631 //should match the original bitmap copy of the screen
632 ASSERT_TRUE(Compare(*bmp1, *bmp2));
634 if (GCEIsSupported())
636 iUtility->DestroyAll();
637 CleanupStack::PopAndDestroy(&surfacedTestWindow);
641 surfacedTestWindow.Close();
643 CleanupStack::PopAndDestroy(bmp2);
644 CleanupStack::PopAndDestroy(bmp1);
645 CleanupStack::PopAndDestroy(&testWindow);
651 INFO_PRINTF1(_L("Didn't find screen modes of different sizes - test inconclusive"));
653 iScreenDevice->SetAppScreenMode(screenModes[0]);
654 iScreenDevice->SetScreenMode(screenModes[0]);