os/graphics/windowing/windowserver/test/tauto/tdevicerotation.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Set of tests for Tracing Device Rotation. These tests generally test
sl@0
    15
// RWsSession::IndicateAppOrientation(...).
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @test
sl@0
    21
 @internalComponent - Internal Nokia test code
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include "tdevicerotation.h"
sl@0
    25
#include "themeserverpropertydefine.h"
sl@0
    26
#include "..\..\nga\server\renderorientationtracker.h" 
sl@0
    27
#include <hal.h>
sl@0
    28
#include <hal_data.h>
sl@0
    29
#include <w32std.h>
sl@0
    30
sl@0
    31
const TInt KPublishTimeout = 1000000; // 1 second in microseconds
sl@0
    32
sl@0
    33
//
sl@0
    34
// CTDeviceRotation Definition
sl@0
    35
//
sl@0
    36
sl@0
    37
CTDeviceRotation::CTDeviceRotation(CTestStep* aStep):
sl@0
    38
	CTGraphicsBase(aStep), iWaitForPublishOnNextTest(ETrue)
sl@0
    39
	{
sl@0
    40
	}
sl@0
    41
sl@0
    42
CTDeviceRotation::~CTDeviceRotation()
sl@0
    43
	{
sl@0
    44
    iPublishTimer.Close();
sl@0
    45
    
sl@0
    46
    iChildWindow.Close();
sl@0
    47
    iWindowGroup.Close();
sl@0
    48
    iWs.Close();    
sl@0
    49
    
sl@0
    50
    iSecondChildWindow.Close();
sl@0
    51
    iSecondWindowGroup.Close();    
sl@0
    52
    iSecondWs.Close();
sl@0
    53
   
sl@0
    54
    /* This Process called with the argument KThemeServerPropertyDefineCmdDelete, deletes 
sl@0
    55
       the theme server RProperty. This is because an RProperty can only be defined and 
sl@0
    56
       deleted from within a process with the same UID3 as the RProperty catogory you are 
sl@0
    57
       trying to define/delete.*/
sl@0
    58
    RProcess themeServerPropertyDefine;
sl@0
    59
    TInt err = themeServerPropertyDefine.Create(KThemeServerPropertyDefine,
sl@0
    60
            KThemeServerPropertyDefineCmdDelete);
sl@0
    61
    if (KErrNone != err)
sl@0
    62
        {
sl@0
    63
        _LIT(KLog, "themeServerPropertyDefine.Create() failed with error: %d");
sl@0
    64
        INFO_PRINTF2(KLog, err);
sl@0
    65
        TEST(EFalse);        
sl@0
    66
        }
sl@0
    67
    //wait for themeServerPropertyDefine process to terminate
sl@0
    68
    TRequestStatus themeServerPropertyDefineLogonStatus;
sl@0
    69
    themeServerPropertyDefine.Logon(themeServerPropertyDefineLogonStatus);
sl@0
    70
    themeServerPropertyDefine.Resume();
sl@0
    71
    User::WaitForRequest(themeServerPropertyDefineLogonStatus);
sl@0
    72
    if (themeServerPropertyDefineLogonStatus != KErrNone)
sl@0
    73
        {
sl@0
    74
        _LIT(KLog, "themeServerPropertyDefine.Logon() failed with error: %d");
sl@0
    75
        INFO_PRINTF2(KLog, themeServerPropertyDefineLogonStatus);
sl@0
    76
        TEST(EFalse);        
sl@0
    77
        }
sl@0
    78
    themeServerPropertyDefine.Close();
sl@0
    79
    
sl@0
    80
    iRenderOrientationProperty.Delete(KRenderOrientationCategory, KRenderOrientationKey);
sl@0
    81
    iRenderOrientationProperty.Close();
sl@0
    82
    iThemeServerOrientationProperty.Close();
sl@0
    83
    }
sl@0
    84
sl@0
    85
void CTDeviceRotation::ConstructL()
sl@0
    86
    {
sl@0
    87
    TInt err = iWs.Connect();
sl@0
    88
    TESTL(err == KErrNone);
sl@0
    89
            
sl@0
    90
    err = iSecondWs.Connect();
sl@0
    91
    TESTL(KErrNone == err);
sl@0
    92
    
sl@0
    93
    iWs.SetAutoFlush(ETrue);
sl@0
    94
    iSecondWs.SetAutoFlush(ETrue);
sl@0
    95
    
sl@0
    96
    iWindowGroup = RWindowGroup(iWs);
sl@0
    97
    err = iWindowGroup.Construct(iWs.Handle());
sl@0
    98
    TESTL(KErrNone == err);
sl@0
    99
    iWindowGroup.SetOrdinalPosition(0,1);
sl@0
   100
    
sl@0
   101
    iChildWindow = RWindow(iWs);
sl@0
   102
    err = iChildWindow.Construct(iWindowGroup, reinterpret_cast<TUint32>(&iChildWindow));
sl@0
   103
    TESTL(KErrNone == err);    
sl@0
   104
sl@0
   105
    iSecondWindowGroup = RWindowGroup(iSecondWs);
sl@0
   106
    err = iSecondWindowGroup.Construct(iSecondWs.Handle());
sl@0
   107
    TESTL(KErrNone == err);
sl@0
   108
    iSecondWindowGroup.SetOrdinalPosition(1,1);
sl@0
   109
    
sl@0
   110
    iSecondChildWindow = RWindow(iSecondWs);
sl@0
   111
    err = iSecondChildWindow.Construct(iSecondWindowGroup, reinterpret_cast<TUint32>(&iSecondChildWindow));
sl@0
   112
    TESTL(KErrNone == err);    
sl@0
   113
    
sl@0
   114
    err= iRenderOrientationProperty.Attach(KRenderOrientationCategory, KRenderOrientationKey, EOwnerThread);
sl@0
   115
    TESTL(KErrNone == err);
sl@0
   116
    iRenderOrientationProperty.Subscribe(iRenderOrientationStatus);
sl@0
   117
    
sl@0
   118
    /* This Process called with the argument KThemeServerPropertyDefineCmdDefine, defines
sl@0
   119
       the theme server catagory to be the same as the theme servers process ID. This is 
sl@0
   120
       because an RProperty can only be defined and deleted from within a process with the 
sl@0
   121
       same UID3 as the RProperty catogory you are trying to define/delete.*/
sl@0
   122
    RProcess themeServerPropertyDefine;
sl@0
   123
    err = themeServerPropertyDefine.Create(KThemeServerPropertyDefine,KThemeServerPropertyDefineCmdDefine);
sl@0
   124
    TESTL(KErrNone == err);
sl@0
   125
    TRequestStatus themeServerPropertyDefineLogonStatus;
sl@0
   126
    themeServerPropertyDefine.Logon(themeServerPropertyDefineLogonStatus);
sl@0
   127
    themeServerPropertyDefine.Resume();
sl@0
   128
    User::WaitForRequest(themeServerPropertyDefineLogonStatus);
sl@0
   129
    TESTL(KErrNone == themeServerPropertyDefineLogonStatus.Int()); 
sl@0
   130
    themeServerPropertyDefine.Close(); 
sl@0
   131
sl@0
   132
    err = iThemeServerOrientationProperty.Attach(KThemeOrientationCategory, KThemeOrientationKey, EOwnerThread);
sl@0
   133
    TESTL(KErrNone == err);
sl@0
   134
    
sl@0
   135
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   136
    
sl@0
   137
    iPublishTimer.CreateLocal();
sl@0
   138
    }
