os/persistentdata/featuremgmt/featureregistry/test/helper/testpublish/testpublish.cpp
Update contrib.
1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // For platsec tests: attempts to set the value of the Feature Registry property.
15 // Feature Registry property must be defined first.
16 // If run with argument "KErrNone", returns KErrNone if publish is successful, which
17 // should only happen if this EXE passes the write policy of the feature property.
18 // If run with argument "KErrPermissionDenied" it returns KErrNone (success) if publish
19 // failed for reason KErrPermissionDenied, otherwise it will return a different error code.
20 // Use SETCAP to vary the capabilities of this executable.
31 #include <e32property.h>
32 #include "featregcmn.h"
34 _LIT(KTestResultNone, "KErrNone");
35 _LIT(KTestResultPermissionDenied, "KErrPermissionDenied");
40 User::CommandLine(cmdLine);
42 TInt result = RProperty::Set(KFeaturePropCat, KFeaturePropKey, KNullDesC8);
44 if (cmdLine.Find(KTestResultNone) >= 0)
46 // result should already be KErrNone if succeeded
48 else if (cmdLine.Find(KTestResultPermissionDenied) >= 0)
50 if (result == KErrPermissionDenied)
61 result = KErrArgument;