sl@0
|
1 |
// Copyright (c) 2004-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 |
// The main purpose of this application is to test
|
sl@0
|
15 |
// starting of SysAgt2 server and testing RProperty::Get()/Set() methods on
|
sl@0
|
16 |
// protected by capability properties.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32test.h>
|
sl@0
|
21 |
#include <e32debug.h>
|
sl@0
|
22 |
#include <e32property.h>
|
sl@0
|
23 |
#include <sacls.h>
|
sl@0
|
24 |
#include <e32const.h>
|
sl@0
|
25 |
#include <saclsdefines.h>
|
sl@0
|
26 |
#include "SaPrivate.h"
|
sl@0
|
27 |
#include <saclscommon.h>
|
sl@0
|
28 |
static RTest TheTest(_L("T_SysAgt2"));
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KSysAgent2ServerName, "SysAgt2Svr");
|
sl@0
|
31 |
|
sl@0
|
32 |
//
|
sl@0
|
33 |
//
|
sl@0
|
34 |
//Test macroses and functions
|
sl@0
|
35 |
LOCAL_C void Check(TInt aValue, TInt aLine)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
if(!aValue)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
TheTest(EFalse, aLine);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
}
|
sl@0
|
42 |
static void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
if(aValue != aExpected)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
47 |
TheTest(EFalse, aLine);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
}
|
sl@0
|
50 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
51 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
52 |
//
|
sl@0
|
53 |
//
|
sl@0
|
54 |
|
sl@0
|
55 |
struct keyAssociation
|
sl@0
|
56 |
{
|
sl@0
|
57 |
TUid iCategory;
|
sl@0
|
58 |
TUint iProperty;
|
sl@0
|
59 |
TBool iIsInt;
|
sl@0
|
60 |
};
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
* These are keys which are defined by SystemAgent2
|
sl@0
|
64 |
* which belong to other subsystems.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
|
sl@0
|
67 |
keyAssociation KSaExternalKeys[]=
|
sl@0
|
68 |
{
|
sl@0
|
69 |
KUidSystemCategory,KSAUidJavaInstallKeyValue,ETrue, // Java Install Key
|
sl@0
|
70 |
KUidSystemCategory,KSAUidSoftwareInstallKeyValue,ETrue, // Software Install Key
|
sl@0
|
71 |
KUidSystemCategory,KUidSwiLatestInstallation,ETrue,
|
sl@0
|
72 |
KUidSystemCategory,KUidJmiLatestInstallation,ETrue,
|
sl@0
|
73 |
KUidSystemCategory,KUidUnifiedCertstoreFlag,ETrue,
|
sl@0
|
74 |
KUidSystemCategory,KUidBackupRestoreKey,ETrue,
|
sl@0
|
75 |
KSAPosIndicatorCategory,KSAPosIntGpsHwStatus,ETrue,
|
sl@0
|
76 |
KSAPosLastKnownLocationCategory,KSAPosLastKnownLocation,EFalse
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
TBool IsProcessRunning(const TDesC& aProcessName)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
TFullName name;
|
sl@0
|
82 |
TBool IsProcessRunning(EFalse);
|
sl@0
|
83 |
TBuf<64> pattern(aProcessName);
|
sl@0
|
84 |
TInt length = pattern.Length();
|
sl@0
|
85 |
pattern += _L("*");
|
sl@0
|
86 |
TFindProcess procFinder(pattern);
|
sl@0
|
87 |
|
sl@0
|
88 |
while(procFinder.Next(name) == KErrNone)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
if(name.Length() > length)
|
sl@0
|
91 |
{//If found name is a string containing aProcessName string.
|
sl@0
|
92 |
TChar c(name[length]);
|
sl@0
|
93 |
if(c.IsAlphaDigit() || c == TChar('_') || c == TChar('-'))
|
sl@0
|
94 |
{//If the found name is other valid application name starting with aProcessName string.
|
sl@0
|
95 |
RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
|
sl@0
|
96 |
continue;
|
sl@0
|
97 |
}
|
sl@0
|
98 |
}
|
sl@0
|
99 |
RProcess proc;
|
sl@0
|
100 |
if(proc.Open(name) == KErrNone)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
if (EExitKill == proc.ExitType())
|
sl@0
|
103 |
{
|
sl@0
|
104 |
RDebug::Print(_L("\"%S\" process killed.\n"), &name);
|
sl@0
|
105 |
proc.Close();
|
sl@0
|
106 |
IsProcessRunning = EFalse;
|
sl@0
|
107 |
}
|
sl@0
|
108 |
else
|
sl@0
|
109 |
{
|
sl@0
|
110 |
IsProcessRunning = ETrue;
|
sl@0
|
111 |
RDebug::Print(_L("\"%S\" process is running.\n"), &name);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
if(IsProcessRunning)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
RDebug::Print(_L("Waiting additional time...\n"), &name);
|
sl@0
|
117 |
|
sl@0
|
118 |
User::After(1000000);
|
sl@0
|
119 |
|
sl@0
|
120 |
if (EExitKill == proc.ExitType())
|
sl@0
|
121 |
{
|
sl@0
|
122 |
RDebug::Print(_L("\"%S\" process now killed.\n"), &name);
|
sl@0
|
123 |
IsProcessRunning = EFalse;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
proc.Close();
|
sl@0
|
127 |
}
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
|
sl@0
|
131 |
}
|
sl@0
|
132 |
return IsProcessRunning;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
//
|
sl@0
|
136 |
//
|
sl@0
|
137 |
|
sl@0
|
138 |
/**
|
sl@0
|
139 |
@SYMTestCaseID SYSLIB-SYSAGENT2-CT-1254
|
sl@0
|
140 |
@SYMTestCaseDesc Tests for SysAgt2 server
|
sl@0
|
141 |
@SYMTestPriority High
|
sl@0
|
142 |
@SYMTestActions Tests for RProperty::Set() and RProperty::Get() functions
|
sl@0
|
143 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
144 |
@SYMREQ REQ0000
|
sl@0
|
145 |
*/
|
sl@0
|
146 |
static void RunTestsL()
|
sl@0
|
147 |
{
|
sl@0
|
148 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SYSAGENT2-CT-1254 StartSysAgt2() test 1 "));
|
sl@0
|
149 |
TInt err = ::StartSysAgt2();
|
sl@0
|
150 |
TEST(err == KErrNone);
|
sl@0
|
151 |
|
sl@0
|
152 |
//proves that server does not run
|
sl@0
|
153 |
err = IsProcessRunning(KSysAgent2ServerName);
|
sl@0
|
154 |
TEST2(err,EFalse);
|
sl@0
|
155 |
|
sl@0
|
156 |
TheTest.Next(_L("Capability test"));
|
sl@0
|
157 |
//The access to KUidPhonePwr, KUidSIMStatus, KUidNetworkStatus, KUidNetworkStrength,
|
sl@0
|
158 |
//KUidChargerStatus, KUidBatteryStrength, KUidCurrentCall capabilities is protected
|
sl@0
|
159 |
//by different capabilities. T_SAgtTest has only ReadDeviceData. Then, all attempts
|
sl@0
|
160 |
//to write/read to/from protected capabilities must fail.
|
sl@0
|
161 |
if(PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) &&
|
sl@0
|
162 |
PlatSec::IsCapabilityEnforced(ECapabilityWriteDeviceData))
|
sl@0
|
163 |
{
|
sl@0
|
164 |
err = RProperty::Set(KUidSystemCategory, KUidPhonePwr.iUid, 1);
|
sl@0
|
165 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
166 |
|
sl@0
|
167 |
err = RProperty::Set(KUidSystemCategory, KUidSIMStatus.iUid, 1);
|
sl@0
|
168 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
169 |
|
sl@0
|
170 |
err = RProperty::Set(KUidSystemCategory, KUidNetworkStatus.iUid, 1);
|
sl@0
|
171 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
172 |
|
sl@0
|
173 |
err = RProperty::Set(KUidSystemCategory, KUidNetworkStrength.iUid, 1);
|
sl@0
|
174 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
175 |
|
sl@0
|
176 |
err = RProperty::Set(KUidSystemCategory, KUidChargerStatus.iUid, 1);
|
sl@0
|
177 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
178 |
|
sl@0
|
179 |
err = RProperty::Set(KUidSystemCategory, KUidBatteryStrength.iUid, 1);
|
sl@0
|
180 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
181 |
|
sl@0
|
182 |
err = RProperty::Set(KUidSystemCategory, KUidCurrentCall.iUid, 1);
|
sl@0
|
183 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
TheTest.Next(_L("Capability test 2"));
|
sl@0
|
187 |
//If all 48 predefined properties were registered successfully (by SysAgent server),
|
sl@0
|
188 |
//the test must be able to read their values.
|
sl@0
|
189 |
const TInt KPropertyCount = 48;
|
sl@0
|
190 |
TUid saUid = TUid::Uid(KUidPhonePwrValue);
|
sl@0
|
191 |
for(TInt i=0;i<KPropertyCount;++i)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
TInt val = 0;
|
sl@0
|
194 |
err = RProperty::Get(KUidSystemCategory, saUid.iUid, val);
|
sl@0
|
195 |
TEST2(err, KErrNone);
|
sl@0
|
196 |
++saUid.iUid;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
TheTest.Next(_L("Other defined Properties test"));
|
sl@0
|
200 |
// This test checks that the other publish and subscribe properties
|
sl@0
|
201 |
// have been defined by SystemAgent2. These are properties which are used
|
sl@0
|
202 |
// in other subsystems, mainly defined by this component due to PlatSec
|
sl@0
|
203 |
// restrictions requiring WriteUserData to define a property.
|
sl@0
|
204 |
for (TInt i=0; i < sizeof(KSaExternalKeys) / sizeof(KSaExternalKeys[0]); ++i)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
if(KSaExternalKeys[i].iIsInt)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
TInt propertyValue=0;
|
sl@0
|
209 |
err = RProperty::Get(KSaExternalKeys[i].iCategory, KSaExternalKeys[i].iProperty, propertyValue);
|
sl@0
|
210 |
}
|
sl@0
|
211 |
else
|
sl@0
|
212 |
{
|
sl@0
|
213 |
TBuf8<512> propertyValue;
|
sl@0
|
214 |
err = RProperty::Get(KSaExternalKeys[i].iCategory, KSaExternalKeys[i].iProperty, propertyValue);
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
|
sl@0
|
218 |
// We expect the property to be defined, but we cannot make any assumptions
|
sl@0
|
219 |
// about what value it will have since it could have been changed before
|
sl@0
|
220 |
// the test gets here.
|
sl@0
|
221 |
TEST(err==KErrNone);
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
GLDEF_C TInt E32Main()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
229 |
__UHEAP_MARK;
|
sl@0
|
230 |
|
sl@0
|
231 |
TheTest.Title();
|
sl@0
|
232 |
TRAPD(err, ::RunTestsL());
|
sl@0
|
233 |
TheTest(err == KErrNone);
|
sl@0
|
234 |
TheTest.End();
|
sl@0
|
235 |
TheTest.Close();
|
sl@0
|
236 |
|
sl@0
|
237 |
delete tc;
|
sl@0
|
238 |
|
sl@0
|
239 |
__UHEAP_MARKEND;
|
sl@0
|
240 |
User::Heap().Check();
|
sl@0
|
241 |
return KErrNone;
|
sl@0
|
242 |
}
|