Update contrib.
1 // Copyright (c) 2007-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.
22 #include "t_wservintegstepbasic.h"
23 #include <test/tefunit.h>
24 #include <e32const.h> //KNullUidValue
25 #include <pixelformats.h>
27 namespace t_wservintegstepbasic
29 static const TUint delay=100000; //0.5 sec
31 const TInt KSurfaceWidth = 50;
32 const TInt KSurfaceHeight = 50;
33 const TUidPixelFormat KSurfaceFormat = EUidPixelFormatXRGB_8888;
34 const TInt KBytesPerPixel = 4; // Four bytes per pixel for the format above.
36 // Events delivered to this handle are thrown away
37 const TUint32 ENullWsHandle = 0xFFFFFFFF;
38 _LIT(KT_WServIntegStepBasicTestId,"testid");
39 _LIT(KT_BasicStepPanicTxt, "t_wservintegstepbasic");
42 using namespace t_wservintegstepbasic;
44 CT_WServIntegStepBasic::CT_WServIntegStepBasic()
46 SetTestStepName(KT_WServIntegStepBasic);
50 CT_WServIntegStepBasic::~CT_WServIntegStepBasic()
60 enum TVerdict CT_WServIntegStepBasic::doTestStepPreambleL()
62 TVerdict ret=CTestStep::doTestStepPreambleL();
64 if ( !GetIntFromConfig( ConfigSection(), KT_WServIntegStepBasicTestId, iTestId ) )
66 User::Leave(KErrNotFound);
70 User::LeaveIfError(iWsSession.Connect());
71 iScreen = new (ELeave) CWsScreenDevice(iWsSession);
72 User::LeaveIfError(iScreen->Construct());
73 iWinGroup = RWindowGroup(iWsSession);
74 User::LeaveIfError(iWinGroup.Construct(ENullWsHandle) );
75 iWinGroup.AutoForeground(ETrue);
76 iGc = new (ELeave) CWindowGc(iScreen);
77 User::LeaveIfError(iGc->Construct());
83 enum TVerdict CT_WServIntegStepBasic::doTestStepPostambleL()
85 return TestStepResult();
90 More detail on each test step can be
91 found in the respective script file.
93 @return TVerdict pass / fail
97 enum TVerdict CT_WServIntegStepBasic::doTestStepL()
102 RBlankWindow blankWin;
107 Graphics_Wserv_Gce_1L(win);
110 Graphics_Wserv_Gce_2L(blankWin);
113 Graphics_Wserv_Gce_3L();
116 Graphics_Wserv_Gce_4L(win);
119 Graphics_Wserv_Gce_5L(win);
122 Graphics_Wserv_Gce_6L(win);
125 //Test removed in CR1489
128 //Test removed in CR1489
131 //Test removed in CR1489
134 //Test removed in CR1489
137 Graphics_Wserv_Gce_11L(win);
140 //Test removed in CR1489
143 Graphics_Wserv_Gce_13L(win);
146 //Test removed in CR1489
149 Graphics_Wserv_Gce_15L(win);
152 //Test removed in CR1489
155 Graphics_Wserv_Gce_17L(win);
158 //Test removed in CR1489
161 Graphics_Wserv_Gce_19L(win);
164 //Test removed in CR1489
167 Graphics_Wserv_Gce_21L(win);
170 Graphics_Wserv_Gce_22L(win);
173 //Test removed in CR1489
176 //Test removed in CR1489
179 //Test removed in CR1489
182 //Test removed in CR1489
185 //Test removed in CR1489
188 //Test removed in CR1489
191 //Test removed in CR1489
194 //Test removed in CR1489
197 Graphics_Wserv_Gce_31L(blankWin);
200 Graphics_Wserv_Gce_32L(win);
203 Graphics_Wserv_Gce_33L(win);
206 Graphics_Wserv_Gce_34L(win);
209 Graphics_Wserv_Gce_35L(win);
212 Graphics_Wserv_Gce_36L(win);
215 //Test removed in CR1489
218 User::Panic(KT_BasicStepPanicTxt, KErrNotFound); //Unexpected value!
222 return TestStepResult();
225 //Test setting a surface as the background of a window
226 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_1L(RWindow& aWin)
228 CreateSurfaceL(iSurfaceId);
229 CreateRWindowL(aWin);
230 TEST(KErrNone==aWin.SetBackgroundSurface(iSurfaceId));
231 ForceWindowToRedraw(aWin);
235 //Test setting a surface as the background of a RBlankWindow
236 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_2L(RBlankWindow& aBlankWin)
238 CreateSurfaceL(iSurfaceId);
239 CreateRBlankWindowL(aBlankWin);
240 TEST(KErrNone==aBlankWin.SetBackgroundSurface(iSurfaceId));
241 ForceWindowToRedraw(aBlankWin);
246 //Negative test for setting a surface as the background of a RBackedUpWindow
247 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_3L()
249 CreateSurfaceL(iSurfaceId);
250 RBackedUpWindow backedUpWindow( iWsSession );
251 CleanupClosePushL( backedUpWindow );
252 User::LeaveIfError( backedUpWindow.Construct( iWinGroup, EColor16MA, ENullWsHandle) );
253 backedUpWindow.SetSizeErr( iScreen->SizeInPixels() );
254 backedUpWindow.SetVisible( ETrue );
255 backedUpWindow.Activate();
258 // Expect a panic here - TClientPanic::EWservPanicDrawable
259 backedUpWindow.SetBackgroundSurface( iSurfaceId );
261 CleanupStack::PopAndDestroy( &backedUpWindow );
264 //Test for moving a window with its background set
265 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_4L(RWindow& aWin)
267 // Create window and assign a surface to it
268 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
269 TSize scrSize(iScreen->SizeInPixels());
270 // move the window around
271 aWin.SetPosition( TPoint( (scrSize.iWidth)-KTempWindowWidth, 0) );
274 aWin.SetPosition( TPoint(aWin.Position().iX, (scrSize.iHeight)-KTempWindowHeight ));
277 aWin.SetPosition( TPoint(0, (scrSize.iHeight)-KTempWindowHeight) );
280 aWin.SetPosition(TPoint(0,0));
287 //Test moving a window with its background set partially and wholly offscreen
288 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_5L(RWindow& aWin)
290 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
291 TSize screenSize(iScreen->SizeInPixels());
292 // partially off screen
293 TUint xCord=(screenSize.iWidth-KTempWindowWidth)+(KTempWindowWidth/2);
294 TUint yCord=(screenSize.iHeight-KTempWindowHeight)+(KTempWindowHeight/2);
295 aWin.SetPosition(TPoint(xCord,yCord));
299 aWin.SetPosition( TPoint(screenSize.iWidth, screenSize.iHeight) );
306 //Test resizing a window with its background set to a surface
307 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_6L(RWindow& aWin)
309 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
310 TSize sz(aWin.Size());
311 aWin.SetSize( sz+TPoint(20,0) );
313 User::After( delay );
314 aWin.SetSize( sz+TPoint(0,20) );
316 User::After( delay );
317 aWin.SetSize( sz+TPoint(20,20) );
319 User::After( delay );
320 aWin.SetSize( TSize(KSurfaceWidth, KSurfaceHeight ) );
322 User::After( delay );
328 // Test Opaque drawing in front of a background surface
329 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_11L(RWindow& aWin)
331 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
332 // Opaque drawing on bkgd surface
333 DrawShape( aWin, 0x0000FF00 );
338 //Test Semi-transparent drawing in front of a background surface
339 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_13L(RWindow& aWin)
341 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
342 // semi Transp on bkgd surface
343 DrawShape( aWin, 0x8000FF00 );
348 //Test that an opaque window can be put in front of an Rwindow with background surface
349 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_15L(RWindow& aWin)
351 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
352 CleanupClosePushL(aWin);
353 // draw 2nd window partially over the first one
355 CreateRWindowL(win2, TPoint(10,10), KRgbGreen );
357 CleanupStack::PopAndDestroy(&aWin);
362 //Test that a semi-transparent window can be put in front of a Rwindow with surface
363 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_17L(RWindow& aWin)
365 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
366 CleanupClosePushL(aWin);
367 // draw semi Transp win partially over first win with surface
369 CreateRWindowL(win2, TPoint(10,10));
370 INFO_PRINTF1(_L("Destroy Surface"));
372 CleanupStack::PopAndDestroy(&aWin);
377 //Test updating a background surface
378 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_19L(RWindow& aWin)
380 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
381 CleanupClosePushL(aWin);
382 // create a 2nd surface
383 TSurfaceId surfaceId2;
384 CreateSurfaceL(surfaceId2, 0x0000FF00);
385 ASSERT_EQUALS( KErrNone, aWin.SetBackgroundSurface(surfaceId2) );
386 ForceWindowToRedraw(aWin);
387 TInt ret = iSurfaceManager.CloseSurface(surfaceId2);
390 INFO_PRINTF1(_L("Surface manager failed to close surface"));
392 // destroys iSurfaceId plus closes iSurfaceUpdateSession,iChunk,iSurfaceManager
394 CleanupStack::PopAndDestroy(&aWin);
397 //Test shape of a window is applied to window a surface
398 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_21L(RWindow& aWin)
400 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
401 TRect rc[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
402 RRegion region(2, rc);
403 aWin.SetShape( region );
404 User::After(delay); // For DEBUG
409 //Test that a valid key color is returned when a surface
410 //has been set as the background of a window
411 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_22L(RWindow& aWin)
413 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
414 TRgb colValue(aWin.KeyColor());
415 if ( aWin.DisplayMode()==EColor16MA || aWin.DisplayMode()==EColor16MAP )
417 TEST(aWin.KeyColor().Internal()==0x00000000);
421 TEST(aWin.KeyColor().Alpha()==0xFF);
426 //Test that the use of SetColor() i.e. with no parameters removes
427 //any surface assigned to the window
428 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_31L(RBlankWindow& aBlankWin)
430 CreateSurfaceL(iSurfaceId);
431 CreateRBlankWindowL(aBlankWin);
432 ASSERT_EQUALS(KErrNone, aBlankWin.SetBackgroundSurface(iSurfaceId));
433 ForceWindowToRedraw(aBlankWin);
434 aBlankWin.SetColor();
435 ForceWindowToRedraw(aBlankWin);
440 //Test that the shaped window maintains the surface when moved
441 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_32L(RWindow& aWin)
443 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
444 TRect rc[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
445 RRegion region(2, rc);
446 aWin.SetShape( region );
448 aWin.SetPosition( TPoint( aWin.Position().iX+10, aWin.Position().iY+10 ) );
455 //Test that window and surface scale to the new size when a shaped
456 //window with surface is resized
457 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_33L(RWindow& aWin)
459 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
460 TRect rc[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
461 RRegion region(2, rc);
462 aWin.SetShape( region );
464 aWin.SetSize( TSize(200,150) );
471 //Test that the background surface blends with the semi transparent window
472 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_34L(RWindow& aWin)
474 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
475 CleanupClosePushL(aWin);
476 ForceWindowToRedraw(aWin);
478 CreateRWindowL(win2,TPoint(10,0), 0x80A9B9C9);
479 // draw semi Transp on window bkgd
480 DrawShape( win2, 0x8000FF00 );
482 CleanupStack::PopAndDestroy(&aWin);
487 // Test that the corner style is applied to the window with surface
488 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_35L(RWindow& aWin)
490 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
491 aWin.SetCornerType( EWindowCorner5 );
498 Test that shaped windows with background surfaces arranged such that
499 the back window overlaps the front's bounding box, but not its shaped
500 region (e.g. the front is L-shaped and the back overlaps the area within
501 the 'L'). In this situation, the back window's surface should be visible
504 void CT_WServIntegStepBasic::Graphics_Wserv_Gce_36L(RWindow& aWin)
506 ASSERT_EQUALS( EPass, SetSurfaceL(aWin,iSurfaceId));
507 CleanupClosePushL(aWin);
508 TRect rc1[2] = { TRect(110,20,150,80),TRect(150,60,200,100) };
509 RRegion region1(2, rc1);
510 aWin.SetShape( region1 );
513 // create a 2nd surface
514 TSurfaceId surfaceId2;
515 CreateSurfaceL(surfaceId2,0x00ABCDEF);
517 CreateRWindowL(win2);
518 ASSERT_EQUALS( KErrNone, win2.SetBackgroundSurface(surfaceId2));
520 TRect rc2[2] = { TRect(0,0,100,200),TRect(100,120,200,200) };
521 RRegion region2(2, rc2);
522 win2.SetShape( region2 );
525 TInt ret = iSurfaceManager.CloseSurface(surfaceId2);
528 INFO_PRINTF1(_L("Surface manager failed to close surface"));
530 // destroys iSurfaceId plus closes iSurfaceUpdateSession,iChunk,iSurfaceManager
532 CleanupStack::PopAndDestroy(&aWin);
541 @param aWin The window object
542 @param aPos The Position of the window
543 @param aBkgdColor The background color of the window
544 @param aSize The size of the window
546 void CT_WServIntegStepBasic::CreateRWindowL(RWindow& aWin, const TPoint& aPos, const TRgb& aBkgdColor, const TSize& aWinSize)
548 aWin = RWindow( iWsSession );
549 CleanupClosePushL( aWin );
550 User::LeaveIfError( aWin.Construct( iWinGroup, ENullWsHandle ) );
551 CleanupStack::Pop(&aWin);
552 aWin.SetExtent(aPos, aWinSize);
553 aWin.SetBackgroundColor( aBkgdColor );
557 aWin.SetVisible( ETrue );
563 Creates a RBlankWindow
565 @param aBlankWin The window object
567 void CT_WServIntegStepBasic::CreateRBlankWindowL(RBlankWindow& aBlankWin)
569 aBlankWin = RBlankWindow(iWsSession);
570 CleanupClosePushL(aBlankWin);
571 User::LeaveIfError(aBlankWin.Construct(iWinGroup, ENullWsHandle) );
572 TSize sz( KTempWindowWidth, KTempWindowHeight );
573 aBlankWin.SetSize(sz);
574 aBlankWin.SetColor(TRgb(0x800000FF)); // 0xAABBGGRR
575 aBlankWin.Activate();
576 CleanupStack::Pop(&aBlankWin);
581 void CT_WServIntegStepBasic::ForceWindowToRedraw(RWindowBase& aWin)
583 aWin.SetVisible( EFalse );
585 aWin.SetVisible( ETrue );
590 void CT_WServIntegStepBasic::CreateSurfaceManager()
592 INFO_PRINTF1(_L("Loading the device driver"));
593 TInt ret = iSurfaceManager.Open();
596 INFO_PRINTF1(_L("Creating surface manager OK"));
601 Set up code for creating a surface and fill it with a color
603 @param aSurfaceId The surface object, to be initialized.
604 @param aColorPattern The color to fill the surface with.
606 void CT_WServIntegStepBasic::CreateSurfaceL(TSurfaceId& aSurfaceId, TUint aColorPattern)
608 INFO_PRINTF1(_L("Creating a surface manager"));
609 CreateSurfaceManager();
611 INFO_PRINTF1(_L("Setting up surface attributes"));
612 RSurfaceManager::TSurfaceCreationAttributesBuf attribs;
613 RSurfaceManager::TSurfaceCreationAttributes& surfaceCreationAtribs=attribs();
615 surfaceCreationAtribs.iSize.iWidth = KSurfaceWidth;
616 surfaceCreationAtribs.iSize.iHeight = KSurfaceHeight;
617 surfaceCreationAtribs.iBuffers = 1;
618 surfaceCreationAtribs.iPixelFormat = KSurfaceFormat;
619 surfaceCreationAtribs.iStride = KBytesPerPixel*KSurfaceWidth;
620 surfaceCreationAtribs.iOffsetToFirstBuffer = 0;
621 surfaceCreationAtribs.iAlignment = 4;
622 surfaceCreationAtribs.iContiguous = EFalse;
623 surfaceCreationAtribs.iMappable = ETrue;
624 INFO_PRINTF1(_L("Call to CreateSurfaceL()"));
625 TInt err = iSurfaceManager.CreateSurface(attribs, aSurfaceId);
628 //we have a surface, so map it in
629 INFO_PRINTF1(_L("Surface created ok, mapping to it"));
630 TInt err = iSurfaceManager.MapSurface(aSurfaceId, iChunk);
631 User::LeaveIfError(err);
632 TUint32* surfacePtr = reinterpret_cast<TUint32*>(iChunk.Base());
633 TUint32* linePtr = surfacePtr;
636 for (TInt xx = 0; xx < KSurfaceWidth; xx++)
638 surfacePtr[xx] = aColorPattern;
641 // Now copy that to the other lines
642 TInt stride = KBytesPerPixel * KSurfaceWidth;
643 for (TInt yy = 1; yy < KSurfaceHeight; yy++)
645 linePtr += KSurfaceWidth;
646 Mem::Move(linePtr, surfacePtr, stride);
650 INFO_PRINTF1(_L("Create Surface update session"));
651 CreateSurfaceUpdateSessionL();
652 err = iSurfaceUpdateSession.SubmitUpdate(KAllScreens, aSurfaceId, 0, NULL);
655 INFO_PRINTF1(_L("Fail in submitting update"));
659 void CT_WServIntegStepBasic::CreateSurfaceUpdateSessionL()
661 TInt ret = iSurfaceUpdateSession.Connect();
663 if (ret==KErrAlreadyExists)
665 INFO_PRINTF1(_L("Device driver already loaded"));
667 else if (ret==KErrNone)
669 INFO_PRINTF1(_L("Connected to surface update server"));
673 INFO_PRINTF1(_L("Fatal error connecting to surface update server"));
674 User::LeaveIfError(ret);
678 void CT_WServIntegStepBasic::DestroySurface()
680 INFO_PRINTF1(_L("Destroy Surface update session"));
681 iSurfaceUpdateSession.Close();
684 INFO_PRINTF1(_L("Closing chunk"));
687 INFO_PRINTF1(_L("Closing surface"));
688 TInt ret = iSurfaceManager.CloseSurface(iSurfaceId);
691 INFO_PRINTF1(_L("Surface manager failed to close"));
694 INFO_PRINTF1(_L("Destroy Surface Manager"));
695 iSurfaceManager.Close();
699 Common set up code for assigning a surface to the window. Calls other utility
700 functions for creating a window and a surface
702 @param aWin The window object
703 @param aSurfaceId The surface object, to be initialized.
705 TVerdict CT_WServIntegStepBasic::SetSurfaceL(RWindow& aWin, TSurfaceId& aSurfaceId)
707 TVerdict verdict=EPass;
708 CreateRWindowL(aWin);
709 CleanupClosePushL(aWin);
710 CreateSurfaceL( aSurfaceId );
711 CleanupStack::Pop(&aWin);
712 if ( aWin.SetBackgroundSurface(aSurfaceId)!=KErrNone)
717 ForceWindowToRedraw(aWin);
722 Draw an Ellipse shape
724 @param aWin The window object, connected to a session
725 @param aColor The (transparent/opaque)color which the shape is filled with
727 void CT_WServIntegStepBasic::DrawShape(RWindow& aWin, const TRgb& aColor)
729 iGc->Activate( aWin );
730 iGc->SetBrushColor( aColor );
731 iGc->SetBrushStyle( CGraphicsContext::ESolidBrush );
732 TRect rect(TPoint(0,0), TPoint(aWin.Size().iWidth, aWin.Size().iHeight));
733 iGc->DrawEllipse(rect);