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 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "tsgimagesw.h"
|
sl@0
|
23 |
#include <graphics/sgimage_sw.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
CTSgImageSw::CTSgImageSw()
|
sl@0
|
26 |
{
|
sl@0
|
27 |
INFO_PRINTF1(_L("Graphics resource component test - RSgImage Sw Implementation Tests.\r\n"));
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
CTSgImageSw::~CTSgImageSw()
|
sl@0
|
31 |
{
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Overrides of base class pure virtual
|
sl@0
|
36 |
Our implementation only gets called if the base class doTestStepPreambleL() did
|
sl@0
|
37 |
not leave. That being the case, the current test result value will be EPass.
|
sl@0
|
38 |
@leave Gets system wide error code
|
sl@0
|
39 |
@return TVerdict code
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
TVerdict CTSgImageSw::doTestStepL()
|
sl@0
|
42 |
{
|
sl@0
|
43 |
SetTestStepID(_L("GRAPHICS-RESOURCE-0041"));
|
sl@0
|
44 |
INFO_PRINTF1(_L("Getting supported pixel formats on software implementation.\r\n"));
|
sl@0
|
45 |
TestGetPixelFormatsSWL();
|
sl@0
|
46 |
RecordTestResultL();
|
sl@0
|
47 |
|
sl@0
|
48 |
SetTestStepID(_L("GRAPHICS-RESOURCE-0042"));
|
sl@0
|
49 |
INFO_PRINTF1(_L("Getting the interfaces implemented by CSgImageImpl class.\r\n"));
|
sl@0
|
50 |
TestGetImageInterfacesSWL();
|
sl@0
|
51 |
RecordTestResultL();
|
sl@0
|
52 |
|
sl@0
|
53 |
SetTestStepID(_L("GRAPHICS-RESOURCE-0043"));
|
sl@0
|
54 |
INFO_PRINTF1(_L("Getting the address information from the MSgImage_Sw interface.\r\n"));
|
sl@0
|
55 |
TestGetImageInterfaceAddressInfo();
|
sl@0
|
56 |
RecordTestResultL();
|
sl@0
|
57 |
|
sl@0
|
58 |
return TestStepResult();
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
@SYMTestCaseID GRAPHICS-RESOURCE-0041
|
sl@0
|
63 |
@SYMTestCaseDesc Gets supported pixel formats on software reference implementation.
|
sl@0
|
64 |
@SYMPREQ PREQ39
|
sl@0
|
65 |
@SYMREQ REQ8809
|
sl@0
|
66 |
@SYMREQ REQ9175
|
sl@0
|
67 |
@SYMFssID RSgImage::GetPixelFormats(const TSgImageInfo&, TUidPixelFormat*, TInt&)
|
sl@0
|
68 |
@SYMTestPriority Critical
|
sl@0
|
69 |
@SYMTestType Unit Test
|
sl@0
|
70 |
@SYMTestPurpose To ensure all the available pixel formats are returned
|
sl@0
|
71 |
in the array and the actual number of pixel formats in
|
sl@0
|
72 |
the input/output aCount parameter for the software
|
sl@0
|
73 |
reference implementation.
|
sl@0
|
74 |
@SYMTestActions Initialise the graphics resource component. Construct a
|
sl@0
|
75 |
TSgImageInfo object and Initialise the member variables.
|
sl@0
|
76 |
Construct a TInt array of size\n
|
sl@0
|
77 |
\t 1. NULL\n
|
sl@0
|
78 |
\t 2. greater than the number of supported pixel formats\n
|
sl@0
|
79 |
\t 3. equal to the number of supported pixel formats\n
|
sl@0
|
80 |
\t 4. less than the number of supported pixel formats
|
sl@0
|
81 |
@SYMTestExpectedResults The function must return\n
|
sl@0
|
82 |
\t 1. KErrNone\n
|
sl@0
|
83 |
\t 2. KErrNone\n
|
sl@0
|
84 |
\t 3. KErrNone\n
|
sl@0
|
85 |
\t 4. KErrOverFlow\n
|
sl@0
|
86 |
The supported pixel formats are populated into the array
|
sl@0
|
87 |
and aCount stores the actual number of supported pixel formats.
|
sl@0
|
88 |
The returned pixel formats should cover the pixel formats
|
sl@0
|
89 |
in the image compatibility table that works on all platforms.
|
sl@0
|
90 |
All the returned pixel formats should appear on the image
|
sl@0
|
91 |
compatibility list for the software reference implementation.
|
sl@0
|
92 |
@SYMTestStatus Defined
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
void CTSgImageSw::TestGetPixelFormatsSWL()
|
sl@0
|
95 |
{
|
sl@0
|
96 |
TestOpenDriverL();
|
sl@0
|
97 |
//check all the pixel formats returned are in the common compatibility guarantees table
|
sl@0
|
98 |
TestGetPixelFormatCompatibilityGuaranteesL();
|
sl@0
|
99 |
|
sl@0
|
100 |
//check the pixel formates supported by the reference implementation only
|
sl@0
|
101 |
CallGetPixelFormatsL(ESgCpuAccessNone, ESgUsageDirectGdiSource|ESgUsageCompositionSource|ESgUsageOpenGlesTexture2D|ESgUsageOpenVgImage|ESgUsageDirectGdiTarget, ETrue, KSgScreenIdMain);
|
sl@0
|
102 |
CheckPixelFormatPresent(EUidPixelFormatRGB_565);
|
sl@0
|
103 |
CheckPixelFormatPresent(EUidPixelFormatXRGB_8888);
|
sl@0
|
104 |
CheckPixelFormatPresent(EUidPixelFormatARGB_8888_PRE);
|
sl@0
|
105 |
|
sl@0
|
106 |
TestCloseDriver();
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
@SYMTestCaseID GRAPHICS-RESOURCE-0042
|
sl@0
|
112 |
@SYMTestCaseDesc Gets the interfaces implemented by CSgImageImpl class.
|
sl@0
|
113 |
@SYMPREQ PREQ39
|
sl@0
|
114 |
@SYMREQ REQ8809
|
sl@0
|
115 |
@SYMREQ REQ9175
|
sl@0
|
116 |
@SYMFssID RSgImage::Create(const TSgImageInfo&, const TAny*, TInt)\n
|
sl@0
|
117 |
RSgImage::GetInterface()
|
sl@0
|
118 |
@SYMTestPriority Critical
|
sl@0
|
119 |
@SYMTestType Unit Test
|
sl@0
|
120 |
@SYMTestPurpose To ensure the MSgImage_Sw interface can be returned from RSgImage.
|
sl@0
|
121 |
@SYMTestActions Initialise the graphics resource component. Create an image. Call
|
sl@0
|
122 |
GetInterface() to return the MSgImage_Sw interface.
|
sl@0
|
123 |
@SYMTestExpectedResults Both interfaces are returned successfully.
|
sl@0
|
124 |
@SYMTestStatus Defined
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
void CTSgImageSw::TestGetImageInterfacesSWL()
|
sl@0
|
127 |
{
|
sl@0
|
128 |
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
@SYMTestCaseID GRAPHICS-RESOURCE-0043
|
sl@0
|
133 |
@SYMTestCaseDesc Gets the address information from the MSgImage_Sw interface.
|
sl@0
|
134 |
@SYMPREQ PREQ39
|
sl@0
|
135 |
@SYMFssID RSgImage::Create(const TSgImageInfo&, const TAny*, TInt)\n
|
sl@0
|
136 |
RSgImage::Interface()\n
|
sl@0
|
137 |
MSgImage_Sw::DataAddress()\n
|
sl@0
|
138 |
MSgImage_Sw::DataStride()
|
sl@0
|
139 |
@SYMTestPriority Critical
|
sl@0
|
140 |
@SYMTestType Unit Test
|
sl@0
|
141 |
@SYMTestPurpose To ensure the software solution of the RSgImage returns
|
sl@0
|
142 |
the correct image address information.
|
sl@0
|
143 |
@SYMTestActions Initialise the graphics resource component. Create an image. Call
|
sl@0
|
144 |
GetInterface() to return the MSgImage_Sw interface. Call the DataAddress()
|
sl@0
|
145 |
and DataStride() functions on the interface. Then modify some random
|
sl@0
|
146 |
byte within the data address of the image and read back to check if the
|
sl@0
|
147 |
byte has been modified.
|
sl@0
|
148 |
@SYMTestExpectedResults The byte should be successfully modified.
|
sl@0
|
149 |
@SYMTestStatus Defined
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
void CTSgImageSw::TestGetImageInterfaceAddressInfo()
|
sl@0
|
152 |
{
|
sl@0
|
153 |
|
sl@0
|
154 |
}
|