sl@0
   139
sl@0
   140
void CTDeviceRotation::SimulateThemeServerOrientation(TRenderOrientation aOrientation)
sl@0
   141
    {
sl@0
   142
    _LIT(KFunctionInfo, "SimulateThemeServerOrientation(aOrientation = %d)");
sl@0
   143
    INFO_PRINTF2(KFunctionInfo, aOrientation);
sl@0
   144
    TInt err = iThemeServerOrientationProperty.Set(aOrientation);
sl@0
   145
    if (KErrNone != err)
sl@0
   146
        {
sl@0
   147
        _LIT(KLog,"iThemeServerOrientationProperty.Set(%d) failed with err %d");
sl@0
   148
        INFO_PRINTF3(KLog,aOrientation,err);
sl@0
   149
        TEST(EFalse);
sl@0
   150
        }
sl@0
   151
    switch(aOrientation)
sl@0
   152
        {
sl@0
   153
        case EDisplayOrientationNormal:
sl@0
   154
        case EDisplayOrientation90CW:
sl@0
   155
        case EDisplayOrientation180:
sl@0
   156
        case EDisplayOrientation270CW:
sl@0
   157
            {
sl@0
   158
            if(KErrNone == err)
sl@0
   159
                {
sl@0
   160
                iCurrentThemeServerOrientation = aOrientation;            
sl@0
   161
                }                
sl@0
   162
            break;
sl@0
   163
            }
sl@0
   164
        default:
sl@0
   165
            _LIT(KLog, "This orientation is not supported by theme server.");
sl@0
   166
        	INFO_PRINTF1(KLog);
sl@0
   167
        }
sl@0
   168
    }
sl@0
   169
sl@0
   170
void CTDeviceRotation::IsOrientationCorrect(TRenderOrientation aExpectedOrientation)
sl@0
   171
    {
sl@0
   172
    // timer to timeout when nothing is published
sl@0
   173
    iPublishTimer.After(iPublishTimerStatus, KPublishTimeout);
sl@0
   174
    
sl@0
   175
    // wait for either
sl@0
   176
    User::WaitForRequest(iRenderOrientationStatus, iPublishTimerStatus);
sl@0
   177
    
sl@0
   178
    // check that the orientation was published or not, as expected
sl@0
   179
    if(iWaitForPublishOnNextTest)
sl@0
   180
        {
sl@0
   181
        // Check that it really has published
sl@0
   182
        if(iRenderOrientationStatus.Int()==KErrNone && iPublishTimerStatus.Int()==KRequestPending)
sl@0
   183
            {
sl@0
   184
            iPublishTimer.Cancel();
sl@0
   185
            // re-subscribe
sl@0
   186
            iRenderOrientationProperty.Subscribe(iRenderOrientationStatus);            
sl@0
   187
            }
sl@0
   188
        else
sl@0
   189
            {
sl@0
   190
            _LIT(KLog,"Timed out (%d) while waiting for render orientation %d to be published");
sl@0
   191
            INFO_PRINTF3(KLog,iRenderOrientationStatus.Int(),aExpectedOrientation);        
sl@0
   192
            TEST(EFalse);
sl@0
   193
            }
sl@0
   194
        }
sl@0
   195
    else
sl@0
   196
        {
sl@0
   197
        // Check that it really hasn't published    
sl@0
   198
        if(iRenderOrientationStatus.Int()!=KRequestPending)
sl@0
   199
            {
sl@0
   200
            _LIT(KLog,"Render Orientation %d was published (%d) when not expected (timeout = %d)");
sl@0
   201
            INFO_PRINTF4(KLog,aExpectedOrientation, iRenderOrientationStatus.Int(),iPublishTimerStatus.Int());
sl@0
   202
            iPublishTimer.Cancel();
sl@0
   203
            TEST(EFalse);
sl@0
   204
            }
sl@0
   205
        else if(iPublishTimerStatus.Int()!=KErrNone)
sl@0
   206
            {
sl@0
   207
            _LIT(KLog,"Timeout failure %d");
sl@0
   208
            INFO_PRINTF2(KLog,iPublishTimerStatus.Int());           
sl@0
   209
            TEST(EFalse);        
sl@0
   210
            }
sl@0
   211
        
sl@0
   212
        // reset to default
sl@0
   213
        iWaitForPublishOnNextTest = ETrue;
sl@0
   214
        }
sl@0
   215
    
sl@0
   216
    // Retrieve the value.
sl@0
   217
    TInt orientation;
sl@0
   218
    TInt err = iRenderOrientationProperty.Get(orientation);
sl@0
   219
    if(KErrNone != err)
sl@0
   220
           {
sl@0
   221
           _LIT(KLog,"iThemeServerOrientationProperty.Get(...) failed with err %d");
sl@0
   222
           INFO_PRINTF2(KLog,err);
sl@0
   223
           TEST(EFalse);
sl@0
   224
           }
sl@0
   225
    else if(aExpectedOrientation == EDisplayOrientationAuto)
sl@0
   226
        {
sl@0
   227
        TEST(orientation == iCurrentThemeServerOrientation);
sl@0
   228
        CheckHalSetting(iCurrentThemeServerOrientation);
sl@0
   229
        }
sl@0
   230
    else
sl@0
   231
        {
sl@0
   232
        TEST(orientation == aExpectedOrientation);
sl@0
   233
        CheckHalSetting(static_cast<TRenderOrientation>(orientation));
sl@0
   234
        }
sl@0
   235
    }
