sl@0: // Copyright (c) 2010 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: // Set of tests for Tracing Device Rotation. These tests generally test sl@0: // RWsSession::IndicateAppOrientation(...). sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Nokia test code sl@0: */ sl@0: sl@0: #include "tdevicerotation.h" sl@0: #include "themeserverpropertydefine.h" sl@0: #include "..\..\nga\server\renderorientationtracker.h" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: const TInt KPublishTimeout = 1000000; // 1 second in microseconds sl@0: sl@0: // sl@0: // CTDeviceRotation Definition sl@0: // sl@0: sl@0: CTDeviceRotation::CTDeviceRotation(CTestStep* aStep): sl@0: CTGraphicsBase(aStep), iWaitForPublishOnNextTest(ETrue) sl@0: { sl@0: } sl@0: sl@0: CTDeviceRotation::~CTDeviceRotation() sl@0: { sl@0: iPublishTimer.Close(); sl@0: sl@0: iChildWindow.Close(); sl@0: iWindowGroup.Close(); sl@0: iWs.Close(); sl@0: sl@0: iSecondChildWindow.Close(); sl@0: iSecondWindowGroup.Close(); sl@0: iSecondWs.Close(); sl@0: sl@0: /* This Process called with the argument KThemeServerPropertyDefineCmdDelete, deletes sl@0: the theme server RProperty. This is because an RProperty can only be defined and sl@0: deleted from within a process with the same UID3 as the RProperty catogory you are sl@0: trying to define/delete.*/ sl@0: RProcess themeServerPropertyDefine; sl@0: TInt err = themeServerPropertyDefine.Create(KThemeServerPropertyDefine, sl@0: KThemeServerPropertyDefineCmdDelete); sl@0: if (KErrNone != err) sl@0: { sl@0: _LIT(KLog, "themeServerPropertyDefine.Create() failed with error: %d"); sl@0: INFO_PRINTF2(KLog, err); sl@0: TEST(EFalse); sl@0: } sl@0: //wait for themeServerPropertyDefine process to terminate sl@0: TRequestStatus themeServerPropertyDefineLogonStatus; sl@0: themeServerPropertyDefine.Logon(themeServerPropertyDefineLogonStatus); sl@0: themeServerPropertyDefine.Resume(); sl@0: User::WaitForRequest(themeServerPropertyDefineLogonStatus); sl@0: if (themeServerPropertyDefineLogonStatus != KErrNone) sl@0: { sl@0: _LIT(KLog, "themeServerPropertyDefine.Logon() failed with error: %d"); sl@0: INFO_PRINTF2(KLog, themeServerPropertyDefineLogonStatus); sl@0: TEST(EFalse); sl@0: } sl@0: themeServerPropertyDefine.Close(); sl@0: sl@0: iRenderOrientationProperty.Delete(KRenderOrientationCategory, KRenderOrientationKey); sl@0: iRenderOrientationProperty.Close(); sl@0: iThemeServerOrientationProperty.Close(); sl@0: } sl@0: sl@0: void CTDeviceRotation::ConstructL() sl@0: { sl@0: TInt err = iWs.Connect(); sl@0: TESTL(err == KErrNone); sl@0: sl@0: err = iSecondWs.Connect(); sl@0: TESTL(KErrNone == err); sl@0: sl@0: iWs.SetAutoFlush(ETrue); sl@0: iSecondWs.SetAutoFlush(ETrue); sl@0: sl@0: iWindowGroup = RWindowGroup(iWs); sl@0: err = iWindowGroup.Construct(iWs.Handle()); sl@0: TESTL(KErrNone == err); sl@0: iWindowGroup.SetOrdinalPosition(0,1); sl@0: sl@0: iChildWindow = RWindow(iWs); sl@0: err = iChildWindow.Construct(iWindowGroup, reinterpret_cast(&iChildWindow)); sl@0: TESTL(KErrNone == err); sl@0: sl@0: iSecondWindowGroup = RWindowGroup(iSecondWs); sl@0: err = iSecondWindowGroup.Construct(iSecondWs.Handle()); sl@0: TESTL(KErrNone == err); sl@0: iSecondWindowGroup.SetOrdinalPosition(1,1); sl@0: sl@0: iSecondChildWindow = RWindow(iSecondWs); sl@0: err = iSecondChildWindow.Construct(iSecondWindowGroup, reinterpret_cast(&iSecondChildWindow)); sl@0: TESTL(KErrNone == err); sl@0: sl@0: err= iRenderOrientationProperty.Attach(KRenderOrientationCategory, KRenderOrientationKey, EOwnerThread); sl@0: TESTL(KErrNone == err); sl@0: iRenderOrientationProperty.Subscribe(iRenderOrientationStatus); sl@0: sl@0: /* This Process called with the argument KThemeServerPropertyDefineCmdDefine, defines sl@0: the theme server catagory to be the same as the theme servers process ID. This is sl@0: because an RProperty can only be defined and deleted from within a process with the sl@0: same UID3 as the RProperty catogory you are trying to define/delete.*/ sl@0: RProcess themeServerPropertyDefine; sl@0: err = themeServerPropertyDefine.Create(KThemeServerPropertyDefine,KThemeServerPropertyDefineCmdDefine); sl@0: TESTL(KErrNone == err); sl@0: TRequestStatus themeServerPropertyDefineLogonStatus; sl@0: themeServerPropertyDefine.Logon(themeServerPropertyDefineLogonStatus); sl@0: themeServerPropertyDefine.Resume(); sl@0: User::WaitForRequest(themeServerPropertyDefineLogonStatus); sl@0: TESTL(KErrNone == themeServerPropertyDefineLogonStatus.Int()); sl@0: themeServerPropertyDefine.Close(); sl@0: sl@0: err = iThemeServerOrientationProperty.Attach(KThemeOrientationCategory, KThemeOrientationKey, EOwnerThread); sl@0: TESTL(KErrNone == err); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: sl@0: iPublishTimer.CreateLocal(); sl@0: } sl@0: sl@0: void CTDeviceRotation::SimulateThemeServerOrientation(TRenderOrientation aOrientation) sl@0: { sl@0: _LIT(KFunctionInfo, "SimulateThemeServerOrientation(aOrientation = %d)"); sl@0: INFO_PRINTF2(KFunctionInfo, aOrientation); sl@0: TInt err = iThemeServerOrientationProperty.Set(aOrientation); sl@0: if (KErrNone != err) sl@0: { sl@0: _LIT(KLog,"iThemeServerOrientationProperty.Set(%d) failed with err %d"); sl@0: INFO_PRINTF3(KLog,aOrientation,err); sl@0: TEST(EFalse); sl@0: } sl@0: switch(aOrientation) sl@0: { sl@0: case EDisplayOrientationNormal: sl@0: case EDisplayOrientation90CW: sl@0: case EDisplayOrientation180: sl@0: case EDisplayOrientation270CW: sl@0: { sl@0: if(KErrNone == err) sl@0: { sl@0: iCurrentThemeServerOrientation = aOrientation; sl@0: } sl@0: break; sl@0: } sl@0: default: sl@0: _LIT(KLog, "This orientation is not supported by theme server."); sl@0: INFO_PRINTF1(KLog); sl@0: } sl@0: } sl@0: sl@0: void CTDeviceRotation::IsOrientationCorrect(TRenderOrientation aExpectedOrientation) sl@0: { sl@0: // timer to timeout when nothing is published sl@0: iPublishTimer.After(iPublishTimerStatus, KPublishTimeout); sl@0: sl@0: // wait for either sl@0: User::WaitForRequest(iRenderOrientationStatus, iPublishTimerStatus); sl@0: sl@0: // check that the orientation was published or not, as expected sl@0: if(iWaitForPublishOnNextTest) sl@0: { sl@0: // Check that it really has published sl@0: if(iRenderOrientationStatus.Int()==KErrNone && iPublishTimerStatus.Int()==KRequestPending) sl@0: { sl@0: iPublishTimer.Cancel(); sl@0: // re-subscribe sl@0: iRenderOrientationProperty.Subscribe(iRenderOrientationStatus); sl@0: } sl@0: else sl@0: { sl@0: _LIT(KLog,"Timed out (%d) while waiting for render orientation %d to be published"); sl@0: INFO_PRINTF3(KLog,iRenderOrientationStatus.Int(),aExpectedOrientation); sl@0: TEST(EFalse); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: // Check that it really hasn't published sl@0: if(iRenderOrientationStatus.Int()!=KRequestPending) sl@0: { sl@0: _LIT(KLog,"Render Orientation %d was published (%d) when not expected (timeout = %d)"); sl@0: INFO_PRINTF4(KLog,aExpectedOrientation, iRenderOrientationStatus.Int(),iPublishTimerStatus.Int()); sl@0: iPublishTimer.Cancel(); sl@0: TEST(EFalse); sl@0: } sl@0: else if(iPublishTimerStatus.Int()!=KErrNone) sl@0: { sl@0: _LIT(KLog,"Timeout failure %d"); sl@0: INFO_PRINTF2(KLog,iPublishTimerStatus.Int()); sl@0: TEST(EFalse); sl@0: } sl@0: sl@0: // reset to default sl@0: iWaitForPublishOnNextTest = ETrue; sl@0: } sl@0: sl@0: // Retrieve the value. sl@0: TInt orientation; sl@0: TInt err = iRenderOrientationProperty.Get(orientation); sl@0: if(KErrNone != err) sl@0: { sl@0: _LIT(KLog,"iThemeServerOrientationProperty.Get(...) failed with err %d"); sl@0: INFO_PRINTF2(KLog,err); sl@0: TEST(EFalse); sl@0: } sl@0: else if(aExpectedOrientation == EDisplayOrientationAuto) sl@0: { sl@0: TEST(orientation == iCurrentThemeServerOrientation); sl@0: CheckHalSetting(iCurrentThemeServerOrientation); sl@0: } sl@0: else sl@0: { sl@0: TEST(orientation == aExpectedOrientation); sl@0: CheckHalSetting(static_cast(orientation)); sl@0: } sl@0: } sl@0: sl@0: void CTDeviceRotation::CheckHalSetting(TRenderOrientation aOrientation) sl@0: { sl@0: HALData::TDigitiserOrientation halOrientationExp = static_cast sl@0: (HALData::EDigitiserOrientation_000 + (aOrientation - EDisplayOrientationNormal)); sl@0: TInt halOrientation; sl@0: TInt err = HAL::Get(iWs.GetFocusScreen(), HALData::EDigitiserOrientation, halOrientation); sl@0: if (err != KErrNotSupported) sl@0: { sl@0: if (err != KErrNone) sl@0: { sl@0: _LIT(KLog,"Getting HAL orientation attribute returned error %d when no error expected"); sl@0: INFO_PRINTF2(KLog,err); sl@0: } sl@0: TEST(err==KErrNone); sl@0: if (halOrientationExp != halOrientation) sl@0: { sl@0: _LIT(KLog,"HAL orientation is %d when expected to be %d"); sl@0: INFO_PRINTF3(KLog, halOrientation, halOrientationExp); sl@0: } sl@0: TEST(halOrientationExp==halOrientation); sl@0: } sl@0: else sl@0: { sl@0: _LIT(KLog,"HAL-Orientation HALData::EDigitiserOrientation isn't supported by Driver"); sl@0: INFO_PRINTF1(KLog); sl@0: } sl@0: } sl@0: sl@0: void CTDeviceRotation::TestIndicateAppOrientation(TRenderOrientation aOrientation) sl@0: { sl@0: _LIT(KTestInfo, "TestIndicateAppOrientation(aOrientation = %d)"); sl@0: INFO_PRINTF2(KTestInfo, aOrientation); sl@0: if (EDisplayOrientationIgnore == aOrientation) sl@0: { sl@0: TEST(EFalse); sl@0: _LIT(KLog, "TestIndicateAppOrientation(TRenderOrientation aOrientation) cannot be used with EDisplayOrientationIgnore"); sl@0: INFO_PRINTF1(KLog); sl@0: } sl@0: iWs.IndicateAppOrientation(aOrientation); sl@0: iWindowGroup.SetOrdinalPosition(0); sl@0: IsOrientationCorrect(aOrientation); sl@0: } sl@0: sl@0: void CTDeviceRotation::TestIndicateAppOrientation(TRenderOrientation aOrientation, TRenderOrientation aSecondOrientation) sl@0: { sl@0: _LIT(KTestInfo, "TestIndicateAppOrientation(aOrientation = %d, aSecondOrientation = %d)"); sl@0: INFO_PRINTF3(KTestInfo, aOrientation, aSecondOrientation); sl@0: //Inform window serve the orientation status sl@0: iWs.IndicateAppOrientation(aOrientation); sl@0: iSecondWs.IndicateAppOrientation(aSecondOrientation); sl@0: sl@0: iWindowGroup.SetOrdinalPosition(0,1); sl@0: iSecondWindowGroup.SetOrdinalPosition(1,1); sl@0: sl@0: if(aOrientation != EDisplayOrientationIgnore) sl@0: { sl@0: IsOrientationCorrect(aOrientation); sl@0: } sl@0: else sl@0: { sl@0: IsOrientationCorrect(aSecondOrientation); sl@0: } sl@0: } sl@0: sl@0: void CTDeviceRotation::TestAppOrientationOnSwap(TRenderOrientation aOrientation, TRenderOrientation aSecondOrientation) sl@0: { sl@0: _LIT(KTestInfo, "TestAppOrientationOnSwap(aOrientation = %d, aSecondOrientation = %d)"); sl@0: INFO_PRINTF3(KTestInfo, aOrientation, aSecondOrientation); sl@0: sl@0: iWs.IndicateAppOrientation(aOrientation); sl@0: iSecondWs.IndicateAppOrientation(aSecondOrientation); sl@0: sl@0: iSecondWindowGroup.SetOrdinalPosition(0); sl@0: if (aSecondOrientation != EDisplayOrientationIgnore) sl@0: { sl@0: IsOrientationCorrect(aSecondOrientation); sl@0: } sl@0: else sl@0: { sl@0: IsOrientationCorrect(aOrientation); sl@0: } sl@0: } sl@0: sl@0: void CTDeviceRotation::RunTestCaseL(TInt aCurTestCase) sl@0: { sl@0: _LIT(KNewLine, "\n"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KUnknownSYMTestCaseIDName); sl@0: switch(aCurTestCase) sl@0: { sl@0: case 1: sl@0: _LIT(KTestStepID1,"Test Initial Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID1); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID1); sl@0: TestInitialOrientation(); sl@0: break; sl@0: case 2: sl@0: _LIT(KTestStepID2,"Test Fixed Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID2); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID2); sl@0: TestFixedOrientations(); sl@0: break; sl@0: case 3: sl@0: _LIT(KTestStepID3,"Test Auto Orientation"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID3); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID3); sl@0: TestAutoOrientation(); sl@0: break; sl@0: case 4: sl@0: _LIT(KTestStepID4,"Test Ignore Orientation"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID4); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID4); sl@0: TestIgnoreOrientation(); sl@0: break; sl@0: case 5: sl@0: _LIT(KTestStepID5,"Test Swap Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID5); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID5); sl@0: TestFixedOrientationsOnWindowSwap(); sl@0: break; sl@0: case 6: sl@0: _LIT(KTestStepID6,"Test Auto Swap Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID6); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID6); sl@0: TestAutoOrientationOnWindowSwap(); sl@0: break; sl@0: case 7: sl@0: _LIT(KTestStepID7,"Test Ignore Swap Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID7); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID7); sl@0: TestIgnoreOrientationOnWindowSwap(); sl@0: break; sl@0: case 8: sl@0: _LIT(KTestStepID8,"Test Auto Swap Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID8); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID8); sl@0: TestIgnoreAutoOrientationOnWindowSwap(); sl@0: break; sl@0: case 9: sl@0: _LIT(KTestStepID9,"Test Invalid App Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID9); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID9); sl@0: TestInvalidAppOrientation(); sl@0: break; sl@0: case 10: sl@0: _LIT(KTestStepID10,"Test Invalid Theme Server Orientations"); sl@0: (reinterpret_cast(iStep))->SetTestStepID(KTestStepID10); sl@0: INFO_PRINTF1(KNewLine); sl@0: INFO_PRINTF1(KTestStepID10); sl@0: TestInvalidThemeServerOrientation(); sl@0: break; sl@0: default: sl@0: (reinterpret_cast(iStep))->SetTestStepID(KNotATestSYMTestCaseIDName); sl@0: (reinterpret_cast(iStep))->CloseTMSGraphicsStep(); sl@0: TestComplete(); sl@0: } sl@0: (reinterpret_cast(iStep))->RecordTestResultL(); sl@0: } sl@0: sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0001 sl@0: @SYMTestCaseDesc Test Auto Orientation sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we can return the correct initial orientation value from sl@0: the windwoserver. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: We have set up an RWindowGroup at the foreground and not altered its sl@0: indicated orientation. sl@0: @SYMTestActions 1) Get the value of the orientation as published by window server. sl@0: sl@0: @SYMTestExpectedResults The windowserver should return EDisplayOrientationNormal sl@0: */ sl@0: void CTDeviceRotation::TestInitialOrientation() sl@0: { sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: IsOrientationCorrect(EDisplayOrientationNormal); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0002 sl@0: @SYMTestCaseDesc Test Fixed Orientations sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we can return the correct orientation value from sl@0: the windwoserver after we indicate the application orientation sl@0: as fixed values using RWsSession::IndicateAppOrientation. Any sl@0: theme server orientations should be ignored. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up an RWindowGroup in the foreground. sl@0: Windowserver orientation currently set to EDisplayOrientationNormal. sl@0: sl@0: @SYMTestActions 1) Set Theme Server orientation to EDisplayOrientation90CW. sl@0: 2) Set the RWindowgroup in ordinal position 0 to a fixed orientation. sl@0: 3) Check the published orinetation value in windowserver. sl@0: 4) Repeat steps 2) and 3) for all fixed orientations sl@0: 3) Set Theme Server orientation to EDisplayOrientationNormal. sl@0: 4) Repeat Steps 2-4). sl@0: sl@0: @SYMTestExpectedResults The orientation set in step 2) should always be the same as the sl@0: orientation set in step 2) sl@0: */ sl@0: void CTDeviceRotation::TestFixedOrientations() sl@0: { sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation180); sl@0: TestIndicateAppOrientation(EDisplayOrientation270CW); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation180); sl@0: TestIndicateAppOrientation(EDisplayOrientation270CW); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientation180); sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation180); sl@0: TestIndicateAppOrientation(EDisplayOrientation270CW); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientation270CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation180); sl@0: TestIndicateAppOrientation(EDisplayOrientation270CW); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0003 sl@0: @SYMTestCaseDesc Test Auto Orientation sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we can return the correct orientation value from sl@0: the windwoserver after we indicate the application orientation sl@0: as auto values using RWsSession::IndicateAppOrientation. The wserv sl@0: should publish the theme server orientation changes only. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up an RWindowGroup in the foreground. sl@0: WindowServer orinetation is not set to EDisplayOrientation90CW. sl@0: sl@0: @SYMTestActions 1) Set Theme Server orientation to EDisplayOrientation90CW. sl@0: 2) Set the RWindowgroup in ordinal position 0 to auto orientation. sl@0: 3) Check the published orinetation value in windowserver. sl@0: 4) Set Theme Server orientation to EDisplayOrientationNormal. sl@0: 5) Check the value of the orientation as published by window server. sl@0: 6) Repeat 4) and 5) for EDisplayOrientation180 and sl@0: EDisplayOrientation270CW sl@0: 7) repeat 4) and 5) again for EDisplayOrientation270CW sl@0: sl@0: @SYMTestExpectedResults We should get expected notifications where orientations have changed. sl@0: The orientation checked in step 3) should be the theme server sl@0: orientation set in step 1). sl@0: The orientations checked in step 5) should be the theme server sl@0: orientations set in step 4). sl@0: We should recieve no notification for step 7). sl@0: */ sl@0: void CTDeviceRotation::TestAutoOrientation() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationAuto); sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: // Now flip it upside down to ensure that nothing assumes this will only be updated incrementally sl@0: SimulateThemeServerOrientation(EDisplayOrientation180); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: SimulateThemeServerOrientation(EDisplayOrientation270CW); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: sl@0: // And check that wserv doesn't publish if the theme server publishes the existing orientation sl@0: SimulateThemeServerOrientation(EDisplayOrientation270CW); sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0004 sl@0: @SYMTestCaseDesc Test Ignore Orientation sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we can return the correct orientation value from sl@0: the windwoserver after we indicate the front applications sl@0: orientation as ignore. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up two RWindowGroups in the ordinal positions 0 and 1. sl@0: WindowServer orinetation is not set to EDisplayOrientationNormal. sl@0: sl@0: @SYMTestActions 1) Set Theme Server orientation to EDisplayOrientation90CW. sl@0: 2) Set the RWindowGroup in ordinal position 0 to a ignore orientation. sl@0: 3) Set the RWindowgroup in ordinal position 1 to a fixed orientation. sl@0: 4) Check the published orinetation value in windowserver. sl@0: 5) Repeat steps 2-4) varying the fixed orientation set in step 2). sl@0: 6) Set Theme Server orientation to EDisplayOrientation90CW. sl@0: 7) Set the RWindowGroup in ordinal position 0 to a ignore orientation. sl@0: 8) Set the RWindowgroup in ordinal position 1 to a fixed orientation. sl@0: 9) Check the published orinetation value in windowserver. sl@0: 10) Set Theme Server orientation to EDisplayOrientationNormal. sl@0: 11) Check the published orinetation value in windowserver. sl@0: sl@0: @SYMTestExpectedResults We should get expected notifications where orientations have changed. sl@0: All orientations checked in step 4) should be the fixed orientations sl@0: of the windows in ordinal position 1, as set in step 3). sl@0: The orientation checked in step 9) should be the theme server sl@0: orientation set in step 6). sl@0: The orientation checked in step 11) should be the theme server sl@0: orientation set in step 10). sl@0: */ sl@0: void CTDeviceRotation::TestIgnoreOrientation() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation180); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation270CW); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientationAuto); sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0005 sl@0: @SYMTestCaseDesc Test Fixed Orientations On Swap sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we get notifactation of a change in orientation and can sl@0: return the correct orientation value from the windwoserver after we sl@0: swap windows with varying fixed orienations. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: We have set up two RWindowGroups in the ordinal positions 0 and 1. sl@0: sl@0: @SYMTestActions 1) Set the RWindowGroup in ordinal position 0 to a fixed orientation. sl@0: 2) Set the RWindowgroup in ordinal position 1 to a fixed orientation. sl@0: 3) Check the published orinetation value in windowserver. sl@0: 4) Move the RWindowGroup ordinal position 1 to the ordinal position 0. sl@0: 5) Check the published orinetation value in windowserver. sl@0: 6) Repeat steps 1-5 but vary the values the fixed orientation of the sl@0: RWindows set in steps 1) and 2) sl@0: sl@0: @SYMTestExpectedResults We should get expected notifications where orientations have changed. sl@0: All orientations checked in step 3) should be the fixed orientations sl@0: of the windows in ordinal position 0, as set in step 1). sl@0: The orientations checked in step 5) should be the fixed orientations sl@0: of the windows which was in ordinal position 1 before each swap, as sl@0: set in step 2). sl@0: */ sl@0: void CTDeviceRotation::TestFixedOrientationsOnWindowSwap() sl@0: { sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal, EDisplayOrientationNormal); sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: TestAppOrientationOnSwap(EDisplayOrientationNormal, EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal, EDisplayOrientation90CW); sl@0: TestAppOrientationOnSwap(EDisplayOrientationNormal, EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW, EDisplayOrientationNormal); sl@0: TestAppOrientationOnSwap(EDisplayOrientation90CW, EDisplayOrientationNormal); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0006 sl@0: @SYMTestCaseDesc Test Auto Orientations On Swap sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we get notifactation of a change in orientation and can sl@0: return the correct orientation value from the windwoserver after we sl@0: swap windows with auto orienations. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up two RWindowGroups in the ordinal positions 0 and 1. sl@0: WindowServer orinetation is not set to EDisplayOrientation270CW. sl@0: sl@0: @SYMTestActions 1) Set the theme server orientation. sl@0: 2) Set the RWindowGroup in ordinal position 0 to a fixed orientation. sl@0: 3) Set the RWindowGroup in ordinal position 1 to auto orientation. sl@0: 4) Check the published orinetation value in windowserver. sl@0: 5) Move the RWindowGroup ordinal position 1 to the ordinal position 0. sl@0: 6) Check the published orinetation value in windowserver. sl@0: 7) Repeat steps 1-6 but vary the values of the theme server sl@0: orientation in step 1) and the fixed orientation of the frontwindow sl@0: in 2) sl@0: @SYMTestExpectedResults We should get expected notifications where orientations have changed. sl@0: All orientations checked in step 4) should be the fixed orientations sl@0: of the front windows, which have been set in step 2). sl@0: All orientations checked in step 6) should be the theme server sl@0: orientations set in step 1) sl@0: */ sl@0: void CTDeviceRotation::TestAutoOrientationOnWindowSwap() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation270CW, EDisplayOrientationAuto); sl@0: TestAppOrientationOnSwap(EDisplayOrientation270CW, EDisplayOrientationAuto); sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationAuto, EDisplayOrientation180); sl@0: TestAppOrientationOnSwap(EDisplayOrientationAuto, EDisplayOrientation180); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW, EDisplayOrientationAuto); sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: TestAppOrientationOnSwap(EDisplayOrientation90CW, EDisplayOrientationAuto); sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationAuto, EDisplayOrientationNormal); sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: TestAppOrientationOnSwap(EDisplayOrientationAuto, EDisplayOrientationNormal); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0007 sl@0: @SYMTestCaseDesc Test Swap Orientations with Ignore Orientation sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we get notifactation of a change in orientation and can sl@0: return the correct orientation value from the windwoserver after we sl@0: swap windows with ignore orienations. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up two RWindowGroups in the ordinal positions 0 and 1. sl@0: sl@0: @SYMTestActions 1) Set the theme server orientation. sl@0: 2) Set the RWindowGroup in ordinal position 0 to ignore orientation. sl@0: 3) Set the RWindowGroup in ordinal position 1 to a fixed orientation. sl@0: 4) Check the published orinetation value in windowserver. sl@0: 5) Move the RWindowGroup ordinal position 1 to the ordinal position 0. sl@0: 6) Check the published orinetation value in windowserver. sl@0: 7) Repeat steps 1-6 but vary the values of the theme server sl@0: orientation in step 1) and the fixed orientation of the frontwindow sl@0: in 3) sl@0: 8) Set the theme server orientation. sl@0: 9) Set the RWindowGroup in ordinal position 0 to a fixedorientation. sl@0: 10) Set the RWindowGroup in ordinal position 1 to ignore orienation. sl@0: 11) Repeat steps 4-6) sl@0: 12) Repeat steps 8-11) but vary the values of the theme server sl@0: orientation in step 8) and the fixed orientation of the sl@0: RwindowGroup in 9) sl@0: sl@0: @SYMTestExpectedResults We should get expected notifications where orientations have changed. sl@0: All orientations checked in step 4) and 6) should be the fixed sl@0: orientations RWindowGroups which have been set in step 3). sl@0: All orientations checked in step 11) should be the fixed orientations sl@0: of the front RWindowGroups which have been set in step 9). sl@0: */ sl@0: void CTDeviceRotation::TestIgnoreOrientationOnWindowSwap() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation270CW); sl@0: TestAppOrientationOnSwap(EDisplayOrientationIgnore, EDisplayOrientation180); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientationNormal); sl@0: TestAppOrientationOnSwap(EDisplayOrientationIgnore, EDisplayOrientation90CW); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: TestIndicateAppOrientation(EDisplayOrientation270CW, EDisplayOrientationIgnore); sl@0: TestAppOrientationOnSwap(EDisplayOrientation180, EDisplayOrientationIgnore); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationNormal, EDisplayOrientationIgnore); sl@0: TestAppOrientationOnSwap(EDisplayOrientation90CW, EDisplayOrientationIgnore); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0008 sl@0: @SYMTestCaseDesc Test Swap Orientations with Auto and Ignore Orientations sl@0: @SYMPREQ 460936 Tracking Device Rotation sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that we get notifactation of a change in orientation and can sl@0: return the correct orientation value from the windwoserver after we sl@0: swap windows with auto and ignore orienations. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up two RWindowGroups in the ordinal positions 0 and 1. sl@0: @SYMTestActions 1) Set the theme server orientation to EDisplayOrientationNormal. sl@0: 2) Set the RWindowGroup in ordinal position 0 to auto orientation. sl@0: 3) Set the RWindowGroup in ordinal position 1 to ignore orientation. sl@0: 4) Check the published orinetation value in windowserver. sl@0: 5) Set the theme server orientation to EDisplayOrientation90CW. sl@0: 6) Check the published orinetation value in windowserver. sl@0: 7) Set the theme server orientation to EDisplayOrientationNormal. sl@0: 8) Move the RWindowGroup in ordinal position 1 to ordinal position 0. sl@0: 9) Check the published orinetation value in windowserver. sl@0: 10) Set the theme server orientation to EDisplayOrientation90CW. sl@0: 11) Check the published orinetation value in windowserver. sl@0: sl@0: @SYMTestExpectedResults We should get expected notifications where orientations have changed. sl@0: The orientations checked in step 4), 6), 9) and 11) should all be sl@0: the orientations set to the themeserver in steps 1), 5), 8) and 10) sl@0: respecvtively. sl@0: */ sl@0: void CTDeviceRotation::TestIgnoreAutoOrientationOnWindowSwap() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationAuto, EDisplayOrientationIgnore); sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: iSecondWindowGroup.SetOrdinalPosition(0); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: SimulateThemeServerOrientation(EDisplayOrientation90CW); sl@0: IsOrientationCorrect(iCurrentThemeServerOrientation); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0009 sl@0: @SYMTestCaseDesc Test Invalid App Orientation sl@0: @SYMPREQ ###TrackingDeviceRotation### TODO replace me sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that an invalid orientation is ignored. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up an RWindowGroup in ordinal position 0. sl@0: @SYMTestActions 1) Set the theme server orientation to EDisplayOrientationNormal. sl@0: 2) Set the RWindowGroup in ordinal position 0 to sl@0: EDisplayOrientation90CW. sl@0: 4) Check the published orinetation value in windowserver. sl@0: 5) Set the RWindowGroup in ordinal position 0 to an invalid sl@0: orientation. sl@0: 6) Check the published orinetation value in windowserver. sl@0: sl@0: @SYMTestExpectedResults Wserv should publish an orientation change for 2) but not for 5). sl@0: The orientations checked in steps 4) and 6) should both be the sl@0: orientation set in step 2). sl@0: */ sl@0: void CTDeviceRotation::TestInvalidAppOrientation() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientation90CW); sl@0: iWs.IndicateAppOrientation(static_cast(1000)); sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: IsOrientationCorrect(EDisplayOrientation90CW); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DEVICEROTATION-0010 sl@0: @SYMTestCaseDesc Test Invalid Theme Server Orientation sl@0: @SYMPREQ ###TrackingDeviceRotation### TODO replace me sl@0: @SYMTestPriority 1 sl@0: @SYMTestPurpose To test that an invalid theme server orientation is ignored when sl@0: the app orientation has been set to auto. sl@0: @SYMPrerequisites An RProperty is set up to subscribe to notifications of sl@0: windowserver orientation changes. sl@0: An RProperty is set up to publish Theme server Orientation changes. sl@0: We have set up an RWindowGroup in ordinal position 0. sl@0: @SYMTestActions 1) Set the theme server orientation to EDisplayOrientationNormal. sl@0: 2) Set the RWindowGroup in ordinal position 0 to sl@0: EDisplayOrientationAuto. sl@0: 4) Check the published orinetation value in windowserver. sl@0: 5) Set the theme server orientation to an invalid orientation. sl@0: 6) Check the published orinetation value in windowserver. sl@0: sl@0: @SYMTestExpectedResults Wserv should publish an orientation change for 2) but not for 5). sl@0: The orientations checked in steps 4) and 6) should both be the sl@0: theme server orientation set in step 1). sl@0: */ sl@0: void CTDeviceRotation::TestInvalidThemeServerOrientation() sl@0: { sl@0: SimulateThemeServerOrientation(EDisplayOrientationNormal); sl@0: TestIndicateAppOrientation(EDisplayOrientationAuto); sl@0: SimulateThemeServerOrientation(static_cast(5000)); sl@0: iWaitForPublishOnNextTest = EFalse; sl@0: IsOrientationCorrect(EDisplayOrientationNormal); sl@0: } sl@0: sl@0: __CONSTRUCT_STEP__(DeviceRotation)