Update contrib.
1 // Copyright (c) 1997-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.
19 #include "T_backupSrv.h"
20 LOCAL_D RTest MainTest(_L(" T_BackupSrv.cpp"));
22 _LIT(KFileName1, "FileName1");
23 _LIT(KFileName2, "FileName2");
24 _LIT(KFileName3, "FileName3");
25 _LIT(KFileName4, "FileName4");
27 // Nasty global convenience function
28 LOCAL_D void LogThread()
30 TBuf<150> buf((RThread().Name()));
31 RDebug::Print(_L("*** Currently in thread : "));
36 // class CBackupOperationObserver
38 CBackupOperationObserver* CBackupOperationObserver::NewL(TInt aObserverNumber)
41 RDebug::Print(_L("CBackupOperationObserver::NewL"));
43 CBackupOperationObserver* self = new (ELeave) CBackupOperationObserver();
44 CleanupStack::PushL(self);
45 self->ConstructL(aObserverNumber);
50 CBackupOperationObserver::CBackupOperationObserver()
54 CBackupOperationObserver::~CBackupOperationObserver()
57 RDebug::Print(_L("CBackupOperationObserver::~CBackupOperationObserver"));
59 iBackupSession->DeRegisterBackupOperationObserver(*this);
60 delete iBackupSession;
65 void CBackupOperationObserver::ConstructL(TInt aObserverNumber)
67 // Set up the AO callback
68 CActiveScheduler::Add(this);
70 iStatus = KRequestPending;
72 // Create a new session for this backup notification observer
73 iBackupSession = CBaBackupSessionWrapper::NewL();
74 iBackupSession->RegisterBackupOperationObserverL(*this);
75 iObserverNumber = aObserverNumber;
76 iLocalRTest = new (ELeave) RTest(_L("BackupOperationObserver"));
79 void CBackupOperationObserver::HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
82 RDebug::Print(_L("CBackupOperationObserver::HandleBackupOperationEventL"));
85 buf.Format(_L("Backup observer number %d received a notification of operation type %d and file lock type: %d\n"),iObserverNumber, aBackupOperationAttributes.iOperation, aBackupOperationAttributes.iFileFlag);
89 void CBackupOperationObserver::DoCancel()
92 void CBackupOperationObserver::RunL()
94 // Okay - we're back in the right thread!
96 RDebug::Print(_L("CBackupOperationObserver::RunL"));
98 // Finished with this object
101 // And the active scheduler in this thread
102 CActiveScheduler::Current()->Stop();
106 void CBackupOperationObserver::Kill(RThread* aThread)
109 RDebug::Print(_L("CBackupFileObserver::Kill"));
111 // Trigger the Active Object locally - in a different thread!
112 TRequestStatus* tempStatus=(&iStatus);
113 aThread->RequestComplete(tempStatus, KErrNone);
117 // class CBackupFileObserver
120 CBackupFileObserver::CBackupFileObserver()
124 void CBackupFileObserver::ConstructL(TInt aFileObserverNumber)
126 // Set up the AO callback
127 CActiveScheduler::Add(this);
129 iStatus = KRequestPending;
131 // Create a new session for this file lock observer
132 iBackupSession = CBaBackupSessionWrapper::NewL();
133 iFileObserverNumber = aFileObserverNumber;
134 iFileLocksChanged = 0;
135 iFileLockState = ELocked;
136 iLocalRTest = new (ELeave) RTest(_L("BackupFileObserver"));
139 CBackupFileObserver* CBackupFileObserver::NewL(TInt aFileObserverNumber)
142 RDebug::Print(_L("CBackupFileObserver::NewL"));
144 CBackupFileObserver* self=new(ELeave) CBackupFileObserver();
145 CleanupStack::PushL(self);
146 self->ConstructL(aFileObserverNumber);
151 CBackupFileObserver::~CBackupFileObserver()
154 RDebug::Print(_L("CBackupFileObserver::~CBackupFileObserver"));
156 delete iBackupSession;
161 void CBackupFileObserver::AddFileL(TInt aFileNumber)
164 RDebug::Print(_L("CBackupFileObserver::AddFileL"));
166 // We base the filename of the number of thread in the RArray
167 iFileName.Format(_L("FileName%d"), aFileNumber);
169 iBackupSession->RegisterFileL(iFileName,*this);
172 TInt CBackupFileObserver::GetFileLocksChanged()
174 return iFileLocksChanged;
177 void CBackupFileObserver::ZeroFileLocksChanged()
179 iFileLocksChanged = 0;
182 void CBackupFileObserver::SetDelay(TBool aDelay)
187 void CBackupFileObserver::ChangeFileLockL(const TDesC& aFileName,TFileLockFlags aFlags)
190 RDebug::Print(_L("BackupFileObserver::ChangeFileLockL"));
192 // Keep a count of how many release notifications there have been
193 if (aFlags != MBackupObserver::ETakeLock)
198 // If delay is set then insert wait now
199 if (iDelay && (!(aFileName.Compare(KFileName1))))
201 User::After(10000000);
204 // Check this file is the one for this observer - if not fail test;
205 if (iFileName.Compare(aFileName))
207 RDebug::Print(_L("\nReceived notification for non-registered file!"));
208 (*iLocalRTest)(EFalse);
211 // Update the local file lock array
212 CBackupFileObserver::TFileLock flag = (CBackupFileObserver::TFileLock) aFlags;
213 iFileLockState = flag;
217 buf.Format(_L("File backup observer number %d was notified for file %S of file lock type: %d\n"),iFileObserverNumber, &aFileName, flag);
221 void CBackupFileObserver::DoCancel()
224 void CBackupFileObserver::RunL()
226 // Okay - we're back in the right thread!
228 RDebug::Print(_L("CBackupFileObserver::RunL"));
230 // Finished with this object
233 // And the active scheduler in this thread
234 CActiveScheduler::Current()->Stop();
238 void CBackupFileObserver::Kill(RThread* aThread)
241 RDebug::Print(_L("CBackupFileObserver::Kill"));
243 // Trigger the Active Object locally - in a different thread!
244 TRequestStatus* tempStatus=(&iStatus);
245 aThread->RequestComplete(tempStatus, KErrNone);
249 // class CBackupTestsStateMachine
252 CBackupTestsStateMachine* CBackupTestsStateMachine::NewL()
254 CBackupTestsStateMachine* self = new (ELeave) CBackupTestsStateMachine();
255 CleanupStack::PushL(self);
261 CBackupTestsStateMachine::CBackupTestsStateMachine()
265 void CBackupTestsStateMachine::ConstructL()
267 // Set up the RTest for this thread and display we're started
268 iLocalRTest = new (ELeave) RTest(_L("T_BACKUP_SRV"));
269 iLocalRTest->Title();
271 // Set the ititial state
272 iState = EStateMachineStart;
274 // Zero the EndBackupRecursionCount (see below)
275 iEndBackupRecursionCount = 0;
277 // Add this to the Active Scheduler and set us active
278 CActiveScheduler::Add(this);
281 // Create the backup "command" session
282 iBackupSession = CBaBackupSessionWrapper::NewL();
285 iMutex.CreateLocal();
288 // Observers need to have their own thread
289 void CBackupTestsStateMachine::CreateObserversThreadsL()
291 RDebug::Print(_L("Starting observers threads"));
294 TBuf<30> newThreadNames;
296 for (i = 0; i<4 ; i++)
299 iBackupObserverThreads.AppendL(new (ELeave) RThread);
300 newThreadNames.Format(_L("Backup Observer Thread %d"), i+1);
301 error = iBackupObserverThreads[i]->Create(newThreadNames, CBackupTestsStateMachine::BackupObserversThreadStartL, 0x2000, NULL, (TAny*)this);
302 (*iLocalRTest)(error==KErrNone);
303 iBackupObserverThreads[i]->Resume();
306 iFileObserverThreads.AppendL(new (ELeave) RThread);
307 newThreadNames.Format(_L("File Observer Thread %d"), i+1);
308 error = iFileObserverThreads[i]->Create(newThreadNames, CBackupTestsStateMachine::FileObserversThreadStartL, 0x2000, NULL, (TAny*)this);
310 (*iLocalRTest)(error==KErrNone);
311 iFileObserverThreads[i]->Resume();
313 // Brief delay to let the observer threads get started
314 User::After(1000000);
319 // Static starting function for the backup observers threads
320 TInt CBackupTestsStateMachine::BackupObserversThreadStartL(TAny* aPtr)
322 // Create the Cleanup Stack and Active Scheduler for this thread
324 CTrapCleanup* theTrapCleanup = CTrapCleanup::New();
325 CActiveScheduler *activeScheduler = new CActiveScheduler;
326 CActiveScheduler::Install(activeScheduler);
328 // Create the observer instances
329 CBackupTestsStateMachine* objectPtr = static_cast<CBackupTestsStateMachine*>(aPtr);
330 TRAPD(error, objectPtr->CreateBackupObserverInstanceL());
331 User::LeaveIfError(error);
333 // Go to Active Scheduler main loop for this thread
334 CActiveScheduler::Start();
337 delete activeScheduler;
338 delete theTrapCleanup;
343 // Static starting function for the file observers threads
344 TInt CBackupTestsStateMachine::FileObserversThreadStartL(TAny* aPtr)
346 // Create the Cleanup Stack and Active Scheduler for this thread
347 CTrapCleanup* theTrapCleanup = CTrapCleanup::New();
348 CActiveScheduler* activeScheduler = new CActiveScheduler;
349 CActiveScheduler::Install(activeScheduler);
351 // Create the observer instances
352 CBackupTestsStateMachine* objectPtr = static_cast<CBackupTestsStateMachine*>(aPtr);
353 TRAPD(error, objectPtr->CreateFileObserverInstanceL());
354 User::LeaveIfError(error);
356 // Go to Active Scheduler main loop for this thread
357 CActiveScheduler::Start();
360 delete activeScheduler;
361 delete theTrapCleanup;
366 void CBackupTestsStateMachine::CreateBackupObserverInstanceL()
370 TInt count = iBackupObserverThreads.Count();
372 // Create the new object instance (one object per thread)
373 // We base the thread number of the number of thread in the RArray
374 CBackupOperationObserver* newObserver = CBackupOperationObserver::NewL(count);
375 iBackupObservers.AppendL(newObserver);
380 void CBackupTestsStateMachine::CreateFileObserverInstanceL()
384 TInt count = iBackupFileObservers.Count();
386 // Create the new object instance (one object per thread)
387 CBackupFileObserver* newObserver = CBackupFileObserver::NewL(count + 1);
388 iBackupFileObservers.AppendL(newObserver);
390 // Register the file for this thread / instance
391 iBackupFileObservers[count]->AddFileL(count + 1);
396 // State Machine destructor
397 CBackupTestsStateMachine::~CBackupTestsStateMachine()
399 // Close our session into the backup server
400 delete iBackupSession;
402 // Delete all the observers (only 3 of each of by this point)
405 for (i = 0; i<3 ; i++)
407 iBackupObservers[i]->Kill(iBackupObserverThreads[i]);
408 iBackupFileObservers[i]->Kill(iFileObserverThreads[i]);
409 User::After(50000000);
411 iBackupObservers.Close();
412 iBackupFileObservers.Close();
414 // Kill the observer threads
415 for (i = 0; i<3 ; i++)
418 iBackupObserverThreads[i]->Kill(KErrNone);
419 delete iBackupObserverThreads[i];
420 iFileObserverThreads[i]->Kill(KErrNone);
421 delete iFileObserverThreads[i];
423 iBackupObserverThreads.Close();
424 iFileObserverThreads.Close();
426 // Display we're finished
427 iLocalRTest->Close();
430 // Cancel this is it's active
437 // Common starting function for all test-related calls to CloseAll
438 void CBackupTestsStateMachine::CloseAllStartL(StateMachineState aNextState, MBackupObserver::TFileLockFlags aFlag)
442 iBackupSession->CloseAll(aFlag, iStatus);
445 // Common ending function for all test-related calls to CloseAll
446 void CBackupTestsStateMachine::CloseAllEndL(StateMachineState aNextState, TInt aExpectedNotifications)
450 EndBackup(aExpectedNotifications, ETrue);
455 // State machine call back - get here by calls to Complete and returns for asynchronous server calls
456 void CBackupTestsStateMachine::RunL()
460 case EStateMachineStart:
461 // Create observers threads
462 CreateObserversThreadsL();
463 iState = ECloseAllNormalReadOnly;
466 case ECloseAllNormalReadOnly:
467 iLocalRTest->Start(_L("\nCloseAllFiles normal ReadOnly\n"));
468 CloseAllStartL(ECloseAllNormalReadOnlyReturned, MBackupObserver::EReleaseLockReadOnly);
470 case ECloseAllNormalReadOnlyReturned:
471 CloseAllEndL(ECloseAllNormalNoAccess, 4);
473 case ECloseAllNormalNoAccess:
474 iLocalRTest->Start(_L("\nCloseAllFiles normal NoAccess\n"));
475 CloseAllStartL(ECloseAllNormalNoAccessReturned, MBackupObserver::EReleaseLockNoAccess);
477 case ECloseAllNormalNoAccessReturned:
478 CloseAllEndL(ECloseAllDelayReadOnly, 4);
480 case ECloseAllDelayReadOnly:
481 iLocalRTest->Start(_L("\nCloseAllFiles delay ReadOnly\n"));
482 iBackupFileObservers[0]->SetDelay(ETrue);
483 CloseAllStartL(ECloseAllDelayReadOnlyReturned, MBackupObserver::EReleaseLockReadOnly);
485 case ECloseAllDelayReadOnlyReturned:
486 iBackupFileObservers[0]->SetDelay(EFalse);
487 CloseAllEndL(ECloseAllDelayNoAccess, 4);
488 // Nice long wait for the timer to expire in the other thread
489 User::After(10000000);
491 case ECloseAllDelayNoAccess:
492 iLocalRTest->Start(_L("\nCloseAllFiles delay NoAccess\n"));
493 iBackupFileObservers[0]->SetDelay(ETrue);
494 CloseAllStartL(ECloseAllDelayNoAccessReturned, MBackupObserver::EReleaseLockNoAccess);
496 case ECloseAllDelayNoAccessReturned:
497 iBackupFileObservers[0]->SetDelay(EFalse);
498 CloseAllEndL(ECloseAllDropFileSession, 4);
499 // Nice long wait for the timer to expire in the other thread
500 User::After(10000000);
502 case ECloseAllDropFileSession:
503 iLocalRTest->Start(_L("\nCloseAllFiles dropping file session\n"));
504 // Drop one of the file registration / observer sessions
505 iBackupFileObservers[0]->Kill(iFileObserverThreads[0]);
506 // Nice long wait for the observer to be killed in the other thread
507 User::After(10000000);
508 // Remove it from the list
509 iBackupFileObservers.Remove(0);
511 iFileObserverThreads[0]->Kill(KErrNone);
512 delete iFileObserverThreads[0];
513 iFileObserverThreads.Remove(0);
514 // All done - start this sub-test
515 CloseAllStartL(ECloseAllDropFileSessionReturned, MBackupObserver::EReleaseLockReadOnly);
517 case ECloseAllDropFileSessionReturned:
518 CloseAllEndL(ECloseAllDropBackupObserverSession, 3);
520 case ECloseAllDropBackupObserverSession:
521 iLocalRTest->Start(_L("\nCloseAllFiles dropping backup session\n"));
522 // Drop one of the backup observer sessions
523 iBackupObservers[0]->Kill(iBackupObserverThreads[0]);
524 // Nice long wait for the observer to be killed in the other thread
525 User::After(10000000);
526 // Remove it from the list
527 iBackupObservers.Remove(0);
529 iBackupObserverThreads[0]->Kill(KErrNone);
530 delete iBackupObserverThreads[0];
531 iBackupObserverThreads.Remove(0);
532 // All done - start this sub-test
533 CloseAllStartL(ECloseAllDropBackupObserverSessionReturned, MBackupObserver::EReleaseLockReadOnly);
535 case ECloseAllDropBackupObserverSessionReturned:
536 CloseAllEndL(ESingleFileTests, 3);
538 case ESingleFileTests:
539 iLocalRTest->Start(_L("\nSingle file lock tests\n"));
541 SingleFileLockTestsL();
543 // Can call EndBackup synchronously here as nothing in SingleFileLockTests is asynchronous
544 EndBackup(3, EFalse);
546 iState = ENoBackupSessionSingleFileTests;
549 // Required to cover the situation when the backup server is used purely for message signalling
550 // For example in the LogEng compnent
551 case ENoBackupSessionSingleFileTests:
552 iLocalRTest->Start(_L("\nNo backup session single file lock tests\n"));
553 SingleFileLockTestsL();
554 // Can call EndBackup synchronously here as nothing in SingleFileLockTests is asynchronous
555 EndBackup(3, EFalse);
557 iState = EStateMachineEnd;
560 case EStateMachineEnd:
561 RDebug::Print(_L("\nEnd of state machine\n"));
565 RDebug::Print(_L("\nCBackupTestsStateMachine::RunL problem"));
574 void CBackupTestsStateMachine::DoCancel()
579 void CBackupTestsStateMachine::RunError()
582 // Common function to start a backup
583 void CBackupTestsStateMachine::StartBackupL()
585 TBackupOperationAttributes attribs;
586 attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
587 attribs.iOperation=MBackupOperationObserver::EStart;
588 iBackupSession->NotifyBackupOperationL(attribs);
589 RDebug::Print(_L("\nStarting backup\n"));
592 void CBackupTestsStateMachine::SignalEndBackupL()
594 // Tell the server the backup is over
595 TBackupOperationAttributes attribs;
596 attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
597 attribs.iOperation=MBackupOperationObserver::EEnd;
598 iBackupSession->NotifyBackupOperationL(attribs);
601 // This function works in two ways. If oneTimeOnly is ETrue then all file lock
602 // change notifications must have been received before this function is called.
603 // If oneTimeOnly is EFalse this function recursively calls itself (a finate number
604 // of times) until all notifications have arrived (this happens with single file testing)
605 void CBackupTestsStateMachine::EndBackup(TInt aFileLockChangesExpected, TBool oneTimeOnly)
607 // Get the total notification count so far
608 TInt numberOfObservers = iBackupFileObservers.Count();
609 TInt totalNotificationCount = 0;
610 for (TInt i=0; i<numberOfObservers ; i++)
612 totalNotificationCount += iBackupFileObservers[i]->GetFileLocksChanged();
614 if (aFileLockChangesExpected == totalNotificationCount)
616 // Reset the recursion count
617 iEndBackupRecursionCount = 0;
619 // Zero the notification counts in the file lock observers
620 for (TInt i = 0 ; i<numberOfObservers ; i++)
622 iBackupFileObservers[i]->ZeroFileLocksChanged();
627 buf.Format(_L("\nBackup finished sucsessfully on recusion count %d of EndBackup\n"), iEndBackupRecursionCount);
630 else if (oneTimeOnly)
632 // No second chances - fail here
633 (*iLocalRTest)(EFalse);
637 // Give it 5 more seconds (in 10 .5 second iterations) for the notifications to arrive
639 // 5 seconds is more than enough (timeouts in server should have gone off by now anyway)
640 iEndBackupRecursionCount++;
641 if (iEndBackupRecursionCount > 10)
643 (*iLocalRTest)(EFalse);
645 // Recursively calling isn't great but it needs to leave the function so the AO can run
646 EndBackup(aFileLockChangesExpected, EFalse);
651 void CBackupTestsStateMachine::Complete()
653 // Trigger the Active Object locally
654 TRequestStatus* tempStatus=(&iStatus);
655 User::RequestComplete(tempStatus, KErrNone);
658 void CBackupTestsStateMachine::Start()
660 // Time to start testing
661 RDebug::Print(_L("\nCBackupTestsStateMachine::Start"));
665 void CBackupTestsStateMachine::End()
667 // We're done testing - kill the Active Scheduler
668 RDebug::Print(_L("\nAll test complete\n"));
670 CActiveScheduler::Current()->Stop();
673 void CBackupTestsStateMachine::SingleFileLockTestsL()
678 file.Copy(KFileName1);
679 iLocalRTest->Next(file);
681 iBackupSession->CloseFileL(KFileName1, MBackupObserver::EReleaseLockReadOnly);
682 iBackupSession->RestartFile(file);
684 // iBackupSession->CloseFileL(KFileName1, MBackupObserver::EReleaseLockNoAccess);
685 // iBackupSession->RestartFile(file);
688 file.Copy(KFileName2);
689 iLocalRTest->Next(file);
691 iBackupSession->CloseFileL(KFileName2, MBackupObserver::EReleaseLockReadOnly);
692 iBackupSession->RestartFile(file);
694 // iBackupSession->CloseFileL(KFileName2, MBackupObserver::EReleaseLockNoAccess);
695 // iBackupSession->RestartFile(file);
698 file.Copy(KFileName3);
699 iLocalRTest->Next(file);
701 iBackupSession->CloseFileL(KFileName3, MBackupObserver::EReleaseLockReadOnly);
702 iBackupSession->RestartFile(file);
704 // iBackupSession->CloseFileL(KFileName3, MBackupObserver::EReleaseLockNoAccess);
705 // iBackupSession->RestartFile(file);
708 file.Copy(KFileName4);
709 iLocalRTest->Next(file);
711 iBackupSession->CloseFileL(KFileName4, MBackupObserver::EReleaseLockReadOnly);
712 iBackupSession->RestartFile(file);
714 // iBackupSession->CloseFileL(KFileName4, MBackupObserver::EReleaseLockNoAccess);
715 // iBackupSession->RestartFile(file);
719 @SYMTestCaseID SYSLIB-BAFL-CT-0467
720 @SYMTestCaseDesc Tests the functionality of CBaBackupSessionWrapper class
721 @SYMTestPriority High
722 @SYMTestActions Tests for the enabling backup of files
723 @SYMTestExpectedResults Test must not fail
726 LOCAL_D void StartTestsL()
728 // For the sake of logging let's start off by renaming the main "command" thread
729 RThread().RenameMe(_L("Main thread"));
731 // Create state machine
732 CBackupTestsStateMachine* stateMachine = CBackupTestsStateMachine::NewL();
735 stateMachine->Start();
737 // Start the Active Scheduler
738 CActiveScheduler::Start();
740 // Clean up the state machine
747 MainTest.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0467 Loading Device"));
751 CTrapCleanup* theTrapCleanup=CTrapCleanup::New();
752 CActiveScheduler *activeScheduler=new CActiveScheduler;
753 CActiveScheduler::Install(activeScheduler);
755 TRAPD(error, StartTestsL());
756 User::LeaveIfError(error);
758 delete activeScheduler;
759 delete theTrapCleanup;