sl@0
   236
sl@0
   237
void CTDeviceRotation::CheckHalSetting(TRenderOrientation aOrientation)
sl@0
   238
    {
sl@0
   239
    HALData::TDigitiserOrientation halOrientationExp = static_cast<HALData::TDigitiserOrientation>
sl@0
   240
            (HALData::EDigitiserOrientation_000 + (aOrientation - EDisplayOrientationNormal));
sl@0
   241
    TInt halOrientation;
sl@0
   242
    TInt err = HAL::Get(iWs.GetFocusScreen(), HALData::EDigitiserOrientation, halOrientation);
sl@0
   243
    if (err != KErrNotSupported)
sl@0
   244
        {
sl@0
   245
        if (err != KErrNone)
sl@0
   246
            {
sl@0
   247
            _LIT(KLog,"Getting HAL orientation attribute returned error %d when no error expected");
sl@0
   248
            INFO_PRINTF2(KLog,err);
sl@0
   249
            }
sl@0
   250
        TEST(err==KErrNone);
sl@0
   251
        if (halOrientationExp != halOrientation)
sl@0
   252
            {
sl@0
   253
            _LIT(KLog,"HAL orientation is %d when expected to be %d");
sl@0
   254
            INFO_PRINTF3(KLog, halOrientation, halOrientationExp);
sl@0
   255
            }
sl@0
   256
        TEST(halOrientationExp==halOrientation);
sl@0
   257
        }
sl@0
   258
    else
sl@0
   259
        {
sl@0
   260
        _LIT(KLog,"HAL-Orientation HALData::EDigitiserOrientation isn't supported by Driver");
sl@0
   261
        INFO_PRINTF1(KLog);
sl@0
   262
        }
sl@0
   263
    }
sl@0
   264
sl@0
   265
void CTDeviceRotation::TestIndicateAppOrientation(TRenderOrientation aOrientation)
sl@0
   266
	{
sl@0
   267
    _LIT(KTestInfo, "TestIndicateAppOrientation(aOrientation = %d)");
sl@0
   268
    INFO_PRINTF2(KTestInfo, aOrientation);
sl@0
   269
	if (EDisplayOrientationIgnore == aOrientation)
sl@0
   270
	    {
sl@0
   271
        TEST(EFalse);
sl@0
   272
        _LIT(KLog, "TestIndicateAppOrientation(TRenderOrientation aOrientation) cannot be used with EDisplayOrientationIgnore");
sl@0
   273
        INFO_PRINTF1(KLog);
sl@0
   274
	    }
sl@0
   275
	iWs.IndicateAppOrientation(aOrientation);
sl@0
   276
	iWindowGroup.SetOrdinalPosition(0);
sl@0
   277
	IsOrientationCorrect(aOrientation);
sl@0
   278
	}
sl@0
   279
sl@0
   280
void CTDeviceRotation::TestIndicateAppOrientation(TRenderOrientation aOrientation, TRenderOrientation aSecondOrientation)
sl@0
   281
    {
sl@0
   282
    _LIT(KTestInfo, "TestIndicateAppOrientation(aOrientation = %d, aSecondOrientation = %d)");
sl@0
   283
    INFO_PRINTF3(KTestInfo, aOrientation, aSecondOrientation);
sl@0
   284
    //Inform window serve the orientation status
sl@0
   285
    iWs.IndicateAppOrientation(aOrientation);
sl@0
   286
    iSecondWs.IndicateAppOrientation(aSecondOrientation);
sl@0
   287
    
sl@0
   288
    iWindowGroup.SetOrdinalPosition(0,1);
sl@0
   289
    iSecondWindowGroup.SetOrdinalPosition(1,1);
sl@0
   290
sl@0
   291
    if(aOrientation != EDisplayOrientationIgnore)
sl@0
   292
        {
sl@0
   293
        IsOrientationCorrect(aOrientation);
sl@0
   294
        }
sl@0
   295
    else
sl@0
   296
        {
sl@0
   297
        IsOrientationCorrect(aSecondOrientation);
sl@0
   298
        }
sl@0
   299
    }
sl@0
   300
sl@0
   301
void CTDeviceRotation::TestAppOrientationOnSwap(TRenderOrientation aOrientation, TRenderOrientation aSecondOrientation)
sl@0
   302
    {    
sl@0
   303
    _LIT(KTestInfo, "TestAppOrientationOnSwap(aOrientation = %d, aSecondOrientation = %d)");
sl@0
   304
    INFO_PRINTF3(KTestInfo, aOrientation, aSecondOrientation);
sl@0
   305
    
sl@0
   306
    iWs.IndicateAppOrientation(aOrientation);
sl@0
   307
    iSecondWs.IndicateAppOrientation(aSecondOrientation);
sl@0
   308
    
sl@0
   309
    iSecondWindowGroup.SetOrdinalPosition(0);
sl@0
   310
    if (aSecondOrientation != EDisplayOrientationIgnore)
sl@0
   311
        {
sl@0
   312
        IsOrientationCorrect(aSecondOrientation);
sl@0
   313
        }
sl@0
   314
    else
sl@0
   315
        {
sl@0
   316
        IsOrientationCorrect(aOrientation);
sl@0
   317
        }
sl@0
   318
    }
sl@0
   319
sl@0
   320
