sl@0
|
1 |
// Copyright (c) 2008-2009 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 |
// Test class that allows a scriopt to set global values
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "globalsettings.h"
|
sl@0
|
19 |
#include <test/extendtef.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
TGlobalSettings settings_instance={0,0};
|
sl@0
|
22 |
const TGlobalSettings& TGlobalSettings::Instance()
|
sl@0
|
23 |
{
|
sl@0
|
24 |
return settings_instance;
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
// Create a suite of all the tests
|
sl@0
|
28 |
CTestSuite* CGlobalSettings::CreateSuiteL(const TDesC& aName)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
SUB_SUITE_OPT(CGlobalSettings,NULL);
|
sl@0
|
31 |
|
sl@0
|
32 |
ADD_TEST_STEP_PARAM_RANGE(SetScreenNoL,0,9);
|
sl@0
|
33 |
ADD_TEST_STEP_PARAM_BOOL(ExpectDisconnectedScreenL);
|
sl@0
|
34 |
|
sl@0
|
35 |
END_SUITE;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
void CGlobalSettings::SetScreenNoL(TInt aScreenNo)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
RWsSession session;
|
sl@0
|
41 |
ASSERT_EQUALS(session.Connect(), KErrNone);
|
sl@0
|
42 |
TInt maxScreens=session.NumberOfScreens();
|
sl@0
|
43 |
|
sl@0
|
44 |
if (maxScreens>aScreenNo)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
INFO_PRINTF2(_L("New screen number for all output selected: %i"),aScreenNo);
|
sl@0
|
47 |
{
|
sl@0
|
48 |
CWsScreenDevice screen(session);
|
sl@0
|
49 |
screen.Construct(aScreenNo);
|
sl@0
|
50 |
screen.SetCurrentRotations(0,CFbsBitGc::TGraphicsOrientation(0));
|
sl@0
|
51 |
screen.SetScreenMode(0);
|
sl@0
|
52 |
screen.SetAppScreenMode(0);
|
sl@0
|
53 |
}
|
sl@0
|
54 |
settings_instance.iScreen=aScreenNo;
|
sl@0
|
55 |
session.Flush();
|
sl@0
|
56 |
session.Close();
|
sl@0
|
57 |
}
|
sl@0
|
58 |
else
|
sl@0
|
59 |
{
|
sl@0
|
60 |
INFO_PRINTF1(_L("**************************"));
|
sl@0
|
61 |
INFO_PRINTF1(_L(""));
|
sl@0
|
62 |
INFO_PRINTF3(_L("Can't set screen output to %i. Only got %i screens"),aScreenNo,maxScreens);
|
sl@0
|
63 |
INFO_PRINTF2(_L("Screen number for all output remains at: %i"),settings_instance.iScreen);
|
sl@0
|
64 |
|
sl@0
|
65 |
INFO_PRINTF1(_L(""));
|
sl@0
|
66 |
INFO_PRINTF1(_L("**************************"));
|
sl@0
|
67 |
session.Flush();
|
sl@0
|
68 |
session.Close();
|
sl@0
|
69 |
User::Leave(KErrTEFUnitFail);
|
sl@0
|
70 |
}
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
void CGlobalSettings::ExpectDisconnectedScreenL(TBool aValue)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
settings_instance.iDisconnected=aValue;
|
sl@0
|
76 |
}
|