Update contrib.
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.
21 #include "backup_std.h"
23 LOCAL_D RTest TheTest (_L("T_BackupServerIPC"));
24 LOCAL_D CActiveScheduler* TheScheduler;
25 _LIT(KServerLauncherProcess, "T_BackupServerLauncher");
26 _LIT(KServerStartProcess, "baksrvs");
28 _LIT(KServerName, "!BackupServer");
39 TExitCategoryName iCategory;
44 const TInt KAsynchDelay = 500000;
46 //===============================================================================
48 TBool IsFunctionAsynchronous(TInt aFunc)
50 TBool asynch = EFalse;
53 case EBakOpCodeEventReady:
54 case EBakOpCodeCloseAllFiles:
55 case EBakOpCodeCloseServer:
56 case EBakOpCodeBackupOperationEventReady:
66 class RIpcFuzzTest : public RSessionBase
68 public: // Constructors and destructor
71 * Constructor for performing 1st stage construction
84 void RunTestL(const TDesC& aTargetSrvName, TInt aFunc,
85 TInt aTestType, TInt aArgCount);
88 TInt Fuzz(TInt aMsg, TInt aArgCount);
89 TInt FuzzL(TInt aMsg, TInt aArgCount);
90 TInt Fuzz8L(TInt aMsg, TInt aArgCount);
93 RIpcFuzzTest::RIpcFuzzTest()
95 // No implementation required
99 RIpcFuzzTest::~RIpcFuzzTest()
104 TInt RIpcFuzzTest::Fuzz(TInt aMsg, TInt aArgCount)
108 for(TInt i = 0; i < aArgCount;i++)
110 args.Set(i,Math::Random());
115 if(IsFunctionAsynchronous(aMsg))
117 ret = Send(aMsg, args);
118 User::After(KAsynchDelay);
122 ret = SendReceive(aMsg, args);
127 TInt RIpcFuzzTest::Fuzz8L(TInt aMsg, TInt aArgCount)
129 HBufC8* buf = HBufC8::NewLC(255);
130 TPtr8 ptr = buf->Des();
131 ptr.Fill(Math::Random(),255);
135 for(TInt i = 0; i < aArgCount;i++)
142 if(IsFunctionAsynchronous(aMsg))
144 ret = Send(aMsg, args);
145 User::After(KAsynchDelay);
149 ret = SendReceive(aMsg, args);
152 CleanupStack::PopAndDestroy(buf);
156 TInt RIpcFuzzTest::FuzzL(TInt aMsg, TInt aArgCount)
158 HBufC* buf = HBufC::NewLC(255);
159 TPtr ptr = buf->Des();
160 ptr.Fill(Math::Random(),255);
164 for(TInt i = 0; i < aArgCount;i++)
171 if(IsFunctionAsynchronous(aMsg))
173 ret = Send(aMsg, args);
174 User::After(KAsynchDelay);
178 ret = SendReceive(aMsg, args);
181 CleanupStack::PopAndDestroy(buf);
185 void RIpcFuzzTest::RunTestL(const TDesC& aTargetSrvName,
186 TInt aFunc, TInt aTestType, TInt aArgCount)
188 TVersion version(0,0,0);
190 User::LeaveIfError(CreateSession(aTargetSrvName, version, 200));
195 Fuzz(aFunc,aArgCount);
199 Fuzz8L(aFunc,aArgCount);
203 FuzzL(aFunc,aArgCount);
209 TInt KillProcess(const TDesC& aProcessName)
213 RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
215 TBuf<64> pattern(aProcessName);
216 TInt length = pattern.Length();
218 TFindProcess procFinder(pattern);
220 while (procFinder.Next(name) == KErrNone)
222 if (name.Length() > length)
223 {//If found name is a string containing aProcessName string.
224 TChar c(name[length]);
225 if (c.IsAlphaDigit() ||
229 // If the found name is other valid application name
230 // starting with aProcessName string.
231 RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
236 if (proc.Open(name) == KErrNone)
239 RDebug::Print(_L("\"%S\" process killed.\n"), &name);
247 TInt FuzzServerL(TAny* aTestInfo)
249 CTrapCleanup* cleanup=CTrapCleanup::New();
250 TInt err=KErrNoMemory;
254 TTestInfo* info = (TTestInfo*)aTestInfo;
257 TRAP(err,fuzzer.RunTestL(KServerName,info->iFunction
258 ,info->iType, info->iArgCount));
267 void TestServerApi(TInt aFunctionNumber,
268 TInt aTestType,TInt aArgCount, TExitDetails& aExitDetails)
272 testInfo.iFunction = aFunctionNumber;
273 testInfo.iType = aTestType;
274 testInfo.iArgCount = aArgCount;
277 _LIT(KThreadName,"FuzzerThread" );
278 thread.Create(KThreadName,&FuzzServerL, KDefaultStackSize, NULL,&testInfo);
280 TRequestStatus threadStat;
281 thread.Logon(threadStat);
283 TBool jit = User::JustInTime();
284 User::SetJustInTime(EFalse);
288 User::WaitForRequest(threadStat);
290 User::SetJustInTime(jit);
292 aExitDetails.iCategory = thread.ExitCategory();
293 aExitDetails.iReason = thread.ExitReason();
294 aExitDetails.iExitType = thread.ExitType();
301 TInt LaunchServer(RProcess& aServer)
304 TheTest.Printf(_L("Launching BackupServer...\n"));
306 TInt err = aServer.Create(KServerLauncherProcess, _L(""));
310 //Start server and wait until it is running
311 TRequestStatus serverStat;
312 aServer.SetJustInTime(false);
315 aServer.Rendezvous(serverStat);
316 User::WaitForRequest(serverStat);
323 void PrintTestMessage(TInt iFunc, TInt iType, TInt iArgCount)
328 TheTest.Printf(_L("\nFuzz Test on function number %d using random Int data. Number of Args = %d\n"), iFunc, iArgCount);
332 TheTest.Printf(_L("\nFuzz Test on function number %d using random Des8 data. Number of Args = %d\n"), iFunc, iArgCount);
336 TheTest.Printf(_L("\nFuzz Test on function number %d using random Des data. Number of Args = %d\n"), iFunc, iArgCount);
347 @SYMTestCaseID SYSLIB-BAFL-CT-4039
348 @SYMTestCaseDesc Tests Bafl Backup Server APIs for IPC Robustness
349 @SYMTestPriority High
350 @SYMTestActions The function calls each of the Bafl Backup Server APIs through a
351 custom session object passing random TInt, Des8 and Des16 data .
352 @SYMTestExpectedResults The server should be robust to all malformed messages and should not
356 LOCAL_C void DoTestsL ()
360 const TInt KMinFuncNumber = 20;
361 const TInt KMaxFuncNumber = 35;
363 TInt err = LaunchServer(server);
366 TExitDetails exitDetails;
368 for(TInt i = KMinFuncNumber;i<= KMaxFuncNumber;i++)
371 //Carry out each type of test
372 for(TInt testType = 0; testType < 3;testType++)
374 //Carry out each test with number of arguments 1 - 4
375 for(TInt argCount = 1;argCount <= 4;argCount++)
377 PrintTestMessage(i, testType, argCount);
379 TestServerApi(i, testType, argCount, exitDetails);
380 //Kill the server process and verify that it was still running
381 //If the server was already dead it would return the reason it exited
382 if(server.ExitType() != EExitPending)
385 TInt exitReason = server.ExitReason();
387 TheTest(exitReason == 0);
388 User::LeaveIfError(LaunchServer(server));
392 TheTest.Printf(_L("\nFuzz Test Successful\n"));
399 TheScheduler = new (ELeave) CActiveScheduler;
400 CActiveScheduler::Install (TheScheduler);
405 GLDEF_C TInt E32Main ()
408 TheTest.Printf (_L ("\n"));
410 TheTest.Start (_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-4039 IPC Fuzz Tests "));
412 CTrapCleanup* cleanup=CTrapCleanup::New();
414 TInt err=KErrNoMemory;
417 // Construct and install the active scheduler
418 TRAP(err, SetupTestL());
420 //Kill baksrvs which may have already been launched by another test
421 KillProcess(KServerStartProcess);
422 KillProcess(KServerLauncherProcess);
424 TRAP (err, DoTestsL ());
425 TheTest (err == KErrNone);