void CTDeviceRotation::RunTestCaseL(TInt aCurTestCase)
sl@0
   321
	{
sl@0
   322
    _LIT(KNewLine, "\n");
sl@0
   323
    (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KUnknownSYMTestCaseIDName);
sl@0
   324
	switch(aCurTestCase)
sl@0
   325
		{
sl@0
   326
	    case 1:
sl@0
   327
            _LIT(KTestStepID1,"Test Initial Orientations");
sl@0
   328
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID1);
sl@0
   329
            INFO_PRINTF1(KNewLine);
sl@0
   330
            INFO_PRINTF1(KTestStepID1);
sl@0
   331
            TestInitialOrientation();
sl@0
   332
            break;
sl@0
   333
		case 2:
sl@0
   334
    	    _LIT(KTestStepID2,"Test Fixed Orientations");
sl@0
   335
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID2);
sl@0
   336
            INFO_PRINTF1(KNewLine);
sl@0
   337
            INFO_PRINTF1(KTestStepID2);
sl@0
   338
            TestFixedOrientations();
sl@0
   339
			break;
sl@0
   340
		case 3:
sl@0
   341
    	    _LIT(KTestStepID3,"Test Auto Orientation");
sl@0
   342
		    (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID3);
sl@0
   343
		    INFO_PRINTF1(KNewLine);
sl@0
   344
		    INFO_PRINTF1(KTestStepID3);
sl@0
   345
		    TestAutoOrientation();
sl@0
   346
			break;
sl@0
   347
		case 4:
sl@0
   348
            _LIT(KTestStepID4,"Test Ignore Orientation");
sl@0
   349
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID4);
sl@0
   350
            INFO_PRINTF1(KNewLine);
sl@0
   351
            INFO_PRINTF1(KTestStepID4);
sl@0
   352
            TestIgnoreOrientation();
sl@0
   353
			break;
sl@0
   354
        case 5:
sl@0
   355
            _LIT(KTestStepID5,"Test Swap Orientations");
sl@0
   356
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID5);
sl@0
   357
            INFO_PRINTF1(KNewLine);
sl@0
   358
            INFO_PRINTF1(KTestStepID5);
sl@0
   359
            TestFixedOrientationsOnWindowSwap();
sl@0
   360
			break;
sl@0
   361
        case 6:
sl@0
   362
            _LIT(KTestStepID6,"Test Auto Swap Orientations");
sl@0
   363
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID6);
sl@0
   364
            INFO_PRINTF1(KNewLine);
sl@0
   365
            INFO_PRINTF1(KTestStepID6);
sl@0
   366
            TestAutoOrientationOnWindowSwap();
sl@0
   367
            break;
sl@0
   368
        case 7:
sl@0
   369
            _LIT(KTestStepID7,"Test Ignore Swap Orientations");
sl@0
   370
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID7);
sl@0
   371
            INFO_PRINTF1(KNewLine);
sl@0
   372
            INFO_PRINTF1(KTestStepID7);
sl@0
   373
            TestIgnoreOrientationOnWindowSwap();
sl@0
   374
			break;
sl@0
   375
        case 8:
sl@0
   376
            _LIT(KTestStepID8,"Test Auto Swap Orientations");
sl@0
   377
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID8);
sl@0
   378
            INFO_PRINTF1(KNewLine);
sl@0
   379
            INFO_PRINTF1(KTestStepID8);
sl@0
   380
            TestIgnoreAutoOrientationOnWindowSwap();
sl@0
   381
            break;
sl@0
   382
        case 9:
sl@0
   383
            _LIT(KTestStepID9,"Test Invalid App Orientations");
sl@0
   384
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID9);
sl@0
   385
            INFO_PRINTF1(KNewLine);
sl@0
   386
            INFO_PRINTF1(KTestStepID9);
sl@0
   387
            TestInvalidAppOrientation();
sl@0
   388
            break;
sl@0
   389
        case 10:
sl@0
   390
            _LIT(KTestStepID10,"Test Invalid Theme Server Orientations");
sl@0
   391
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KTestStepID10);
sl@0
   392
            INFO_PRINTF1(KNewLine);
sl@0
   393
            INFO_PRINTF1(KTestStepID10);
sl@0
   394
            TestInvalidThemeServerOrientation();
sl@0
   395
            break;
sl@0
   396
		default:
sl@0
   397
            (reinterpret_cast<CTDeviceRotationStep*>(iStep))->SetTestStepID(KNotATestSYMTestCaseIDName);
sl@0
   398
			(reinterpret_cast<CTDeviceRotationStep*>(iStep))->CloseTMSGraphicsStep();
sl@0
   399
			TestComplete();
sl@0
   400
		}
sl@0
   401
	(reinterpret_cast<CTDeviceRotationStep*>(iStep))->RecordTestResultL();
sl@0
   402
	}
sl@0
   403
sl@0
   404
sl@0
   405
/**
sl@0
   406
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0001
sl@0
   407
 @SYMTestCaseDesc           Test Auto Orientation
sl@0
   408
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   409
 @SYMTestPriority           1
sl@0
   410
 @SYMTestPurpose            To test that we can return the correct initial orientation value from 
sl@0
   411
                            the windwoserver.
sl@0
   412
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   413
                            windowserver orientation changes.
sl@0
   414
                            We have set up an RWindowGroup at the foreground and not altered its
sl@0
   415
                            indicated orientation.
sl@0
   416
 @SYMTestActions            1) Get the value of the orientation as published by window server.
sl@0
   417
sl@0
   418
 @SYMTestExpectedResults    The windowserver should return EDisplayOrientationNormal
sl@0
   419
 */
sl@0
   420
void CTDeviceRotation::TestInitialOrientation()
sl@0
   421
    {
sl@0
   422
    iWaitForPublishOnNextTest = EFalse;
sl@0
   423
    IsOrientationCorrect(EDisplayOrientationNormal);
sl@0
   424
    }
sl@0
   425
sl@0
   426
