sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Enable Multiple Displays sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "TMULSCREENS.h" sl@0: sl@0: const TInt KFstScreenNo = 0; sl@0: const TInt KSndScreenNo = 1; sl@0: sl@0: CTMulScreens::CTMulScreens(CTestStep* aStep): sl@0: CTWsGraphicsBase(aStep) sl@0: { sl@0: } sl@0: sl@0: void CTMulScreens::ConstructL() sl@0: { sl@0: User::LeaveIfError(iRws.Connect()); sl@0: iFstScreenDevice =new(ELeave) CWsScreenDevice(iRws); sl@0: TInt err = iFstScreenDevice->Construct(KFstScreenNo); sl@0: iTest->LogLeave(err); sl@0: User::LeaveIfError(err); sl@0: iNumScreens = iRws.NumberOfScreens(); sl@0: if(KSndScreenNoConstruct(KSndScreenNo); sl@0: iTest->LogLeave(err); sl@0: User::LeaveIfError(err); sl@0: } sl@0: INFO_PRINTF2(_L("The number of screens supported on this device is %d"),iNumScreens); sl@0: } sl@0: sl@0: CTMulScreens::~CTMulScreens() sl@0: { sl@0: iFstWinGp.Close(); sl@0: if(KSndScreenNo* aWindowList,TInt aScreenNumber,TInt aPriority) sl@0: TInt RWindowGroup::Construct(TUint32 aClientHandle,CWsScreenDevice* aScreenDevice) sl@0: TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) sl@0: sl@0: @SYMTestExpectedResults Provided that a second screen is configured in the epoc.ini and the wsini.ini, this test case will create one window group on the first screen sl@0: and two window groups on the second screen. sl@0: If only one screen is configured, then it will create one group on the primary screen. sl@0: Otherwise this function leaves with a system-wide error. sl@0: */ sl@0: sl@0: void CTMulScreens::TestCreateGroupWindowsL() sl@0: { sl@0: const TInt fstNumWinGps = iRws.NumWindowGroups(KFstScreenNo,EAllPriorities); sl@0: CArrayFixFlat* fstList = new(ELeave) CArrayFixFlat(1); sl@0: CleanupStack::PushL(fstList); sl@0: TInt err = iRws.WindowGroupList(fstList,KFstScreenNo,EAllPriorities); sl@0: TEST(err==KErrNone); sl@0: TEST(fstList->Count()==fstNumWinGps); sl@0: err = iRws.WindowGroupList(fstList); //test existing api sl@0: TEST(err==KErrNone); sl@0: TEST(fstList->Count()==(iRws.NumWindowGroups())); sl@0: iFstWinGp = RWindowGroup(iRws); sl@0: TRAP(err,iFstWinGp.Construct(ENullWsHandle,iFstScreenDevice)); sl@0: TEST(err==KErrNone); sl@0: if(err==KErrNone) sl@0: { sl@0: TEST(iRws.NumWindowGroups(KFstScreenNo,EAllPriorities) == (fstNumWinGps+1)); sl@0: } sl@0: CleanupStack::PopAndDestroy(fstList); sl@0: sl@0: //Second screen has been configured. sl@0: if(KSndScreenNo* sndList =new(ELeave) CArrayFixFlat(1); sl@0: CleanupStack::PushL(sndList); sl@0: TInt sndNumWinGps = iRws.NumWindowGroups(KSndScreenNo,iSndWinGp.OrdinalPriority()); sl@0: err = iRws.WindowGroupList(sndList,KSndScreenNo,iSndWinGp.OrdinalPriority()); sl@0: TEST(err==KErrNone); sl@0: TEST(sndList->Count()==sndNumWinGps); sl@0: sl@0: iSndWinGp.SetOrdinalPosition(iSndWinGp.OrdinalPosition(),EAllPriorities); sl@0: TInt allPriNumWinGps= iRws.NumWindowGroups(EAllPriorities); sl@0: CArrayFixFlat* allPriList =new(ELeave) CArrayFixFlat(1); sl@0: CleanupStack::PushL(allPriList); sl@0: err = iRws.WindowGroupList(EAllPriorities,allPriList); sl@0: TEST(err==KErrNone); sl@0: TEST(allPriList->Count()==allPriNumWinGps); sl@0: sl@0: CleanupStack::PopAndDestroy(2,sndList); sl@0: } sl@0: RWindowGroup trdWinGp = RWindowGroup(iRws); sl@0: TRAP(err,trdWinGp.Construct(ENullWsHandle,ETrue,iSndScreenDevice)); sl@0: TEST(err==KErrNone); sl@0: if(err==KErrNone) sl@0: { sl@0: winId = iRws.GetFocusWindowGroup(KSndScreenNo); sl@0: TEST(winId==trdWinGp.Identifier()); sl@0: trdWinGp.Close(); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0384 sl@0: sl@0: @SYMPREQ PREQ1227 sl@0: sl@0: @SYMREQ REQ5541 sl@0: sl@0: @SYMTestCaseDependencies SYMTestCaseID GRAPHICS-WSERV-0383 sl@0: sl@0: @SYMTestCaseDesc Create a blank window on each screen. sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions Test that each blank window is created on a different screen. sl@0: API Calls:\n sl@0: TInt RBlankWindow::Construct(const RWindowTreeNode &parent, TUint32 aClientHandle) where parent is sl@0: a Window Group created on each screen. sl@0: sl@0: @SYMTestExpectedResults The background colour of the first screen changes to blue and that of the second one changes to green. sl@0: Otherwise this function leaves with a system-wide error. sl@0: */ sl@0: void CTMulScreens::TestCreateBlankWindowsL() sl@0: { sl@0: RBlankWindow fstBlankWin(iRws); sl@0: CleanupClosePushL(fstBlankWin); sl@0: TRAPD(err,fstBlankWin.Construct(iFstWinGp,ENullWsHandle)); sl@0: TEST(err==KErrNone); sl@0: if(err==KErrNone) sl@0: { sl@0: fstBlankWin.SetRequiredDisplayMode(EColor256); sl@0: fstBlankWin.SetColor(TRgb(0,0,255)); // paint the screen blue sl@0: fstBlankWin.Activate(); sl@0: iRws.Flush(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: User::After(6000000); sl@0: } sl@0: CleanupStack::PopAndDestroy();//fstBlankWin sl@0: sl@0: // Second screen sl@0: if(KSndScreenNoWaitForRedrawsToFinish(); sl@0: User::After(6000000); sl@0: } sl@0: CleanupStack::PopAndDestroy(); //sndBlankWin sl@0: } sl@0: } sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0385 sl@0: sl@0: @SYMPREQ PREQ1227 sl@0: sl@0: @SYMREQ REQ5541 sl@0: sl@0: @SYMTestCaseDependencies SYMTestCaseID GRAPHICS-WSERV-0383 sl@0: sl@0: @SYMTestCaseDesc Test the Window Group that has the keyboard focus for each screen. sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions Call RWsSession::GetFocusWindowGroup on each screen. sl@0: API Calls:\n sl@0: TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) sl@0: sl@0: @SYMTestExpectedResults The identifier returned by the API for each screen is tested to see if it is the expected Window Group ID; ie the sl@0: ID of the window group created in the first test case. sl@0: */ sl@0: void CTMulScreens::TestGetFocusWindow() sl@0: { sl@0: TInt winId = iRws.GetFocusWindowGroup(KFstScreenNo); sl@0: TEST(winId==iFstWinGp.Identifier()); sl@0: if(KSndScreenNo* aWindowList,TInt aScreenNumber,TInt aPriority) sl@0: TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) sl@0: TInt GetDefaultOwningWindow(TInt aScreenNumber) sl@0: TDisplayMode GetDefModeMaxNumColors(TInt aScreenNumber,TInt& aColor,TInt& aGray) const sl@0: TInt GetColorModeList(TInt aScreenNumber,CArrayFixFlat* aModeList) const sl@0: sl@0: @SYMTestExpectedResults The thread panics and exits with reason EWservPanicScreenNumber. sl@0: */ sl@0: void CTMulScreens::TestPanicsL() sl@0: { sl@0: TInt firstTest = 1; sl@0: TInt lastTest = 6; sl@0: const TInt KInvalidScreenNumber = 2; sl@0: for (TInt option=firstTest;option<=lastTest;option++) sl@0: { sl@0: TEST(iTest->TestWsPanicL(&TestInvalidScreenNumberL,EWservPanicScreenNumber,option,(TAny*)KInvalidScreenNumber)); sl@0: } sl@0: } sl@0: sl@0: TInt CTMulScreens::TestInvalidScreenNumberL(TInt aOption, TAny *aScreenNumber) sl@0: { sl@0: RWsSession wsSession; sl@0: wsSession.Connect(); sl@0: switch((TInt)aOption) sl@0: { sl@0: case 1: sl@0: wsSession.NumWindowGroups((TInt)aScreenNumber,EAllPriorities); sl@0: break; sl@0: case 2: sl@0: { sl@0: CArrayFixFlat* list = new(ELeave) CArrayFixFlat(1); sl@0: wsSession.WindowGroupList(list,(TInt)aScreenNumber,EAllPriorities); sl@0: } sl@0: break; sl@0: case 3: sl@0: wsSession.GetFocusWindowGroup((TInt)aScreenNumber); sl@0: break; sl@0: case 4: sl@0: wsSession.GetDefaultOwningWindow((TInt)aScreenNumber); sl@0: break; sl@0: case 5: sl@0: { sl@0: CArrayFixFlat* list = new(ELeave) CArrayFixFlat(1); sl@0: wsSession.GetColorModeList((TInt)aScreenNumber,list); sl@0: } sl@0: break; sl@0: case 6: sl@0: { sl@0: TInt color,gray; sl@0: wsSession.GetDefModeMaxNumColors((TInt)aScreenNumber,color,gray); sl@0: } sl@0: break; sl@0: default: sl@0: User::Panic(_L("Default panic"),KErrGeneral); sl@0: break; sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0390 sl@0: sl@0: @SYMPREQ PREQ1227 sl@0: sl@0: @SYMREQ REQ5541 sl@0: sl@0: @SYMTestCaseDependencies SYMTestCaseID GRAPHICS-WSERV-0383 sl@0: sl@0: @SYMTestCaseDesc Test that CWindowGc updates its screendevice each time it is activated on a window. sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions Activate the gc on both RWindows.CWindowGc::Device() is called after each activation has taken place. sl@0: API Calls:\n sl@0: void CWindowGc::Activate(RDrawableWindow &aDevice); sl@0: void CWindowGc::Deactivate(); sl@0: CGraphicsDevice* CWindowGc::Device() const sl@0: TInt RWindow::Construct(const RWindowTreeNode &parent,TUint32 aHandle); sl@0: sl@0: @SYMTestExpectedResults CWindowGc::Device() returns the screendevice on which the gc was last activated. sl@0: */ sl@0: void CTMulScreens::TestDeviceL() sl@0: { sl@0: RWindow fstWin(iRws); sl@0: User::LeaveIfError(fstWin.Construct(iFstWinGp,ENullWsHandle)); sl@0: CleanupClosePushL(fstWin); sl@0: fstWin.Activate(); sl@0: sl@0: CWindowGc* gc=new (ELeave) CWindowGc(iFstScreenDevice); sl@0: User::LeaveIfError(gc->Construct()); sl@0: CleanupStack::PushL(gc); sl@0: gc->Activate(fstWin); sl@0: sl@0: TEST((CWsScreenDevice*)gc->Device()==iFstScreenDevice); sl@0: gc->Deactivate(); sl@0: sl@0: if(KSndScreenNoActivate(sndWin); sl@0: TEST((CWsScreenDevice*)gc->Device()==iSndScreenDevice); sl@0: gc->Deactivate(); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(2,&fstWin); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0034 sl@0: sl@0: @SYMPREQ PREQ1227 sl@0: sl@0: @SYMREQ REQ5541 sl@0: sl@0: @SYMTestCaseDesc Test that the order of creating a screen device and window group does not matter. sl@0: sl@0: @SYMTestPriority High sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions Create a window group before creating the screen device. Create a graphics context and call activate on it. sl@0: API Calls:\n sl@0: TInt RWindowGroup::Construct(TUint32 aClientHandle) sl@0: TInt CWsScreenDevice::Construct() sl@0: void CWindowGc::Activate(RDrawableWindow &aDevice); sl@0: void CWindowGc::Deactivate(); sl@0: TInt RWindow::Construct(const RWindowTreeNode &parent,TUint32 aHandle); sl@0: sl@0: @SYMTestExpectedResults The test code does not panic with EWservPanicGroupWinScreenDeviceDeleted sl@0: */ sl@0: void CTMulScreens::TestInitaliseScreenDeviceL() sl@0: { sl@0: RWsSession rws1; sl@0: User::LeaveIfError(rws1.Connect()); sl@0: CleanupClosePushL(rws1); sl@0: sl@0: RWindowGroup gw1(rws1); sl@0: User::LeaveIfError(gw1.Construct(ENullWsHandle)); sl@0: CleanupClosePushL(gw1); sl@0: sl@0: CWsScreenDevice* screen1 = new (ELeave) CWsScreenDevice(rws1); sl@0: User::LeaveIfError(screen1->Construct()); sl@0: CleanupStack::PushL(screen1); sl@0: sl@0: RWindow win1(rws1); sl@0: User::LeaveIfError(win1.Construct(gw1,ETrue)); sl@0: CleanupClosePushL(win1); sl@0: win1.Activate(); sl@0: sl@0: CWindowGc* gc=new (ELeave) CWindowGc(screen1); sl@0: User::LeaveIfError(gc->Construct()); sl@0: CleanupStack::PushL(gc); sl@0: gc->Activate(win1); sl@0: sl@0: CleanupStack::PopAndDestroy(5,&rws1); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0492 sl@0: sl@0: @SYMDEF PDEF126432 sl@0: sl@0: @SYMTestCaseDesc Test the screen number that a window is located on sl@0: sl@0: @SYMTestPriority Medium sl@0: sl@0: @SYMTestStatus Implemented sl@0: sl@0: @SYMTestActions Create two windows on two screens respectively sl@0: and check the screen number that each window is located on sl@0: sl@0: @SYMTestExpectedResults The screen numbers should match the expected ones sl@0: */ sl@0: void CTMulScreens::TestScreenNumbersOfWindowsL() sl@0: { sl@0: // First screen sl@0: RWindow fstWin(iRws); sl@0: CleanupClosePushL(fstWin); sl@0: TRAPD(err,fstWin.Construct(iFstWinGp,ENullWsHandle)); sl@0: TEST(err==KErrNone); sl@0: if(err==KErrNone) sl@0: { sl@0: fstWin.Activate(); sl@0: iRws.Flush(); sl@0: } sl@0: TEST(fstWin.ScreenNumber()==KFstScreenNo); sl@0: CleanupStack::PopAndDestroy();//fstWin sl@0: sl@0: // Second screen sl@0: if(KSndScreenNoSetTestStepID(KUnknownSYMTestCaseIDName); sl@0: sl@0: switch(aCurTestCase) sl@0: { sl@0: case 1: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0383")); sl@0: INFO_PRINTF1(KTest0); sl@0: TestCreateGroupWindowsL(); sl@0: break; sl@0: case 2: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0384")); sl@0: INFO_PRINTF1(KTest1); sl@0: TestCreateBlankWindowsL(); sl@0: break; sl@0: case 3: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0385")); sl@0: INFO_PRINTF1(KTest2); sl@0: TestGetFocusWindow(); sl@0: case 4: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0386")); sl@0: INFO_PRINTF1(KTest3); sl@0: TestGetDefaultOwningWindow(); sl@0: break; sl@0: case 5: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0387")); sl@0: INFO_PRINTF1(KTest4); sl@0: TestSetBackgroundColour(); sl@0: break; sl@0: case 6: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0388")); sl@0: INFO_PRINTF1(KTest5); sl@0: TestSetShadowVector(); sl@0: break; sl@0: case 7: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0389")); sl@0: INFO_PRINTF1(KTest6); sl@0: TestPanicsL(); sl@0: break; sl@0: case 8: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0390")); sl@0: INFO_PRINTF1(KTest7); sl@0: TestDeviceL(); sl@0: break; sl@0: case 9: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0034")); sl@0: INFO_PRINTF1(KTest8); sl@0: TestInitaliseScreenDeviceL(); sl@0: break; sl@0: case 10: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-0492")); sl@0: INFO_PRINTF1(KTest9); sl@0: TestScreenNumbersOfWindowsL(); sl@0: case 11: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName); sl@0: ((CTMulScreensStep*)iStep)->CloseTMSGraphicsStep(); sl@0: INFO_PRINTF1(_L("All tests completed.\n")); sl@0: TestComplete(); sl@0: break; sl@0: default: sl@0: ((CTMulScreensStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName); sl@0: ((CTMulScreensStep*)iStep)->CloseTMSGraphicsStep(); sl@0: INFO_PRINTF1(_L("CTMulScreens::RunTestCaseL default case\n")); sl@0: break; sl@0: } sl@0: ((CTMulScreensStep*)iStep)->RecordTestResultL(); sl@0: } sl@0: sl@0: __WS_CONSTRUCT_STEP__(MulScreens)