diff -r 000000000000 -r 2f259fa3e83a commonuisupport/uikon/test/teiksrv/tcapability/TCapability2.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/commonuisupport/uikon/test/teiksrv/tcapability/TCapability2.cpp Tue Feb 02 01:00:49 2010 +0200 @@ -0,0 +1,107 @@ +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// The following test case is used to test whether uiktestserver has the capability +// to access writable apis +// +// + +/** + @file + @internalComponent - Internal Symbian test code +*/ + +#include "TCapability2.h" +#include +#include "eiksrvc.h" +#include +#include + +/** + @SYMTestCaseID UIF-UIKON-0002 + + @SYMPREQ Policing server apis + + @SYMTestCaseDesc Testing whether uiktestserver has the capability to access writable apis + + @SYMTestPriority High + + @SYMTestStatus Implemented + + @SYMTestActions + To connect to REikAppUiSession and to check whether uiktestserver process + has the permission to access the mentioned apis + API Calls:\n + REikAppUiSession::Connect(); + REikAppUiSession::OpenFepAttributes(); + REikAppUiSession::SetInstalledFepName(const TDesC& aName, TBool aRaiseFileError) const; + REikAppUiSession::SetFepAttribute(TUid aAttribUid, const TDesC8& aAttribData) const; + REikAppUiSession::CommitFepAttributes() const ; + @SYMTestExpectedResults Test should complete without any panic. + + */ +void CTCapability2Step::ExecuteL() + { + TInt ret; + REikAppUiSession uiSession; + + TEST(uiSession.Connect()==KErrNone); + CleanupClosePushL(uiSession); + + TSecurityInfo info; + info.Set(RProcess()); + + ret=uiSession.SetInstalledFepName(KNullDesC,FALSE); + INFO_PRINTF1(_L("Capability check of SetInstalledFepName")); + INFO_PRINTF3(_L("Expected return code: %d, Actual return code: %d"), KErrNone, ret); + TEST(ret==KErrNone); + + uiSession.OpenFepAttributes(); + + ret=uiSession.SetFepAttribute(KNullUid,KNullDesC8); + INFO_PRINTF1(_L("Capability check of SetFepAttribute")); + INFO_PRINTF3(_L("Expected return code: %d, Actual return code: %d"), KErrNone, ret); + TEST(ret==KErrNone); + + CleanupStack::PopAndDestroy(&uiSession); + } + +CTCapability2Step::CTCapability2Step() +/** + Constructor + */ + { + // Call base class method to set up the human readable name for logging + SetTestStepName(KTCapability2Step); + } + +CTCapability2Step::~CTCapability2Step() + { + } + +TVerdict CTCapability2Step::doTestStepL() + { + INFO_PRINTF1(_L("UIF-UIKON-0002: Capability2 - Started")); + + __UHEAP_MARK; // mark heap state + SetTestStepID(_L("UIF-UIKON-0002")); + TRAPD(error,ExecuteL()); // do most stuff under cleanup stack + __ASSERT_ALWAYS(!error,User::Panic(_L("TestParse"),error)); + RecordTestResultL(); + CloseTMSGraphicsStep(); + __UHEAP_MARKEND; // check no memory leak + + INFO_PRINTF1(_L("UIF-UIKON-0002: Capability2 - Finished")); + + return TestStepResult(); + }