os/graphics/graphicsresourceservices/graphicsresource/test/tgraphicsresourceteststepbase.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef TGRAPHICSRESOURCETESTSTEPBASE_H
sl@0
    17
#define TGRAPHICSRESOURCETESTSTEPBASE_H
sl@0
    18
sl@0
    19
#include "sgimage.h"
sl@0
    20
#include "sgimagecollection.h"
sl@0
    21
#include "sgresource.h"
sl@0
    22
#include "tgraphicsresourcemultiprocessthread.h"
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <test/testexecutestepbase.h>
sl@0
    25
#include <graphics/sgimage_sw.h>
sl@0
    26
#include <graphics/sgimage_chunk.h>
sl@0
    27
#include <test/ttmsgraphicsstep.h>
sl@0
    28
sl@0
    29
sl@0
    30
_LIT(KSgTestGenericPanicCategory, "SGRES");
sl@0
    31
_LIT(KSgTestAdapterPanicCategory, "SGRES-ADAPTER");
sl@0
    32
const TInt KMaxPixelFormats = 64;
sl@0
    33
sl@0
    34
class CTSgTestStepBase : public CTTMSGraphicsStep
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
	CTSgTestStepBase();
sl@0
    38
	~CTSgTestStepBase();
sl@0
    39
	IMPORT_C void testBooleanTrue(TBool aCondition, const TText8* aFile, TInt aLine);
sl@0
    40
protected:
sl@0
    41
	// From CTestStep
sl@0
    42
	virtual TVerdict doTestStepPreambleL(); 
sl@0
    43
	virtual TVerdict doTestStepPostambleL();	
sl@0
    44
	
sl@0
    45
	//common utility functions
sl@0
    46
	void CreateImageL(RSgImage& aImage);
sl@0
    47
	void CreateImageCollectionL(RSgImageCollection& aCollection);
sl@0
    48
	TInt CreateSecondProcessAndDoTestL(const TDesC &aProcessName, TSgresTestInfo& aTestInfo);
sl@0
    49
	TInt CreateSecondThreadAndDoTestL(TSgresTestInfo aTestInfo);
sl@0
    50
	void CreateSecondThreadAndCheckPanicL(TSgresTestInfo aTestInfo, TInt aPanicCode, TExitCategoryName aExitCategory, const TDesC &aThreadName);
sl@0
    51
	void CreateSecondProcessAndCheckPanicL(TSgresTestInfo aTestInfo, TInt aPanicCode, TExitCategoryName aExitCategory, const TDesC &aProcessName);
sl@0
    52
	void CallGetPixelFormatsL(TSgCpuAccess aCpuAccess, TUint32 aUsage, TBool aShareable, TInt aScreenId);
sl@0
    53
	void TestGetPixelFormatCompatibilityGuaranteesL();
sl@0
    54
	void CheckPixelFormatPresent(TUidPixelFormat aPixelFormat);
sl@0
    55
	void TestOpenDriverL();
sl@0
    56
	void TestCloseDriver();
sl@0
    57
	static TBool CompareInfos(TSgImageInfo& info1, TSgImageInfo& info2);
sl@0
    58
	static TInt SecondThreadStart(TAny* aInfo);
sl@0
    59
	static void CloseDriverWhenLeave(TAny* aInfo);
sl@0
    60
	void CheckErrorL(TInt aExpectedErrorCode, TInt aActualErrorCode, const TText8* aFile, TInt aLine);
sl@0
    61
	
sl@0
    62
	//OOM test functions
sl@0
    63
	void TestOOM();
sl@0
    64
	virtual void DoMemoryTestsL();
sl@0
    65
	
sl@0
    66
protected:	
sl@0
    67
	RThread iSecondThread;
sl@0
    68
	TBool iRunningOomTests;
sl@0
    69
private:
sl@0
    70
	TInt iPixelFormatCount;
sl@0
    71
	TUidPixelFormat iPixelFormatArray[KMaxPixelFormats];
sl@0
    72
	};
sl@0
    73
sl@0
    74
//common variables and functions
sl@0
    75
const TUint16 KImageData[] = {
sl@0
    76
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    77
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    78
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    79
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    80
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    81
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    82
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,
sl@0
    83
			0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0,0x7E0
sl@0
    84
			};
sl@0
    85
sl@0
    86
const TInt KNumImagesInCollection = 10;
sl@0
    87
sl@0
    88
#define TESTWITHFILENAMEANDLINENUMBERL(a, f, l) \
sl@0
    89
	{\
sl@0
    90
	testBooleanTrueL((a), f, l); \
sl@0
    91
	}
sl@0
    92
sl@0
    93
#if	defined(__WINS__)
sl@0
    94
_LIT(KSecondProcess, "tgraphicsresourcesecondprocess.exe");
sl@0
    95
#elif defined(SYMBIAN_GRAPHICS_USE_GPU_MEMORY)
sl@0
    96
_LIT(KSecondProcess, "tgraphicsresourcesecondprocess_mbx.exe");
sl@0
    97
#else
sl@0
    98
_LIT(KSecondProcess, "tgraphicsresourcesecondprocess_sw.exe");
sl@0
    99
#endif
sl@0
   100
sl@0
   101
_LIT(KSecondThread, "Test_GraphicsResource_SecondThread");
sl@0
   102
_LIT(KSecondThreadSemaphore, "Second Thread Semaphore");
sl@0
   103
sl@0
   104
#endif