1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/fbs/fontandbitmapserver/tfbs/TStreamIdCache.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,76 @@
1.4 +// Copyright (c) 2004-2010 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 +#ifndef __TSTREAMIDCACHE_H__
1.20 +#define __TSTREAMIDCACHE_H__
1.21 +
1.22 +#include <fbs.h>
1.23 +#include "test/TGraphicsHarness.h"
1.24 +
1.25 +class CTStreamIdCache : public CTGraphicsBase
1.26 + {
1.27 +public:
1.28 + CTStreamIdCache(CTestStep* aStep);
1.29 + ~CTStreamIdCache();
1.30 +protected:
1.31 +//from CTGraphicsStep
1.32 + virtual void RunTestCaseL(TInt aCurTestCase);
1.33 + void ConstructL();
1.34 +
1.35 +private:
1.36 + void ExpandCleanupStackL();
1.37 +
1.38 + void TestStreamIdCacheEntry();
1.39 + void TestProcessingBitmapStream();
1.40 + void TestComparingStreams();
1.41 + void TestReplacingFile();
1.42 + void TestInvalidArgument();
1.43 + void TestOOMCondition();
1.44 + void TestPerformance();
1.45 + void TestLoadAtOffset();
1.46 + void DoTestingL();
1.47 + TInt FileSizeL(const TDesC& aFileName);
1.48 + void TestSessionClose();
1.49 +private:
1.50 + RFbsSession* iFbs;
1.51 + RFs iFs;
1.52 + TBool iShutdownFbs;
1.53 + TFileName iTestBitmapName;
1.54 + TInt iSessionHandle;
1.55 + };
1.56 +
1.57 +class CTStreamIdCacheStep : public CTGraphicsStep
1.58 + {
1.59 +public:
1.60 + CTStreamIdCacheStep();
1.61 +protected:
1.62 + //from CTGraphicsStep
1.63 + virtual CTGraphicsBase* CreateTestL();
1.64 + void TestSetupL();
1.65 + void TestClose();
1.66 +
1.67 +private:
1.68 + TInt iStartProcessHandleCount;
1.69 + TInt iStartThreadHandleCount;
1.70 + TInt iEndProcessHandleCount;
1.71 + TInt iEndThreadHandleCount;
1.72 +
1.73 + RThread iThread;
1.74 + };
1.75 +
1.76 +_LIT(KTStreamIdCacheStep,"TStreamIdCache");
1.77 +
1.78 +
1.79 +#endif