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 TSGIMAGEGENERIC_H
|
sl@0
|
17 |
#define TSGIMAGEGENERIC_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "tgraphicsresourceteststepbase.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
Class containing all the positive, negative and panic tests for RSgImage.
|
sl@0
|
23 |
|
sl@0
|
24 |
KErrNoMemory testing can optionally be enabled.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
class CTSgImageGeneric : public CTSgTestStepBase
|
sl@0
|
27 |
{
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
CTSgImageGeneric(TBool aConformanceTests);
|
sl@0
|
30 |
~CTSgImageGeneric();
|
sl@0
|
31 |
|
sl@0
|
32 |
//positive tests
|
sl@0
|
33 |
void TestGetPixelFormatsL();
|
sl@0
|
34 |
void TestCreateImageUninitializedL();
|
sl@0
|
35 |
void TestCreateImageL();
|
sl@0
|
36 |
void TestCreateImageFromExistingImageL();
|
sl@0
|
37 |
void TestGetImageInfoL();
|
sl@0
|
38 |
void TestGetImageDrawableIdL();
|
sl@0
|
39 |
void TestOpenImageL();
|
sl@0
|
40 |
void TestGetInterfaceL();
|
sl@0
|
41 |
void TestCreateImageAllPixelFormatsL();
|
sl@0
|
42 |
void TestCreateImageDataStrideL();
|
sl@0
|
43 |
void TestOpenImageMultithreadedL();
|
sl@0
|
44 |
|
sl@0
|
45 |
//negative tests
|
sl@0
|
46 |
void TestGetPixelFormatsInvalidL();
|
sl@0
|
47 |
void TestOpenImageInvalidL();
|
sl@0
|
48 |
void TestCloseImageManyTimesL();
|
sl@0
|
49 |
void TestCloseImageWithoutOpenL();
|
sl@0
|
50 |
void TestCreateImageInvalidL();
|
sl@0
|
51 |
void TestGetInfoImageInvalidL();
|
sl@0
|
52 |
void TestGetAttributesImageInvalidL();
|
sl@0
|
53 |
|
sl@0
|
54 |
//stress tests
|
sl@0
|
55 |
void TestStress1L();
|
sl@0
|
56 |
void TestStress2L();
|
sl@0
|
57 |
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
//panic tests
|
sl@0
|
60 |
void TestPanicImageGetInterfaceInvalidHandleL();
|
sl@0
|
61 |
void TestPanicImageGetInterfaceNoDriverL();
|
sl@0
|
62 |
void TestPanicImageCloseInvalidHandleL();
|
sl@0
|
63 |
void TestPanicImageCloseNoDriverL();
|
sl@0
|
64 |
void TestPanicImageIdInvalidHandleL();
|
sl@0
|
65 |
void TestPanicImageIdNoDriverL();
|
sl@0
|
66 |
void TestPanicImageCreateInvalidHandleL();
|
sl@0
|
67 |
void TestPanicImageGetInfoInvalidHandleL();
|
sl@0
|
68 |
void TestPanicImageGetInfoNoDriverL();
|
sl@0
|
69 |
void TestPanicImageOpenNoDriverL();
|
sl@0
|
70 |
void TestPanicImageCreateNoDriver1L();
|
sl@0
|
71 |
void TestPanicImageCreateNoDriver2L();
|
sl@0
|
72 |
void TestPanicImageDrawableTypeNoDriverL();
|
sl@0
|
73 |
void TestPanicImageDrawableTypeInvalidHandleL();
|
sl@0
|
74 |
void TestPanicImageGetAttributeInvalidHandleL();
|
sl@0
|
75 |
void TestPanicImageGetAttributeNoDriverL();
|
sl@0
|
76 |
void TestPanicImageAttributeArrayInvalidIndexL();
|
sl@0
|
77 |
void TestPanicImageAttributeArrayInvalidIndex2L();
|
sl@0
|
78 |
void TestPanicDriverCloseOpenResourcesL();
|
sl@0
|
79 |
void TestCreateOpenCloseImageAndDriverInSecondThreadL();
|
sl@0
|
80 |
|
sl@0
|
81 |
// utility methods
|
sl@0
|
82 |
void DestroyImages();
|
sl@0
|
83 |
|
sl@0
|
84 |
// From CTSgTestStepBase
|
sl@0
|
85 |
virtual TVerdict doTestStepL();
|
sl@0
|
86 |
|
sl@0
|
87 |
private:
|
sl@0
|
88 |
RArray<RSgImage> iTestImages;
|
sl@0
|
89 |
};
|
sl@0
|
90 |
|
sl@0
|
91 |
_LIT(KTSgImageGeneric,"TSgImageGeneric");
|
sl@0
|
92 |
|
sl@0
|
93 |
#endif /*TSGIMAGEGENERIC_H*/
|