First public contribution.
1 // Copyright (c) 2008-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.
17 #include "t_backupsrvdefects.h"
20 RTest TheTest (_L("t_backupsrvdefects"));
21 #define TEST(arg) TheTest((arg), __LINE__)
23 _LIT(KFileName1, "FileName1");
26 CBUDefectTestMachine* CBUDefectTestMachine::NewL()
28 CBUDefectTestMachine* self = new (ELeave) CBUDefectTestMachine();
29 CleanupStack::PushL(self);
35 CBUDefectTestMachine::CBUDefectTestMachine()
39 CBUDefectTestMachine::~CBUDefectTestMachine()
43 // Cancel this if it's active
50 void CBUDefectTestMachine::ConstructL()
52 iWrapper = CBaBackupSessionWrapper::NewL();
54 iNextState = EMachineStart;
56 // Add this to the Active Scheduler and set us active
57 CActiveScheduler::Add(this);
61 // Called when CloseAll request is completed or the active object is scheduled.
62 void CBUDefectTestMachine::RunL()
67 // Send 2 requests of CloseAll with different file lock states.
68 // The second request will be ignored. The first one will be completed.
69 iWrapper->CloseAll(MBackupObserver::EReleaseLockReadOnly, iStatus);
70 iWrapper->CloseAll(MBackupObserver::EReleaseLockNoAccess, iStatus);
72 iNextState = EMachineCloseAllsEndSameClient;
75 case EMachineCloseAllsEndSameClient:
76 // The first CloseAll request is completed.
77 TEST(iStatus == KErrNone);
79 // Send 2 requests of CloseAll from different client.
80 // The second client should be completed with KErrServerBusy before
81 // the first client is completed with KErrNone
82 iWrapper->CloseAll(MBackupObserver::EReleaseLockReadOnly, iStatus);
83 iBackupFileObserver->CloseAll(MBackupObserver::EReleaseLockReadOnly);
85 iNextState = EMachineCloseAllsEndOtherClient;
88 case EMachineCloseAllsEndOtherClient:
89 // The first CloseAll client is completed successfully
90 TEST(iStatus == KErrNone);
92 // Tests under CloseAll operation, CloseFileL requested by the other client will leave;
93 // CloseFileL requested by the same client will be successful and not affect the CloseAll
95 iWrapper->CloseAll(MBackupObserver::EReleaseLockReadOnly, iStatus);
97 TRAPD(err, iBackupFileObserver->CloseFileL(KFileName1,MBackupObserver::EReleaseLockNoAccess));
98 TEST(err == KErrServerBusy);
100 iWrapper->CloseFileL(KFileName1,MBackupObserver::EReleaseLockReadOnly);
102 iNextState = EMachineCloseAllsEndCloseFile;
107 case EMachineCloseAllsEndCloseFile:
108 // The CloseAll is completed successfully
109 TEST(iStatus == KErrNone);
111 CActiveScheduler::Stop();
119 void CBUDefectTestMachine::DoCancel()
124 void CBUDefectTestMachine::Complete()
126 TRequestStatus* tempStatus=&iStatus;
127 User::RequestComplete(tempStatus, KErrNone);
131 Sets the other client of the backup server
133 void CBUDefectTestMachine::SetFileObserver(CBackupFileObserver* aBackupFileObserver)
135 iBackupFileObserver = aBackupFileObserver;
140 //CBackupFileObserver
141 CBackupFileObserver* CBackupFileObserver::NewL(CBUDefectTestMachine& aDefectMachine, const TDesC& aLockedFileName)
143 CBackupFileObserver* self = new (ELeave) CBackupFileObserver(aDefectMachine, aLockedFileName);
144 CleanupStack::PushL(self);
150 CBackupFileObserver::CBackupFileObserver(CBUDefectTestMachine& aTestMachine, const TDesC& aLockedFileName)
151 :CActive(0), iTestMachine(aTestMachine), iLockedFileName(aLockedFileName)
154 void CBackupFileObserver::ConstructL()
156 iWrapper = CBaBackupSessionWrapper::NewL();
158 iWrapper->RegisterFileL(iLockedFileName, *this);
159 iTestMachine.SetFileObserver(this);
161 // Add this to the Active Scheduler and set us active
162 CActiveScheduler::Add(this);
165 CBackupFileObserver::~CBackupFileObserver()
169 // Cancel this if it's active
176 void CBackupFileObserver::CloseAll(MBackupObserver::TFileLockFlags aFlags)
178 iWrapper->CloseAll(aFlags, iStatus);
185 void CBackupFileObserver::CloseFileL(const TDesC& aFileName,MBackupObserver::TFileLockFlags aFlags)
187 iWrapper->CloseFileL(aFileName,aFlags);
191 void CBackupFileObserver::ChangeFileLockL(const TDesC& aFileName,TFileLockFlags aFlags)
193 TEST(aFileName == KFileName1);
194 TEST(aFlags == MBackupObserver::EReleaseLockReadOnly);
198 Called when CloseAll request is completed.
200 void CBackupFileObserver::RunL()
202 if(iTestMachine.iNextState == EMachineCloseAllsEndOtherClient)
204 // As the second CloseAll client, Tests the CloseAll request is completed with KErrServerBusy
205 // while the first one is still pending
206 TEST(iStatus == KErrServerBusy);
207 TEST(iTestMachine.iStatus == KRequestPending);
211 void CBackupFileObserver::DoCancel()
213 TRequestStatus* tempStatus=&iStatus;
214 User::RequestComplete(tempStatus, KErrNone);
218 Tests CBaBackupSessionWrapper::RegisterFileL leaves with KErrServerBusy while the sever is under
219 CloseAll operation. And the CloseAll request is complete successfully.
221 void TestRegisterFileL()
223 class TSimpleObserver : public MBackupObserver
225 void ChangeFileLockL(const TDesC& /*aFileName*/,TFileLockFlags /*aFlags*/) {;}
228 CBaBackupSessionWrapper* wrapper = CBaBackupSessionWrapper::NewL();
229 CleanupStack::PushL(wrapper);
230 TRequestStatus status;
231 wrapper->CloseAll(MBackupObserver::EReleaseLockReadOnly, status);
232 TRAPD(err,wrapper->RegisterFileL(KFileName1, simpleObserver));
233 TEST(err == KErrServerBusy);
234 User::WaitForRequest(status);
235 TEST(status == KErrNone);
236 CleanupStack::PopAndDestroy(wrapper);
240 @SYMTestCaseID SYSLIB-BAFL-CT-4053
241 @SYMTestCaseDesc Tests the updated functions work as expectation
242 @SYMTestPriority High
243 @SYMTestActions Calls the updated functions under the specified circumstance (sever under
244 CloseAll operation). They run as expectation:
245 1. Call CBaBackupSessionWrapper::RegisterFileL while the sever is under
246 CloseAll operation. It leaves with KErrServerBusy. The CloseAll
247 request is complete successfully.
248 2. Call CBaBackupSessionWrapper::CloseAll() 2 times from the same client.
249 The second request will be ignored. The first one will be completed
251 3. Call CBaBackupSessionWrapper::CloseAll() 2 times from the different clients.
252 The second request will be completed immediately with KErrServerBusy. The
253 first one will be completed successfully.
254 4. Call CBaBackupSessionWrapper::CloseFileL() while the sever is under CloseAll
255 operation requested by the other client. It leaves with KErrServerBusy. The
256 CloseAll request is complete successfully.
257 5. Call CBaBackupSessionWrapper::CloseFileL() while the sever is
258 under CloseAll operation requested by the same client. It is ignored and
259 the CloseAll request is complete successfully.
261 @SYMTestExpectedResults Test must not fail
268 CBUDefectTestMachine* bUSrvDefectMachine = CBUDefectTestMachine::NewL();
269 CleanupStack::PushL(bUSrvDefectMachine);
271 CBackupFileObserver* fileObserver = CBackupFileObserver::NewL(*bUSrvDefectMachine, KFileName1);
273 CleanupStack::Pop(bUSrvDefectMachine);
276 bUSrvDefectMachine->Complete();
278 CActiveScheduler::Start();
280 delete bUSrvDefectMachine ;
281 delete fileObserver ;
289 TheTest.Start (_L("PDEF121575: BAFL Backup System Multiple Simultaneous Call Problema\n"));
300 CTrapCleanup* theTrapCleanup=CTrapCleanup::New();
301 CActiveScheduler *activeScheduler=new CActiveScheduler;
302 CActiveScheduler::Install(activeScheduler);
304 TRAPD(error, StartTestsL());
305 TEST(error == KErrNone);
307 delete activeScheduler;
308 delete theTrapCleanup;