Update contrib.
1 // Copyright (c) 1996-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.
14 // Screen device test code
21 @internalComponent - Internal Symbian test code
24 #include "TSCRDEVRESSWITCH.H"
26 //Define this to get visible pauses (in test 6: DeviceResSwitchL)
27 //#define VISIBLE_PAUSES
29 //Define this to get extra logging which may be useful in tracking down a fail
30 //#define EXTRA_LOGGING
32 CTScreenDeviceResSwitch::CTScreenDeviceResSwitch(CTestStep* aStep) : CTWsGraphicsBase(aStep)
35 CTScreenDeviceResSwitch::~CTScreenDeviceResSwitch()
38 void CTScreenDeviceResSwitch::ConstructL()
40 //The following is just another test... it doesn't leave any resources for use by the test class AFAICT...
42 CWsScreenDevice *device1;
43 CWsScreenDevice *device2;
44 CWsScreenDevice *device3;
47 device1=new(ELeave) CWsScreenDevice(aSession);
48 device1->Construct(iTest->iScreenNumber);
50 device1=new(ELeave) CWsScreenDevice(aSession);
51 device1->Construct(iTest->iScreenNumber);
52 device2=new(ELeave) CWsScreenDevice(aSession);
53 device2->Construct(iTest->iScreenNumber);
54 device3=new(ELeave) CWsScreenDevice(aSession);
55 device3->Construct(iTest->iScreenNumber);
58 User::LeaveIfError(device1->GetNearestFontToDesignHeightInTwips((CFont *&)font,TFontSpec()));
59 RWindowGroup group(aSession);
61 group.SetOwningWindowGroup(TheClient->iGroup->GroupWin()->Identifier());
62 RWindow win(aSession);
63 win.Construct(group,77);
64 CWindowGc *gc=new(ELeave) CWindowGc(device1);
68 device1->ReleaseFont(font);
79 class CPrimaryColoursWin : public CTWin
82 enum //various size factors
87 kPlotWithMargin=kPlotSize+kPlotMargin,
90 kMinWidth=kPlotWithMargin*kPlotsAccross+kPlotMargin,
91 kMinHeight=kPlotWithMargin*kPlotsDown+kPlotMargin,
97 ~CPrimaryColoursWin();
98 //Virtual Function from CTBaseWin
100 TInt CountUniquePlottedColours();
103 TBool iBadPixels[KNumChannels][KNumColours];
104 TBuf<0x40> iDisplayText;
107 CPrimaryColoursWin::CPrimaryColoursWin()
109 for (TInt channelnum=0;channelnum<KNumChannels;channelnum++)
111 for (TInt colour=0;colour<KNumColours;colour++)
113 iBadPixels[channelnum][colour]=EFalse;
118 iDisplayText.Format(_L("Test text"));
121 CPrimaryColoursWin::~CPrimaryColoursWin()
126 void CPrimaryColoursWin::Draw()
128 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
129 iGc->SetPenStyle(CGraphicsContext::ESolidPen);
130 iGc->SetPenColor(TRgb(255, 255, 255));
131 iGc->SetBrushColor(TRgb(0, 0, 0));
132 TSize winSize = Size();
133 iGc->DrawRect(TRect(winSize));
136 TFontSpec fontSpec(_L(""), 300);
137 TheClient->iScreen->GetNearestFontInTwips(font, fontSpec);
142 TRect r(TPoint(0, 0), Size());
143 r.Shrink(kMinHeight, kMinHeight);
144 iGc->DrawText(iDisplayText, r, font->AscentInPixels(), iGc->ECenter, 0);
146 TheClient->iScreen->ReleaseFont(font);
150 TPoint lhsAbs = Win()->AbsPosition();
152 for(TInt channelnum = 0, channelmul = 1, xoordinate = kPlotMargin; channelnum < KNumChannels; channelnum++, channelmul <<= 8, xoordinate += kPlotWithMargin)
154 TRgb lastPixel(255, 255, 255, 255);
156 for(TInt colour = 0; colour < KNumColours; colour++)
158 if(!iBadPixels[channelnum][colour])
160 iGc->SetPenColor(TRgb(colour * channelmul));
164 iGc->SetPenColor(TRgb(255, 255, 255));
167 TPoint point = TPoint(xoordinate + (colour & 0x0f), kPlotMargin + (colour >> 4));
175 TInt CPrimaryColoursWin::CountUniquePlottedColours()
178 TPoint lhsAbs = Win()->AbsPosition();
180 for(TInt channelnum = 0, channelmul = 1, xoordinate = kPlotMargin; channelnum < 3; channelnum++, channelmul <<=8 , xoordinate += kPlotWithMargin)
182 TRgb lastPixel(255, 255, 255, 255);
184 for(TInt colour = 0; colour < 256; colour++)
187 TPoint point = TPoint(xoordinate + (colour & 0x0f), kPlotMargin + (colour >> 4));
188 TheClient->iScreen->GetPixel(readPixel, lhsAbs + point);
190 if(readPixel != lastPixel)
192 lastPixel = readPixel;
194 iBadPixels[channelnum][colour] = EFalse;
198 iBadPixels[channelnum][colour] = ETrue;
207 Intended primarily as a visual check that the mode is displayed correctly,
208 for each rotated mode.
210 void CTScreenDeviceResSwitch::DeviceResSwitchWithRotationsL()
212 CWsScreenDevice *screen=TheClient->iScreen;
213 TInt originalScreenMode = screen->CurrentScreenMode();
214 TPixelsTwipsAndRotation originalModeSettings;
215 screen->GetScreenModeSizeAndRotation(originalScreenMode,originalModeSettings);
216 CArrayFixFlat<TInt> *rotations=new(ELeave) CArrayFixFlat<TInt>(1);
217 CleanupStack::PushL(rotations);
218 INFO_PRINTF2(_L("ScreenMode and rotation with colour depth. ScreenModes=%i"),TheClient->iScreenModes.Count());
220 for (TInt rr=0,maxrr=3;rr<maxrr;++rr)
221 for (TInt ii=0,maxii=TheClient->iScreenModes.Count();ii<maxii;++ii)
223 TInt newMode=TheClient->iScreenModes[ii];
224 if ( screen->GetScreenModeOrigin(ii)!=TPoint(0,0) || screen->GetScreenModeScale(ii)!=TSize(1,1) )
226 INFO_PRINTF2(_L("ScreenMode %i skipped: has scalind and/ or rotation"),ii);
227 INFO_PRINTF1(_L("This scaling code is known to be broken if all modes do not support scaling"));
228 INFO_PRINTF1(_L("See defect DEF111847 and break request 2226"));
229 INFO_PRINTF5(_L("Origin: %i %i Scale %i %i"),
230 screen->GetScreenModeOrigin(ii).iX,screen->GetScreenModeOrigin(ii).iY,
231 screen->GetScreenModeScale(ii).iWidth,screen->GetScreenModeScale(ii).iHeight
236 screen->SetAppScreenMode(newMode);
237 screen->SetScreenMode(newMode);
238 TInt currentScreenMode = screen->CurrentScreenMode();
239 TEST(currentScreenMode == newMode);
241 User::LeaveIfError(screen->GetRotationsList(newMode,rotations));
242 INFO_PRINTF4(_L("ScreenMode and rotation with colour depth. Mode#%i=%i. Rotations=%i"),ii,newMode,rotations->Count());
243 TPixelsTwipsAndRotation currentModeSettings;
244 screen->GetDefaultScreenSizeAndRotation(currentModeSettings);
245 screen->SetScreenSizeAndRotation(currentModeSettings);
246 for (TInt jj=0,maxjj=rotations->Count();jj<maxjj;jj++)
248 CFbsBitGc::TGraphicsOrientation newOrientation=STATIC_CAST(CFbsBitGc::TGraphicsOrientation,rotations[0][jj]);
249 INFO_PRINTF3(_L("ScreenMode and rotation with colour depth. Rotation#%i=%i(0..3)"),jj,newOrientation);
250 screen->SetCurrentRotations(newMode,newOrientation);
251 TheClient->iWs.Flush();
253 TPixelsAndRotation modeSettings;
254 TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
255 TRect screenRect(TPoint(0,0),modeSettings.iPixelSize);
257 //move the debug windows to inside the area
258 //actually don't bother yet!
259 if (screenRect.Width()>screenRect.Height())
267 screen->SetCurrentRotations(newMode,currentModeSettings.iRotation);
268 screen->SetScreenSizeAndRotation(currentModeSettings);
271 CleanupStack::PopAndDestroy();
272 screen->SetScreenMode(originalScreenMode);
273 screen->SetCurrentRotations(originalScreenMode,originalModeSettings.iRotation);
274 screen->SetScreenSizeAndRotation(originalModeSettings);
278 Intended primarily as a visual check that the mode is displayed correctly,
279 this code also verifies that the number of physical colours matches the reported mode.
280 Note that although written to test GCE, this test is general and applies to all display versions.
282 void CTScreenDeviceResSwitch::DeviceResSwitchL()
284 INFO_PRINTF1(_L("DeviceResSwitchL: Entering function"));
285 TInt error = KErrNone;
286 TInt isTransparencySupportedResult = KErrNone;
288 TRAP(error, isTransparencySupportedResult = IsTransparencySupportedL());
290 if(error != KErrNone)
292 INFO_PRINTF1(_L("DeviceResSwitchL: Transparency is not supported. Exits."));
296 TRAP(error, CalculateDisplayPropertiesL());
298 if(error != KErrNone)
300 INFO_PRINTF1(_L("DeviceResSwitchL: Could not calculate display properties. Test not supported. Exits."));
304 TDisplayMode startDisplayMode = TheClient->iScreen->DisplayMode();
305 TInt startColoursPixel = TDisplayModeUtils::NumDisplayModeColors(startDisplayMode);
307 TPixelsAndRotation modeSettings;
308 TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
309 TRect r(TPoint(0, 0), modeSettings.iPixelSize);
311 // Starts off full-screen. Only shrink it if it will still be large enough to run the test
312 // It should be... the test only needs 60x20 pixels
314 if(r.Width() > r.Height())
316 if(r.Width() > (CPrimaryColoursWin::kMinWidth) * (CPrimaryColoursWin::kShrinkFactor-2) * 3 / (CPrimaryColoursWin::kShrinkFactor * 2))
318 r.iTl.iX = r.iBr.iX / 3;
323 if (r.Height() > (CPrimaryColoursWin::kMinHeight) * (CPrimaryColoursWin::kShrinkFactor - 2) * 3/ (CPrimaryColoursWin::kShrinkFactor * 2))
325 r.iTl.iY = r.iBr.iY / 3;
328 if(r.Width() > (CPrimaryColoursWin::kMinWidth) * (CPrimaryColoursWin::kShrinkFactor - 2) / CPrimaryColoursWin::kShrinkFactor)
330 if(r.Height() > (CPrimaryColoursWin::kMinHeight) * (CPrimaryColoursWin::kShrinkFactor - 2) / CPrimaryColoursWin::kShrinkFactor)
332 r.Shrink(r.Width() / CPrimaryColoursWin::kShrinkFactor, r.Height() / CPrimaryColoursWin::kShrinkFactor);
336 for(TInt i = 0; i < EColorLast; i++)
338 TDisplayMode tryMode = TDisplayMode(i);
339 TInt tryColoursPixel = NumDisplayModeColors(tryMode);
341 INFO_PRINTF3(_L("DeviceResSwitchL: tryColoursPixel = %d, tryMode = %d"), tryColoursPixel, tryMode);
343 if(TDisplayModeUtils::IsDisplayModeColor(tryMode) && startColoursPixel <= tryColoursPixel)
345 //Create a test window at this mode, and see if it changes the screen mode
346 { // The braces define the lifetime of testWin. It must be destroyed before we check if mode changed back successfully.
348 CPrimaryColoursWin* testWin1 = new (ELeave) CPrimaryColoursWin;
349 CleanupStack::PushL(testWin1);
351 TInt expectedColoursPerChannel = 1;
354 testWin1->SetUpL(r.iTl, r.Size(), TheClient->iGroup, *TheClient->iGc, &tryMode);
355 TheClient->iWs.Flush();
356 TDisplayMode newDisplayMode = TheClient->iScreen->DisplayMode();
358 TEST(TDisplayModeUtils::NumDisplayModeColors(newDisplayMode) >= tryColoursPixel);
360 if(!(TDisplayModeUtils::NumDisplayModeColors(newDisplayMode) >= tryColoursPixel))
362 ERR_PRINTF3(_L("testWin1: newDisplayMode = %d, tryColoursPixel = %d"), newDisplayMode, tryColoursPixel);
365 // Estimate the minimum number of shades of primary colours given the bits per pixel.
366 // The maximum is twice this. Very appoximate but seems to work OK for 256 colours. Probably not good for grey modes.
367 for(tt = tryColoursPixel; tt >= 8; tt >>= 3)
369 expectedColoursPerChannel <<= 1;
372 // Draw some test data on the test window.
374 TheClient->iWs.Flush();
376 #ifdef VISIBLE_PAUSES
377 TheClient->StdLogWindow().LogMessage(EFalse, _L("Mode: "), tryMode);
378 User::After(1000000);
380 TInt numUniqueColours = testWin1->CountUniquePlottedColours();
381 INFO_PRINTF2(_L("testWin1: numUniqueColours = %d"), numUniqueColours);
383 TheClient->StdLogWindow().LogMessage(EFalse, _L("Channel Colours: "), numUniqueColours);
384 TheClient->iWs.Flush();
386 #ifdef VISIBLE_PAUSES
387 User::After(1000000);
389 // Read it back and see if it has the expected quality
390 TEST(numUniqueColours >= (expectedColoursPerChannel * 3));
392 if(!(numUniqueColours >= (expectedColoursPerChannel * 3)))
394 ERR_PRINTF3(_L("testWin1: numUniqueColours = %d, (expectedColoursPerChannel * 3) = %d"), numUniqueColours, (expectedColoursPerChannel * 3));
398 * Defect 107176 was rejected. This test for transparency is therefore removed.
401 if (false) //newDisplayMode != startDisplayMode) // Hide the window under a startmode window and see if we switch back?
402 if (isTransparencySupportedResult==KErrNone && newDisplayMode != startDisplayMode) // Hide the window under a startmode window and see if we switch back?
404 * Defect 107176 was rejected. This test for transparency is therefore removed.
405 * The crash demonstrated by this code is related to the inconsistant support for origin and scale
406 * See defect DEF111847 and break request 2226
408 if (false) //newDisplayMode != startDisplayMode) // Hide the window under a startmode window and see if we switch back?
410 // Demonstration of defect 107176
411 // Create a translucent window which obscures the high-colour window
412 // The existing code reduces the display colour depth because it thinks the obscured window is not visible any more
413 // However, the obscured window is actually visible trough the transparency
414 CPrimaryColoursWin* testWin2 = new (ELeave) CPrimaryColoursWin;
415 CleanupStack::PushL(testWin2);
417 testWin2->SetUpL(r.iTl - TPoint(20,20), r.Size() + TSize(40,40), TheClient->iGroup, *TheClient->iGc, &startDisplayMode, ETrue, 0x80);
418 TheClient->iWs.Flush();
420 TheClient->iWs.Flush();
422 TDisplayMode newnewDisplayMode = TheClient->iScreen->DisplayMode();
423 TInt newNumUniqueColours = testWin2->CountUniquePlottedColours();
424 INFO_PRINTF2(_L("testWin2: newNumUniqueColours = %d"), newNumUniqueColours);
426 TEST(newnewDisplayMode == newDisplayMode);
428 if(!(newnewDisplayMode == newDisplayMode))
430 ERR_PRINTF3(_L("testWin2: newnewDisplayMode = %d, newDisplayMode = %d"), newnewDisplayMode, newDisplayMode);
434 TheClient->iWs.Flush();
436 #ifdef VISIBLE_PAUSES
437 User::After(1000000);
439 TheClient->iWs.Flush();
441 CleanupStack::PopAndDestroy(testWin2);
445 CleanupStack::PopAndDestroy(testWin1);
449 TDisplayMode afterDisplayMode = TheClient->iScreen->DisplayMode();
450 TEST(afterDisplayMode == startDisplayMode);
452 if(afterDisplayMode != startDisplayMode)
454 ERR_PRINTF3(_L("DeviceResSwitchL: Original colour depth not restored. Was %i, now %i (TDisplayMode)"), startDisplayMode, afterDisplayMode);
457 #ifdef VISIBLE_PAUSES
458 User::After(1000000);
463 INFO_PRINTF1(_L("DeviceResSwitchL: Returning from function"));
466 void CTScreenDeviceResSwitch::CalculateDisplayPropertiesL()
468 INFO_PRINTF1(_L("CalculateDisplayPropertiesL: Entering function"));
470 TDisplayMode tryMode = (TDisplayMode) (EColorLast - 1);
471 TPixelsAndRotation modeSettings;
472 TheClient->iScreen->GetDefaultScreenSizeAndRotation(modeSettings);
473 TRect r(TPoint(0, 0), modeSettings.iPixelSize);
475 CPrimaryColoursWin* tempWin = new (ELeave) CPrimaryColoursWin;
476 CleanupStack::PushL(tempWin);
478 tempWin->SetUpL(r.iTl, r.Size(), TheClient->iGroup, *TheClient->iGc, &tryMode);
479 TheClient->iWs.Flush();
481 iMaxDisplayMode = TheClient->iScreen->DisplayMode();
482 INFO_PRINTF2(_L("CalculateDisplayPropertiesL: iMaxDisplayMode %d"), iMaxDisplayMode);
483 iMaxDisplayModeColors = TDisplayModeUtils::NumDisplayModeColors(iMaxDisplayMode);
484 INFO_PRINTF2(_L("CalculateDisplayPropertiesL: iMaxDisplayModeColors %d"), iMaxDisplayModeColors);
486 CleanupStack::PopAndDestroy(tempWin);
487 INFO_PRINTF1(_L("CalculateDisplayPropertiesL: Returning from function"));
490 TInt CTScreenDeviceResSwitch::NumDisplayModeColors(TDisplayMode aDispMode)
492 TInt dispModeColors = TDisplayModeUtils::NumDisplayModeColors(aDispMode);
494 if(dispModeColors > iMaxDisplayModeColors)
496 return iMaxDisplayModeColors;
499 return dispModeColors;
502 TInt CTScreenDeviceResSwitch::IsTransparencySupportedL()
504 INFO_PRINTF1(_L("IsTransparencySupportedL: Entering function"));
505 // Creates a window and sets the transparency, if this feature
506 // is not enabled, KErrNotSupported will be returned
507 const TRgb KTransparencyColor(85,85,85);
508 RWindow win(TheClient->iWs);
509 win.Construct(*TheClient->iGroup->GroupWin(), ENullWsHandle);
510 win.SetExtent(TPoint(0,0), TSize(50,50));
511 win.SetRequiredDisplayMode(EColor256);
512 TInt ret = win.SetTransparencyFactor(KTransparencyColor);
517 INFO_PRINTF1(_L("IsTransparencySupportedL: Transparency is supported"));
521 INFO_PRINTF1(_L("IsTransparencySupportedL: Transparency is not supported"));
524 INFO_PRINTF1(_L("IsTransparencySupportedL: Returning from function"));
528 void CTScreenDeviceResSwitch::RunTestCaseL(TInt /*aCurTestCase*/)
530 ((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
531 switch(++iTest->iState)
534 @SYMTestCaseID GRAPHICS-WSERV-0440
538 @SYMTestCaseDesc Intended primarily as a visual check that the mode is displayed correctly. Checks correct display mode is set.
539 The test also verifies that the number of physical colours matches the reported mode.
540 Note that although written to test GCE, this test is general and applies to all display versions.
542 @SYMTestPriority High
544 @SYMTestStatus Implemented
546 @SYMTestActions Creates a windows with a higher display mode. Then creates a transparent
547 window with lower display mode that completely covers the first window.
548 Checks the display mode is not changed to the lower diplay mode when
549 the higher display mode window is visible through transparency.
551 @SYMTestExpectedResults The higher display mode should still be set after the second window is drawn.
554 ((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0440"));
555 iTest->LogSubTest(_L("Device resolution switching"));
559 @SYMTestCaseID GRAPHICS-WSERV-0520
561 @SYMTestCaseDesc Test for device switching when mode increased.
563 @SYMTestActions Windows are created in increasing modes and pixel colours written and read back.
564 This code verifies that the mode change actually takes place.
565 I am using this visually to verify that the new GCE is actually changing the mode.
569 ((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0520"));
570 iTest->LogSubTest(_L("More device resolution switching"));
571 DeviceResSwitchWithRotationsL();
574 ((CTScreenDeviceResSwitchStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
575 ((CTScreenDeviceResSwitchStep*)iStep)->CloseTMSGraphicsStep();
578 ((CTScreenDeviceResSwitchStep*)iStep)->RecordTestResultL();
581 __WS_CONSTRUCT_STEP__(ScreenDeviceResSwitch)