/**
sl@0
   427
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0002
sl@0
   428
 @SYMTestCaseDesc           Test Fixed Orientations
sl@0
   429
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   430
 @SYMTestPriority           1
sl@0
   431
 @SYMTestPurpose            To test that we can return the correct orientation value from 
sl@0
   432
                            the windwoserver after we indicate the application orientation
sl@0
   433
                            as fixed values using RWsSession::IndicateAppOrientation. Any 
sl@0
   434
                            theme server orientations should be ignored.
sl@0
   435
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   436
                            windowserver orientation changes.
sl@0
   437
                            An RProperty is set up to publish Theme server Orientation changes. 
sl@0
   438
                            We have set up an RWindowGroup in the foreground.
sl@0
   439
                            Windowserver orientation currently set to EDisplayOrientationNormal.
sl@0
   440
sl@0
   441
 @SYMTestActions            1) Set Theme Server orientation to EDisplayOrientation90CW.
sl@0
   442
                            2) Set the RWindowgroup in ordinal position 0 to a fixed orientation.
sl@0
   443
                            3) Check the published orinetation value in windowserver.
sl@0
   444
                            4) Repeat steps 2) and 3) for all fixed orientations
sl@0
   445
                            3) Set Theme Server orientation to EDisplayOrientationNormal.
sl@0
   446
                            4) Repeat Steps 2-4).
sl@0
   447
sl@0
   448
 @SYMTestExpectedResults    The orientation set in step 2) should always be the same as the 
sl@0
   449
                            orientation set in step 2)
sl@0
   450
 */
sl@0
   451
void CTDeviceRotation::TestFixedOrientations()
sl@0
   452
    {
sl@0
   453
    iWaitForPublishOnNextTest = EFalse;
sl@0
   454
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   455
    TestIndicateAppOrientation(EDisplayOrientationNormal);
sl@0
   456
    TestIndicateAppOrientation(EDisplayOrientation90CW);
sl@0
   457
    TestIndicateAppOrientation(EDisplayOrientation180);
sl@0
   458
    TestIndicateAppOrientation(EDisplayOrientation270CW);
sl@0
   459
    
sl@0
   460
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   461
    TestIndicateAppOrientation(EDisplayOrientationNormal);
sl@0
   462
    TestIndicateAppOrientation(EDisplayOrientation90CW);
sl@0
   463
    TestIndicateAppOrientation(EDisplayOrientation180);
sl@0
   464
    TestIndicateAppOrientation(EDisplayOrientation270CW);
sl@0
   465
    
sl@0
   466
    SimulateThemeServerOrientation(EDisplayOrientation180);
sl@0
   467
    TestIndicateAppOrientation(EDisplayOrientationNormal);
sl@0
   468
    TestIndicateAppOrientation(EDisplayOrientation90CW);
sl@0
   469
    TestIndicateAppOrientation(EDisplayOrientation180);
sl@0
   470
    TestIndicateAppOrientation(EDisplayOrientation270CW);
sl@0
   471
    
sl@0
   472
    SimulateThemeServerOrientation(EDisplayOrientation270CW);
sl@0
   473
    TestIndicateAppOrientation(EDisplayOrientationNormal);
sl@0
   474
    TestIndicateAppOrientation(EDisplayOrientation90CW);
sl@0
   475
    TestIndicateAppOrientation(EDisplayOrientation180);
sl@0
   476
    TestIndicateAppOrientation(EDisplayOrientation270CW);    
sl@0
   477
    }
sl@0
   478
sl@0
   479
/**
sl@0
   480
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0003
sl@0
   481
 @SYMTestCaseDesc           Test Auto Orientation
sl@0
   482
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   483
 @SYMTestPriority           1
sl@0
   484
 @SYMTestPurpose            To test that we can return the correct orientation value from 
sl@0
   485
                            the windwoserver after we indicate the application orientation
sl@0
   486
                            as auto values using RWsSession::IndicateAppOrientation. The wserv
sl@0
   487
                            should publish the theme server orientation changes only.
sl@0
   488
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   489
                            windowserver orientation changes.
sl@0
   490
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   491
                            We have set up an RWindowGroup in the foreground.
sl@0
   492
                            WindowServer orinetation is not set to EDisplayOrientation90CW.
sl@0
   493
sl@0
   494
 @SYMTestActions            1) Set Theme Server orientation to EDisplayOrientation90CW.
sl@0
   495
                            2) Set the RWindowgroup in ordinal position 0 to auto orientation.
sl@0
   496
                            3) Check the published orinetation value in windowserver.
sl@0
   497
                            4) Set Theme Server orientation to EDisplayOrientationNormal.
sl@0
   498
                            5) Check the value of the orientation as published by window server.
sl@0
   499
                            6) Repeat 4) and 5) for EDisplayOrientation180 and 
sl@0
   500
                               EDisplayOrientation270CW
sl@0
   501
                            7) repeat 4) and 5) again for EDisplayOrientation270CW
sl@0
   502
sl@0
   503
 @SYMTestExpectedResults    We should get expected notifications where orientations have changed.
sl@0
   504
                            The orientation checked in step 3) should be the theme server 
sl@0
   505
                            orientation set in step 1).
sl@0
   506
                            The orientations checked in step 5) should be the theme server 
sl@0
   507
                            orientations set in step 4).
sl@0
   508
                            We should recieve no notification for step 7).
sl@0
   509
 */
sl@0
   510
void CTDeviceRotation::TestAutoOrientation()
sl@0
   511
    {
sl@0
   512
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   513
    TestIndicateAppOrientation(EDisplayOrientationAuto);
sl@0
   514
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   515
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   516
    // Now flip it upside down to ensure that nothing assumes this will only be updated incrementally
sl@0
   517
    SimulateThemeServerOrientation(EDisplayOrientation180);
sl@0
   518
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   519
    SimulateThemeServerOrientation(EDisplayOrientation270CW);
sl@0
   520
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   521
    
sl@0
   522
    // And check that wserv doesn't publish if the theme server publishes the existing orientation
sl@0
   523
    SimulateThemeServerOrientation(EDisplayOrientation270CW);
sl@0
   524
    iWaitForPublishOnNextTest = EFalse;    
sl@0
   525
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   526
    }
sl@0
   527
sl@0
   528
