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