1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_NamedPlugins.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,452 @@
1.4 +// Copyright (c) 2006-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 +// Tests for CBaNamedPlugins class, which contains CParameters class
1.18 +//
1.19 +//
1.20 +
1.21 +#include <banamedplugins.h>
1.22 +#include <e32test.h>
1.23 +#include <basched.h>
1.24 +#include <f32file.h>
1.25 +#include <baflpan.h>
1.26 +
1.27 +RTest TheTest(_L("T_NamedPlugins"));
1.28 +RFs TheFs;
1.29 +
1.30 +//Test macros and functions
1.31 +
1.32 +LOCAL_C void Check(TInt aValue, TInt aLine)
1.33 + {
1.34 + if(!aValue)
1.35 + {
1.36 + TheTest(EFalse, aLine);
1.37 + }
1.38 + }
1.39 +
1.40 +LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
1.41 + {
1.42 + if(aValue != aExpected)
1.43 + {
1.44 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.45 + TheTest(EFalse, aLine);
1.46 + }
1.47 + }
1.48 +
1.49 +#define TEST(arg) Check((arg), __LINE__)
1.50 +#define TEST2(aValue, aExpected) Check(aValue, aExpected, __LINE__)
1.51 +
1.52 +
1.53 +TUid KUid1 = {0xE1A01753};
1.54 +TUid KUid2 = {0xE1B01753};
1.55 +
1.56 +_LIT(KRscFileName1, "\\resource\\plugins\\E1A01753.RSC");
1.57 +_LIT(KRscFileName2, "\\resource\\plugins\\E1B01753.RSC");
1.58 +_LIT(KIdentifier, "plugin");
1.59 +_LIT(KBadIdentifier, "plugni");
1.60 +_LIT(KMainPath, "\\system\\data\\");
1.61 +_LIT(KLitWildCard, "*.RSC");
1.62 +_LIT(KTextForNone, "NoPlugin");
1.63 +
1.64 +class CImplementation: public CBaNamedPlugins::MFallBackName
1.65 +{
1.66 + public:
1.67 +
1.68 + HBufC* FallBackNameL(const TDesC& aFullResourceFileName) const;
1.69 +};
1.70 +
1.71 +HBufC* CImplementation::FallBackNameL(const TDesC& aFullResourceFileName) const
1.72 +{
1.73 + return aFullResourceFileName.AllocL();
1.74 +}
1.75 +
1.76 +TBool TestAlgorithmToCompareNames(const TDesC& aName1, const TDesC& aName2)
1.77 + {
1.78 + return( aName1.CompareC(aName2) == 0); // Function is supposed to return 1, when CompareC returns 0
1.79 + }
1.80 +
1.81 +/*
1.82 +@SYMTestCaseID SYSLIB-BAFL-CT-1756
1.83 +@SYMTestCaseDesc CBaNamedPlugins class test
1.84 + Tests for CBaNamedPlugins::IndexOfIdentifier(), CBaNamedPlugins::IndexOfUid(), CBaNamedPlugins::MdcaPoint(), CBaNamedPlugins::IdentifierAtIndex(), CBaNamedPlugins::UidAtIndex(),CBaNamedPlugins::MdcaCount() functions
1.85 +@SYMTestPriority Medium
1.86 +@SYMTestActions CBaNamedPlugins object is populated with resource file names and checking for identifier and Uid
1.87 +@SYMTestExpectedResults Test must not fail
1.88 +@SYMREQ REQ0000
1.89 +*/
1.90 +
1.91 +void DoTests1()
1.92 +{
1.93 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1756 Testing DoTests1... "));
1.94 + TBuf<64> buf;
1.95 +
1.96 + CBaNamedPlugins* namedPlugins;
1.97 + RArray<CBaNamedPlugins::TResourceFile> arrayOfResourceFiles;
1.98 + CleanupClosePushL(arrayOfResourceFiles);
1.99 +
1.100 + buf = KRscFileName1;
1.101 +
1.102 + CBaNamedPlugins::TResourceFile resourceFile1;
1.103 + resourceFile1.iFullFileName = buf.AllocLC();
1.104 + resourceFile1.iIdentifier = NULL;
1.105 + resourceFile1.iUid = KUid1;
1.106 + resourceFile1.iFormat = CBaNamedPlugins::TResourceFile::EFormatTbuf;
1.107 + User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile1));
1.108 + CleanupStack::Pop(resourceFile1.iFullFileName);
1.109 +
1.110 + buf = KRscFileName2;
1.111 +
1.112 + CBaNamedPlugins::TResourceFile resourceFile2;
1.113 + resourceFile2.iFullFileName = buf.AllocLC();
1.114 + buf = KIdentifier;
1.115 + resourceFile2.iIdentifier = buf.AllocLC();
1.116 + resourceFile2.iUid = KUid2;
1.117 + resourceFile2.iFormat = CBaNamedPlugins::TResourceFile::EFormatTbuf;
1.118 + User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile2));
1.119 + CleanupStack::Pop(resourceFile2.iIdentifier);
1.120 +
1.121 + CleanupStack::Pop(resourceFile2.iFullFileName);
1.122 +
1.123 + CBaNamedPlugins::CParameters* const parameters = CBaNamedPlugins::CParameters::NewLC(TheFs, arrayOfResourceFiles.Array());
1.124 + HBufC* textForNone=KTextForNone().AllocL();
1.125 + parameters->SetTextForNone(textForNone,CBaNamedPlugins::EArrayPositionLast);
1.126 +
1.127 + // This call to SetTextForNoneL will delete textForNone
1.128 + parameters->SetTextForNoneL(KTextForNone,CBaNamedPlugins::EArrayPositionLast);
1.129 +
1.130 + namedPlugins = CBaNamedPlugins::NewL(*parameters);
1.131 +
1.132 + CBaNamedPlugins::TEquivalentIdentifiers eqIdent = TestAlgorithmToCompareNames;
1.133 + TInt i = (*namedPlugins).IndexOfIdentifier(KIdentifier,eqIdent);
1.134 + // With the sorting algorithm and resource files benig used KIdentifier is at index 0
1.135 + TEST2(i,0);
1.136 + i = (*namedPlugins).IndexOfIdentifier(KBadIdentifier,eqIdent);
1.137 + TEST2(i,KErrNotFound);
1.138 +
1.139 + TInt index = namedPlugins->IndexOfUid(KUid1);
1.140 + TEST(index>=0);
1.141 + TPtrC name;
1.142 + if( index >= 0 )
1.143 + {
1.144 + name.Set((*namedPlugins).MdcaPoint(index));
1.145 + }
1.146 + index = (namedPlugins)->IndexOfUid(TUid::Uid(0x123));
1.147 + TEST2(index,-1);
1.148 +
1.149 + TEST((*namedPlugins).IdentifierAtIndex(1)!= &buf);
1.150 + TEST((*namedPlugins).UidAtIndex(0)==KUid2);
1.151 + TEST((*namedPlugins).UidAtIndex(1)==KUid1);
1.152 +
1.153 + TInt count = (*namedPlugins).MdcaCount();
1.154 + TEST2(count,3);
1.155 +
1.156 + count = arrayOfResourceFiles.Count();
1.157 + for(i = 0; i < count; i++ )
1.158 + {
1.159 + const CBaNamedPlugins::TResourceFile& resourceFileData=arrayOfResourceFiles[i];
1.160 + delete resourceFileData.iFullFileName;
1.161 + delete resourceFileData.iIdentifier;
1.162 + }
1.163 +
1.164 + CleanupStack::PopAndDestroy(2, &arrayOfResourceFiles);
1.165 + delete namedPlugins;
1.166 +
1.167 + // Test EFormatArrayOfUidNamePairs format
1.168 + buf = KRscFileName1;
1.169 +
1.170 + CleanupClosePushL(arrayOfResourceFiles);
1.171 +
1.172 + CBaNamedPlugins::TResourceFile resourceFile;
1.173 + resourceFile.iFullFileName = KRscFileName1().AllocLC();
1.174 + resourceFile.iIdentifier = NULL;
1.175 + resourceFile.iUid = KNullUid;
1.176 + resourceFile.iFormat = CBaNamedPlugins::TResourceFile::EFormatArrayOfUidNamePairs;
1.177 + User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile));
1.178 + CleanupStack::Pop(resourceFile.iFullFileName);
1.179 +
1.180 + CBaNamedPlugins::CParameters* const parameters1 = CBaNamedPlugins::CParameters::NewL(TheFs, arrayOfResourceFiles.Array());
1.181 + textForNone=KTextForNone().AllocL();
1.182 + parameters1->SetTextForNone(textForNone,CBaNamedPlugins::EArrayPositionFirst);
1.183 + namedPlugins = CBaNamedPlugins::NewL(*parameters1);
1.184 +
1.185 + delete resourceFile.iFullFileName;
1.186 +
1.187 + CleanupStack::PopAndDestroy(&arrayOfResourceFiles);
1.188 + delete parameters1;
1.189 + delete namedPlugins;
1.190 +}
1.191 +
1.192 +/*
1.193 +@SYMTestCaseID SYSLIB-BAFL-CT-1757
1.194 +@SYMTestCaseDesc CBaNamedPlugins::CParameters class test
1.195 + Tests for CParameters::SetFallBackName,CParameters::SetCompareNames,getting file names by searching file system
1.196 +@SYMTestPriority Medium
1.197 +@SYMTestActions Setting the algorithm to compare two plugin names
1.198 +@SYMTestExpectedResults Test must not fail
1.199 +@SYMREQ REQ0000
1.200 +*/
1.201 +
1.202 +void DoTests2()
1.203 +{
1.204 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1757 Testing DoTests2... "));
1.205 + TBuf<64> buf;
1.206 + buf = KMainPath;
1.207 +
1.208 + CBaNamedPlugins* namedPlugins;
1.209 + RArray<CBaNamedPlugins::TResourceFile> arrayOfResourceFiles;
1.210 + CleanupClosePushL(arrayOfResourceFiles);
1.211 +
1.212 + TFindFile* findFile = new(ELeave) TFindFile(TheFs);
1.213 + CleanupStack::PushL(findFile);
1.214 +
1.215 + CDir* directory = NULL;
1.216 +
1.217 + TInt err = findFile->FindWildByDir(KLitWildCard, buf, directory);
1.218 + TInt mdcaCount=0;
1.219 + while(err==KErrNone)
1.220 + {
1.221 + CleanupStack::PushL(directory);
1.222 + for (TInt i=directory->Count()-1; i>=0; --i)
1.223 + {
1.224 + const TEntry& entry = (*directory)[i];
1.225 + CBaNamedPlugins::TResourceFile resourceFile;
1.226 + resourceFile.iFullFileName = entry.iName.AllocLC();
1.227 + resourceFile.iIdentifier = NULL;
1.228 + resourceFile.iUid = KNullUid;
1.229 + resourceFile.iFormat = CBaNamedPlugins::TResourceFile::EFormatTbuf;
1.230 + ++mdcaCount;
1.231 + User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile));
1.232 + CleanupStack::Pop(resourceFile.iFullFileName);
1.233 + }
1.234 + CleanupStack::PopAndDestroy(); // directory
1.235 + directory = NULL;
1.236 + err=findFile->FindWild(directory);
1.237 + }
1.238 + CleanupStack::PopAndDestroy(); // findfile
1.239 +
1.240 + CBaNamedPlugins::CParameters* const parameters = CBaNamedPlugins::CParameters::NewL(TheFs, arrayOfResourceFiles.Array());
1.241 +
1.242 + CBaNamedPlugins::TCompareNames compName = TestAlgorithmToCompareNames;
1.243 + (*parameters).SetCompareNames(compName);
1.244 + namedPlugins = CBaNamedPlugins::NewL(*parameters);
1.245 +
1.246 + // Test CBaNamedPlugins constructor when fall back name is set
1.247 + CImplementation obj;
1.248 + (*parameters).SetFallBackName(obj);
1.249 + delete namedPlugins;
1.250 + namedPlugins = CBaNamedPlugins::NewL(*parameters);
1.251 +
1.252 + TInt count = (*namedPlugins).MdcaCount();
1.253 + TEST2(count,mdcaCount);
1.254 +
1.255 + count=arrayOfResourceFiles.Count();
1.256 + for( TInt i = 0; i < count; i++ )
1.257 + {
1.258 + const CBaNamedPlugins::TResourceFile& resourceFileData=arrayOfResourceFiles[i];
1.259 + delete resourceFileData.iFullFileName;
1.260 + }
1.261 + CleanupStack::PopAndDestroy(&arrayOfResourceFiles);
1.262 + delete parameters;
1.263 + delete namedPlugins;
1.264 +}
1.265 +
1.266 +LOCAL_C void StartTestPanicBadArrayPositionL()
1.267 + {
1.268 + CBaNamedPlugins* namedPlugins;
1.269 + RArray<CBaNamedPlugins::TResourceFile> arrayOfResourceFiles;
1.270 + CleanupClosePushL(arrayOfResourceFiles);
1.271 + RFs fs;
1.272 + fs.Connect();
1.273 + TBuf<64> buf;
1.274 + buf = KRscFileName2;
1.275 +
1.276 + // Test Panic
1.277 + CBaNamedPlugins::TResourceFile resourceFile;
1.278 + resourceFile.iFullFileName = buf.AllocLC();
1.279 + resourceFile.iIdentifier = NULL;
1.280 + resourceFile.iUid = KNullUid;
1.281 + resourceFile.iFormat = CBaNamedPlugins::TResourceFile::EFormatTbuf;
1.282 + User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile));
1.283 + CleanupStack::Pop(resourceFile.iFullFileName);
1.284 +
1.285 + CBaNamedPlugins::CParameters* const parameters = CBaNamedPlugins::CParameters::NewL(fs, arrayOfResourceFiles.Array());
1.286 +
1.287 + HBufC* textForNone=KTextForNone().AllocL();
1.288 + parameters->SetTextForNone(textForNone,static_cast<CBaNamedPlugins::TArrayPosition>(255)); // Pick an illegal position
1.289 +
1.290 + // This should panic
1.291 + namedPlugins = CBaNamedPlugins::NewL(*parameters);
1.292 +
1.293 + delete resourceFile.iFullFileName;
1.294 +
1.295 + CleanupStack::PopAndDestroy(&arrayOfResourceFiles);
1.296 + delete parameters;
1.297 + delete namedPlugins;
1.298 + }
1.299 +
1.300 +LOCAL_C TInt TestPanicBadArrayPosition(TAny* /*aData*/)
1.301 + {
1.302 + __UHEAP_MARK;
1.303 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.304 + if(!cleanup)
1.305 + return KErrNoMemory;
1.306 +
1.307 + TRAPD(err, StartTestPanicBadArrayPositionL());
1.308 +
1.309 + // Won't get here but add this line to get rid of ARMV5 warning
1.310 + TEST2(err, KErrNone);
1.311 +
1.312 + delete cleanup;
1.313 + __UHEAP_MARKEND;
1.314 +
1.315 + return (KErrNone);
1.316 + }
1.317 +
1.318 +LOCAL_C void StartTestPanicBadResourceFileFormatL()
1.319 + {
1.320 + CBaNamedPlugins* namedPlugins;
1.321 + RArray<CBaNamedPlugins::TResourceFile> arrayOfResourceFiles;
1.322 + CleanupClosePushL(arrayOfResourceFiles);
1.323 + RFs fs;
1.324 + fs.Connect();
1.325 + TBuf<64> buf;
1.326 + buf = KRscFileName2;
1.327 +
1.328 + // Test Panic
1.329 + CBaNamedPlugins::TResourceFile resourceFile;
1.330 + resourceFile.iFullFileName = buf.AllocLC();
1.331 + resourceFile.iIdentifier = NULL;
1.332 + resourceFile.iUid = KNullUid;
1.333 + resourceFile.iFormat = static_cast<CBaNamedPlugins::TResourceFile::TFormat>(255); // Pick an illegal format
1.334 + User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile));
1.335 + CleanupStack::Pop(resourceFile.iFullFileName);
1.336 +
1.337 + CBaNamedPlugins::CParameters* const parameters = CBaNamedPlugins::CParameters::NewL(fs, arrayOfResourceFiles.Array());
1.338 +
1.339 + // This should panic
1.340 + namedPlugins = CBaNamedPlugins::NewL(*parameters);
1.341 +
1.342 + delete resourceFile.iFullFileName;
1.343 +
1.344 + CleanupStack::PopAndDestroy(&arrayOfResourceFiles);
1.345 + delete parameters;
1.346 + delete namedPlugins;
1.347 + }
1.348 +
1.349 +LOCAL_C TInt TestPanicBadResourceFileFormat(TAny* /*aData*/)
1.350 + {
1.351 + __UHEAP_MARK;
1.352 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.353 + if(!cleanup)
1.354 + return KErrNoMemory;
1.355 +
1.356 + TRAPD(err, StartTestPanicBadResourceFileFormatL());
1.357 +
1.358 + // Won't get here but add this line to get rid of ARMV5 warning
1.359 + TEST2(err, KErrNone);
1.360 +
1.361 + delete cleanup;
1.362 + __UHEAP_MARKEND;
1.363 +
1.364 + return (KErrNone);
1.365 + }
1.366 +
1.367 +/*
1.368 +@SYMTestCaseID SYSLIB-BAFL-CT-3379
1.369 +@SYMTestCaseDesc CBaNamedPlugins::CParameters class test
1.370 + Tests the class panic conditions
1.371 +@SYMTestPriority Medium
1.372 +@SYMTestActions Cause the class to panic by setting bad enums.
1.373 +@SYMTestExpectedResults Test must not fail
1.374 +@SYMREQ DEF101753
1.375 +*/
1.376 +LOCAL_C void NamedPluginsPanicConditionsThread()
1.377 + {
1.378 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3379 Testing CBaNamedPlugins Panics... "));
1.379 + TBool jitEnabled = User::JustInTime();
1.380 + User::SetJustInTime(EFalse);
1.381 +
1.382 + TRequestStatus status;
1.383 +
1.384 + _LIT(KName, "NamedPlugins_Panic_Thread");
1.385 +
1.386 + RThread thread;
1.387 + const TInt KThreadStackSize =0x2000; // 8k
1.388 + const TInt KThreadMinHeapSize =0x4000; // 16k
1.389 + const TInt KThreadMaxHeapSize =0xf000; // 60k
1.390 +
1.391 + // Test EBafPanicBadResourceFileFormat
1.392 + TInt rc = thread.Create(KName,TestPanicBadResourceFileFormat,KThreadStackSize,KThreadMinHeapSize,KThreadMaxHeapSize,NULL);
1.393 +
1.394 + TEST(rc==KErrNone);
1.395 +
1.396 + thread.Logon(status);
1.397 + thread.Resume();
1.398 +
1.399 + User::WaitForRequest(status);
1.400 +
1.401 + // Should result in a EExitPanic exit type and an EBafPanicBadResourceFileFormat exit reason
1.402 + TEST(thread.ExitType() == EExitPanic);
1.403 + TEST(thread.ExitReason() == EBafPanicBadResourceFileFormat);
1.404 +
1.405 + CLOSE_AND_WAIT(thread);
1.406 +
1.407 + // Test EBafPanicBadArrayPosition
1.408 + rc = thread.Create(KName,TestPanicBadArrayPosition,KThreadStackSize,KThreadMinHeapSize,KThreadMaxHeapSize,NULL);
1.409 +
1.410 + TEST(rc==KErrNone);
1.411 +
1.412 + thread.Logon(status);
1.413 + thread.Resume();
1.414 +
1.415 + User::WaitForRequest(status);
1.416 +
1.417 + // Should result in a EExitPanic exit type and an EBafPanicBadArrayPosition exit reason
1.418 + TEST(thread.ExitType() == EExitPanic);
1.419 + TEST(thread.ExitReason() == EBafPanicBadArrayPosition);
1.420 +
1.421 + thread.Close();
1.422 +
1.423 + User::SetJustInTime(jitEnabled);
1.424 + }
1.425 +
1.426 +
1.427 +void DoTestsL()
1.428 +{
1.429 + TheTest.Next(_L("Calling the tests"));
1.430 + TheFs.Connect();
1.431 + CleanupClosePushL(TheFs);
1.432 +
1.433 + DoTests1();//Getting the resource file names from literals
1.434 + DoTests2();//Getting the resource file names by performing a search on the file system
1.435 + NamedPluginsPanicConditionsThread(); // Test Panic condition
1.436 +
1.437 + CleanupStack::PopAndDestroy(); // TheFs
1.438 +}
1.439 +
1.440 +TInt E32Main()
1.441 +{
1.442 + __UHEAP_MARK;
1.443 +
1.444 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.445 + TheTest.Title();
1.446 + TheTest.Start(_L("Testing CBaNamedPlugins Class"));
1.447 + TRAPD(err,DoTestsL());
1.448 + TEST2(err,KErrNone);
1.449 + TheTest.End();
1.450 + TheTest.Close();
1.451 + delete cleanup;
1.452 +
1.453 + __UHEAP_MARKEND;
1.454 + return(0);
1.455 +}