/**
sl@0
   529
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0004
sl@0
   530
 @SYMTestCaseDesc           Test Ignore Orientation
sl@0
   531
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   532
 @SYMTestPriority           1
sl@0
   533
 @SYMTestPurpose            To test that we can return the correct orientation value from 
sl@0
   534
                            the windwoserver after we indicate the front applications 
sl@0
   535
                            orientation as ignore.  
sl@0
   536
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   537
                            windowserver orientation changes.
sl@0
   538
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   539
                            We have set up two RWindowGroups in the ordinal positions 0 and 1. 
sl@0
   540
                            WindowServer orinetation is not set to EDisplayOrientationNormal.
sl@0
   541
sl@0
   542
 @SYMTestActions            1) Set Theme Server orientation to EDisplayOrientation90CW.
sl@0
   543
                            2) Set the RWindowGroup in ordinal position 0 to a ignore orientation.
sl@0
   544
                            3) Set the RWindowgroup in ordinal position 1 to a fixed orientation.
sl@0
   545
                            4) Check the published orinetation value in windowserver.
sl@0
   546
                            5) Repeat steps 2-4) varying the fixed orientation set in step 2).
sl@0
   547
                            6) Set Theme Server orientation to EDisplayOrientation90CW.
sl@0
   548
                            7) Set the RWindowGroup in ordinal position 0 to a ignore orientation.
sl@0
   549
                            8) Set the RWindowgroup in ordinal position 1 to a fixed orientation.
sl@0
   550
                            9) Check the published orinetation value in windowserver.
sl@0
   551
                            10) Set Theme Server orientation to EDisplayOrientationNormal.
sl@0
   552
                            11) Check the published orinetation value in windowserver.
sl@0
   553
sl@0
   554
 @SYMTestExpectedResults    We should get expected notifications where orientations have changed.
sl@0
   555
                            All orientations checked in step 4) should be the fixed orientations 
sl@0
   556
                            of the windows in ordinal position 1, as set in step 3).
sl@0
   557
                            The orientation checked in step 9) should be the theme server 
sl@0
   558
                            orientation set in step 6).
sl@0
   559
                            The orientation checked in step 11) should be the theme server 
sl@0
   560
                            orientation set in step 10).
sl@0
   561
 */
sl@0
   562
void CTDeviceRotation::TestIgnoreOrientation()
sl@0
   563
    {
sl@0
   564
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   565
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientationNormal);
sl@0
   566
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation90CW);
sl@0
   567
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation180);
sl@0
   568
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation270CW);
sl@0
   569
    
sl@0
   570
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   571
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientationAuto);
sl@0
   572
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   573
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   574
    }
sl@0
   575
sl@0
   576
/**
sl@0
   577
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0005
sl@0
   578
 @SYMTestCaseDesc           Test Fixed Orientations On Swap
sl@0
   579
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   580
 @SYMTestPriority           1
sl@0
   581
 @SYMTestPurpose            To test that we get notifactation of a change in orientation and can 
sl@0
   582
                            return the correct orientation value from the windwoserver after we 
sl@0
   583
                            swap windows with varying fixed orienations.  
sl@0
   584
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   585
                            windowserver orientation changes.
sl@0
   586
                            We have set up two RWindowGroups in the ordinal positions 0 and 1. 
sl@0
   587
sl@0
   588
 @SYMTestActions            1) Set the RWindowGroup in ordinal position 0 to a fixed orientation.
sl@0
   589
                            2) Set the RWindowgroup in ordinal position 1 to a fixed orientation.
sl@0
   590
                            3) Check the published orinetation value in windowserver.
sl@0
   591
                            4) Move the RWindowGroup ordinal position 1 to the ordinal position 0.
sl@0
   592
                            5) Check the published orinetation value in windowserver.
sl@0
   593
                            6) Repeat steps 1-5 but vary the values the fixed orientation of the 
sl@0
   594
                               RWindows set in steps 1) and 2)
sl@0
   595
sl@0
   596
 @SYMTestExpectedResults    We should get expected notifications where orientations have changed.
sl@0
   597
                            All orientations checked in step 3) should be the fixed orientations 
sl@0
   598
                            of the windows in ordinal position 0, as set in step 1).
sl@0
   599
                            The orientations checked in step 5) should be the fixed orientations 
sl@0
   600
                            of the windows which was in ordinal position 1 before each swap, as 
sl@0
   601
                            set in step 2).
sl@0
   602
 */
sl@0
   603
void CTDeviceRotation::TestFixedOrientationsOnWindowSwap()
sl@0
   604
    {
sl@0
   605
    iWaitForPublishOnNextTest = EFalse;
sl@0
   606
    TestIndicateAppOrientation(EDisplayOrientationNormal, EDisplayOrientationNormal);
sl@0
   607
    iWaitForPublishOnNextTest = EFalse;
sl@0
   608
    TestAppOrientationOnSwap(EDisplayOrientationNormal, EDisplayOrientationNormal);
sl@0
   609
    TestIndicateAppOrientation(EDisplayOrientationNormal, EDisplayOrientation90CW);
sl@0
   610
    TestAppOrientationOnSwap(EDisplayOrientationNormal, EDisplayOrientation90CW);
sl@0
   611
    TestIndicateAppOrientation(EDisplayOrientation90CW, EDisplayOrientationNormal);
sl@0
   612
    TestAppOrientationOnSwap(EDisplayOrientation90CW, EDisplayOrientationNormal);
sl@0
   613
    }
sl@0
   614
sl@0
   615
/**
sl@0
   616
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0006
sl@0
   617
 @SYMTestCaseDesc           Test Auto Orientations On Swap
sl@0
   618
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   619
 @SYMTestPriority           1
sl@0
   620
 @SYMTestPurpose            To test that we get notifactation of a change in orientation and can 
sl@0
   621
                            return the correct orientation value from the windwoserver after we 
sl@0
   622
                            swap windows with auto orienations.  
sl@0
   623
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   624
                            windowserver orientation changes.
sl@0
   625
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   626
                            We have set up two RWindowGroups in the ordinal positions 0 and 1.
sl@0
   627
                            WindowServer orinetation is not set to EDisplayOrientation270CW. 
sl@0
   628
sl@0
   629
 @SYMTestActions            1) Set the theme server orientation.
sl@0
   630
                            2) Set the RWindowGroup in ordinal position 0 to a fixed orientation.
sl@0
   631
                            3) Set the RWindowGroup in ordinal position 1 to auto orientation.
sl@0
   632
                            4) Check the published orinetation value in windowserver.
sl@0
   633
                            5) Move the RWindowGroup ordinal position 1 to the ordinal position 0. 
sl@0
   634
                            6) Check the published orinetation value in windowserver.
sl@0
   635
                            7) Repeat steps 1-6 but vary the values of the theme server 
sl@0
   636
                               orientation in step 1) and the fixed orientation of the frontwindow
sl@0
   637
                               in 2)
sl@0
   638
 @SYMTestExpectedResults    We should get expected notifications where orientations have changed.
sl@0
   639
                            All orientations checked in step 4) should be the fixed orientations 
sl@0
   640
                            of the front windows, which have been set in step 2).
sl@0
   641
                            All orientations checked in step 6) should be the theme server 
sl@0
   642
                            orientations set in step 1)
sl@0
   643
 */
