1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_BackupSrvCap.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,94 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32debug.h>
1.20 +#include <e32test.h>
1.21 +#include <e32std.h>
1.22 +#include <babackup.h>
1.23 +
1.24 +LOCAL_D RTest TheTest (_L("T_BACKUPSRVCAP"));
1.25 +
1.26 +/**
1.27 +@SYMTestCaseID SYSLIB-BAFL-UT-4049
1.28 +@SYMTestCaseDesc BAFL Backup System Potential Security Vulnerability
1.29 +@SYMTestPriority High
1.30 +@SYMTestActions Call CloseAll, CloseFileL, RestartAll, RestartFile and NotifyBackupOperationL without correct capablity.
1.31 +@SYMTestExpectedResults Capablity error is expected. Test must not fail*/
1.32 +void Defect_DEF103793L()
1.33 + {
1.34 + TInt err;
1.35 +
1.36 + CBaBackupSessionWrapper* backupSession = CBaBackupSessionWrapper::NewL();
1.37 +
1.38 + TBackupOperationAttributes attribs;
1.39 + attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
1.40 + attribs.iOperation=MBackupOperationObserver::EStart;
1.41 +
1.42 + TRAP(err, backupSession->NotifyBackupOperationL(attribs));
1.43 + TheTest(err == KErrNone);
1.44 +
1.45 + attribs.iOperation=MBackupOperationObserver::EEnd;
1.46 +
1.47 + TRAP(err, backupSession->NotifyBackupOperationL(attribs));
1.48 + TheTest(err == KErrNone);
1.49 +
1.50 + TRequestStatus status;
1.51 + backupSession->CloseAll(MBackupObserver::EReleaseLockNoAccess, status);
1.52 + User::WaitForRequest (status);
1.53 + TheTest(status == KErrPermissionDenied);
1.54 +
1.55 + _LIT(KFileName1, "FileName1");
1.56 + TFileName file;
1.57 + file.Copy(KFileName1);
1.58 +
1.59 + backupSession->RestartFile(file);
1.60 +
1.61 + backupSession->RestartAll();
1.62 +
1.63 + TRAP(err, backupSession->CloseFileL(file, MBackupObserver::EReleaseLockNoAccess));
1.64 + TheTest(err == KErrPermissionDenied);
1.65 +
1.66 + delete backupSession;
1.67 + }
1.68 +
1.69 +/**
1.70 +Invoke the tests
1.71 +*/
1.72 +LOCAL_C void DoTestsL()
1.73 + {
1.74 + Defect_DEF103793L();
1.75 + }
1.76 +
1.77 +TInt E32Main()
1.78 + {
1.79 + __UHEAP_MARK;
1.80 +
1.81 + CTrapCleanup* theTrapCleanup=CTrapCleanup::New();
1.82 +
1.83 + TheTest.Printf(_L("\n"));
1.84 + TheTest.Title();
1.85 + TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-4049 Backupsrc capablity Tests "));
1.86 +
1.87 + TRAPD(err, DoTestsL());
1.88 + TheTest(err == KErrNone);
1.89 +
1.90 + TheTest.End();
1.91 + TheTest.Close();
1.92 +
1.93 + delete theTrapCleanup;
1.94 +
1.95 + __UHEAP_MARKEND;
1.96 + return (KErrNone);
1.97 + }