sl@0
   644
void CTDeviceRotation::TestAutoOrientationOnWindowSwap()
sl@0
   645
    {
sl@0
   646
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   647
    TestIndicateAppOrientation(EDisplayOrientation270CW, EDisplayOrientationAuto);
sl@0
   648
    TestAppOrientationOnSwap(EDisplayOrientation270CW, EDisplayOrientationAuto);
sl@0
   649
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   650
    TestIndicateAppOrientation(EDisplayOrientationAuto, EDisplayOrientation180);
sl@0
   651
    TestAppOrientationOnSwap(EDisplayOrientationAuto, EDisplayOrientation180);
sl@0
   652
    
sl@0
   653
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   654
    TestIndicateAppOrientation(EDisplayOrientation90CW, EDisplayOrientationAuto);
sl@0
   655
    iWaitForPublishOnNextTest = EFalse;
sl@0
   656
    TestAppOrientationOnSwap(EDisplayOrientation90CW, EDisplayOrientationAuto);
sl@0
   657
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   658
    TestIndicateAppOrientation(EDisplayOrientationAuto, EDisplayOrientationNormal);
sl@0
   659
    iWaitForPublishOnNextTest = EFalse;
sl@0
   660
    TestAppOrientationOnSwap(EDisplayOrientationAuto, EDisplayOrientationNormal);
sl@0
   661
    }
sl@0
   662
sl@0
   663
/**
sl@0
   664
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0007
sl@0
   665
 @SYMTestCaseDesc           Test Swap Orientations with Ignore Orientation
sl@0
   666
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   667
 @SYMTestPriority           1
sl@0
   668
 @SYMTestPurpose            To test that we get notifactation of a change in orientation and can 
sl@0
   669
                            return the correct orientation value from the windwoserver after we 
sl@0
   670
                            swap windows with ignore orienations.  
sl@0
   671
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   672
                            windowserver orientation changes.
sl@0
   673
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   674
                            We have set up two RWindowGroups in the ordinal positions 0 and 1. 
sl@0
   675
sl@0
   676
 @SYMTestActions            1) Set the theme server orientation.
sl@0
   677
                            2) Set the RWindowGroup in ordinal position 0 to ignore orientation.
sl@0
   678
                            3) Set the RWindowGroup in ordinal position 1 to a fixed orientation.
sl@0
   679
                            4) Check the published orinetation value in windowserver.
sl@0
   680
                            5) Move the RWindowGroup ordinal position 1 to the ordinal position 0. 
sl@0
   681
                            6) Check the published orinetation value in windowserver.
sl@0
   682
                            7) Repeat steps 1-6 but vary the values of the theme server 
sl@0
   683
                               orientation in step 1) and the fixed orientation of the frontwindow
sl@0
   684
                               in 3)
sl@0
   685
                            8) Set the theme server orientation.
sl@0
   686
                            9) Set the RWindowGroup in ordinal position 0 to a fixedorientation.
sl@0
   687
                            10) Set the RWindowGroup in ordinal position 1 to ignore orienation.
sl@0
   688
                            11) Repeat steps 4-6) 
sl@0
   689
                            12) Repeat steps 8-11) but vary the values of the theme server 
sl@0
   690
                               orientation in step 8) and the fixed orientation of the 
sl@0
   691
                               RwindowGroup in 9)                            
sl@0
   692
                               
sl@0
   693
 @SYMTestExpectedResults    We should get expected notifications where orientations have changed.
sl@0
   694
                            All orientations checked in step 4) and 6) should be the fixed 
sl@0
   695
                            orientations RWindowGroups which have been set in step 3).
sl@0
   696
                            All orientations checked in step 11) should be the fixed orientations 
sl@0
   697
                            of the front RWindowGroups which have been set in step 9).
sl@0
   698
*/
sl@0
   699
void CTDeviceRotation::TestIgnoreOrientationOnWindowSwap()
sl@0
   700
    {
sl@0
   701
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   702
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientation270CW);
sl@0
   703
    TestAppOrientationOnSwap(EDisplayOrientationIgnore, EDisplayOrientation180);
sl@0
   704
    
sl@0
   705
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   706
    TestIndicateAppOrientation(EDisplayOrientationIgnore, EDisplayOrientationNormal);
sl@0
   707
    TestAppOrientationOnSwap(EDisplayOrientationIgnore, EDisplayOrientation90CW);
sl@0
   708
    
sl@0
   709
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   710
    TestIndicateAppOrientation(EDisplayOrientation270CW, EDisplayOrientationIgnore);
sl@0
   711
    TestAppOrientationOnSwap(EDisplayOrientation180, EDisplayOrientationIgnore);    
sl@0
   712
    
sl@0
   713
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   714
    TestIndicateAppOrientation(EDisplayOrientationNormal, EDisplayOrientationIgnore);
sl@0
   715
    TestAppOrientationOnSwap(EDisplayOrientation90CW, EDisplayOrientationIgnore);
sl@0
   716
    }
sl@0
   717
sl@0
   718
/**
sl@0
   719
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0008
sl@0
   720
 @SYMTestCaseDesc           Test Swap Orientations with Auto and Ignore Orientations
sl@0
   721
 @SYMPREQ                   460936 Tracking Device Rotation
sl@0
   722
 @SYMTestPriority           1
sl@0
   723
 @SYMTestPurpose            To test that we get notifactation of a change in orientation and can 
sl@0
   724
                            return the correct orientation value from the windwoserver after we 
sl@0
   725
                            swap windows with auto and ignore orienations.  
sl@0
   726
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   727
                            windowserver orientation changes.
sl@0
   728
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   729
                            We have set up two RWindowGroups in the ordinal positions 0 and 1. 
sl@0
   730
 @SYMTestActions            1) Set the theme server orientation to EDisplayOrientationNormal.
sl@0
   731
                            2) Set the RWindowGroup in ordinal position 0 to auto orientation.
sl@0
   732
                            3) Set the RWindowGroup in ordinal position 1 to ignore orientation.
sl@0
   733
                            4) Check the published orinetation value in windowserver.
sl@0
   734
                            5) Set the theme server orientation to EDisplayOrientation90CW.
sl@0
   735
                            6) Check the published orinetation value in windowserver.
sl@0
   736
                            7) Set the theme server orientation to EDisplayOrientationNormal.
sl@0
   737
                            8) Move the RWindowGroup in ordinal position 1 to ordinal position 0.
sl@0
   738
                            9) Check the published orinetation value in windowserver.
sl@0
   739
                            10) Set the theme server orientation to EDisplayOrientation90CW.
sl@0
   740
                            11) Check the published orinetation value in windowserver.
sl@0
   741
sl@0
   742
 @SYMTestExpectedResults    We should get expected notifications where orientations have changed.
sl@0
   743
                            The orientations checked in step 4), 6), 9) and  11) should all be 
sl@0
   744
                            the orientations set to the themeserver in steps 1), 5), 8) and 10)
sl@0
   745
                            respecvtively. 
sl@0
   746
*/
sl@0
   747
void CTDeviceRotation::TestIgnoreAutoOrientationOnWindowSwap()
sl@0
   748
    {
sl@0
   749
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   750
    TestIndicateAppOrientation(EDisplayOrientationAuto, EDisplayOrientationIgnore);
sl@0
   751
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   752
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   753
    
sl@0
   754
    SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   755
    iSecondWindowGroup.SetOrdinalPosition(0);
sl@0
   756
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   757
    SimulateThemeServerOrientation(EDisplayOrientation90CW);
sl@0
   758
    IsOrientationCorrect(iCurrentThemeServerOrientation);
sl@0
   759
    }
sl@0
   760
sl@0
   761
/**
sl@0
   762
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0009
sl@0
   763
 @SYMTestCaseDesc           Test Invalid App Orientation
sl@0
   764
 @SYMPREQ                   ###TrackingDeviceRotation### TODO replace me
sl@0
   765
 @SYMTestPriority           1
sl@0
   766
 @SYMTestPurpose            To test that an invalid orientation is ignored.
sl@0
   767
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   768
                            windowserver orientation changes.
sl@0
   769
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   770
                            We have set up an RWindowGroup in ordinal position 0.
sl@0
   771
 @SYMTestActions            1) Set the theme server orientation to EDisplayOrientationNormal.
sl@0
   772
                            2) Set the RWindowGroup in ordinal position 0 to 
sl@0
   773
                               EDisplayOrientation90CW.
sl@0
   774
                            4) Check the published orinetation value in windowserver.
sl@0
   775
                            5) Set the RWindowGroup in ordinal position 0 to an invalid 
sl@0
   776
                               orientation.
sl@0
   777
                            6) Check the published orinetation value in windowserver.
sl@0
   778
sl@0
   779
 @SYMTestExpectedResults    Wserv should publish an orientation change for 2) but not for 5).
sl@0
   780
                            The orientations checked in steps 4) and 6) should both be the 
sl@0
   781
                            orientation set in step 2).
sl@0
   782
*/
sl@0
   783
void CTDeviceRotation::TestInvalidAppOrientation()
sl@0
   784
	{
sl@0
   785
	SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   786
	TestIndicateAppOrientation(EDisplayOrientation90CW);
sl@0
   787
	iWs.IndicateAppOrientation(static_cast<TRenderOrientation>(1000));
sl@0
   788
	iWaitForPublishOnNextTest = EFalse;
sl@0
   789
	IsOrientationCorrect(EDisplayOrientation90CW);
sl@0
   790
	}
sl@0
   791
sl@0
   792
/**
sl@0
   793
 @SYMTestCaseID             GRAPHICS-WSERV-DEVICEROTATION-0010
sl@0
   794
 @SYMTestCaseDesc           Test Invalid Theme Server Orientation
sl@0
   795
 @SYMPREQ                   ###TrackingDeviceRotation### TODO replace me
sl@0
   796
 @SYMTestPriority           1
sl@0
   797
 @SYMTestPurpose            To test that an invalid theme server orientation is ignored when
sl@0
   798
                            the app orientation has been set to auto.
sl@0
   799
 @SYMPrerequisites          An RProperty is set up to subscribe to notifications of 
sl@0
   800
                            windowserver orientation changes.
sl@0
   801
                            An RProperty is set up to publish Theme server Orientation changes.
sl@0
   802
                            We have set up an RWindowGroup in ordinal position 0.
sl@0
   803
 @SYMTestActions            1) Set the theme server orientation to EDisplayOrientationNormal.
sl@0
   804
                            2) Set the RWindowGroup in ordinal position 0 to 
sl@0
   805
                               EDisplayOrientationAuto.
sl@0
   806
                            4) Check the published orinetation value in windowserver.
sl@0
   807
                            5) Set the theme server orientation to an invalid orientation.
sl@0
   808
                            6) Check the published orinetation value in windowserver.
sl@0
   809
sl@0
   810
 @SYMTestExpectedResults    Wserv should publish an orientation change for 2) but not for 5).
sl@0
   811
                            The orientations checked in steps 4) and 6) should both be the 
sl@0
   812
                            theme server orientation set in step 1).
sl@0
   813
*/
sl@0
   814
void CTDeviceRotation::TestInvalidThemeServerOrientation()
sl@0
   815
	{
sl@0
   816
	SimulateThemeServerOrientation(EDisplayOrientationNormal);
sl@0
   817
	TestIndicateAppOrientation(EDisplayOrientationAuto);
sl@0
   818
	SimulateThemeServerOrientation(static_cast<TRenderOrientation>(5000));
sl@0
   819
	iWaitForPublishOnNextTest = EFalse;
sl@0
   820
	IsOrientationCorrect(EDisplayOrientationNormal);
sl@0
   821
	}
sl@0
   822
sl@0
   823
__CONSTRUCT_STEP__(DeviceRotation)