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 "tsgimagembx.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
CTSgImageMbx::CTSgImageMbx()
|
sl@0
|
25 |
{
|
sl@0
|
26 |
INFO_PRINTF1(_L("Graphics resource component test - RSgImage MBX Tests.\r\n"));
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
CTSgImageMbx::~CTSgImageMbx()
|
sl@0
|
30 |
{
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Overrides of base class pure virtual
|
sl@0
|
35 |
Our implementation only gets called if the base class doTestStepPreambleL() did
|
sl@0
|
36 |
not leave. That being the case, the current test result value will be EPass.
|
sl@0
|
37 |
@leave Gets system wide error code
|
sl@0
|
38 |
@return TVerdict code
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
TVerdict CTSgImageMbx::doTestStepL()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
SetTestStepID(_L("GRAPHICS-RESOURCE-0040"));
|
sl@0
|
43 |
INFO_PRINTF1(_L("Getting supported pixel formats on the MBX hardware.\r\n"));
|
sl@0
|
44 |
TestGetPixelFormatsMBXL();
|
sl@0
|
45 |
RecordTestResultL();
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
@SYMTestCaseID GRAPHICS-RESOURCE-0096
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
SetTestStepID(_L("GRAPHICS-RESOURCE-0096"));
|
sl@0
|
52 |
INFO_PRINTF1(_L("Getting the interfaces implemented on the MBX hardware.\r\n"));
|
sl@0
|
53 |
TestGetImageInterfacesMBXL();
|
sl@0
|
54 |
RecordTestResultL();
|
sl@0
|
55 |
|
sl@0
|
56 |
return TestStepResult();
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
@SYMTestCaseID GRAPHICS-RESOURCE-0040
|
sl@0
|
62 |
@SYMTestCaseDesc Gets supported pixel formats on the MBX hardware.
|
sl@0
|
63 |
@SYMPREQ PREQ39
|
sl@0
|
64 |
@SYMREQ REQ8809
|
sl@0
|
65 |
@SYMREQ REQ9175
|
sl@0
|
66 |
@SYMFssID RSgImage::GetPixelFormats(const TSgImageInfo&, TUidPixelFormat*, TInt&)
|
sl@0
|
67 |
@SYMTestPriority Critical
|
sl@0
|
68 |
@SYMTestType Unit Test
|
sl@0
|
69 |
@SYMTestPurpose To ensure all the available pixel formats are returned
|
sl@0
|
70 |
in the array and the actual number of pixel formats in
|
sl@0
|
71 |
the input/output aCount parameter on the MBX hardware.
|
sl@0
|
72 |
@SYMTestActions Initialise the graphics resource component. Construct a
|
sl@0
|
73 |
TSgImageInfo object and Initialise the member variables.
|
sl@0
|
74 |
Construct a TInt array of size\n
|
sl@0
|
75 |
\t 1. NULL\n
|
sl@0
|
76 |
\t 2. greater than the number of supported pixel formats\n
|
sl@0
|
77 |
\t 3. equal to the number of supported pixel formats\n
|
sl@0
|
78 |
\t 4. less than the number of supported pixel formats
|
sl@0
|
79 |
@SYMTestExpectedResults The function must return\n
|
sl@0
|
80 |
\t 1. KErrNone\n
|
sl@0
|
81 |
\t 2. KErrNone\n
|
sl@0
|
82 |
\t 3. KErrNone\n
|
sl@0
|
83 |
\t 4. KErrOverFlow\n
|
sl@0
|
84 |
The supported pixel formats are populated into the array
|
sl@0
|
85 |
and aCount stores the actual number of supported pixel formats.
|
sl@0
|
86 |
The returned pixel formats should cover the pixel formats
|
sl@0
|
87 |
in the image compatibility table that works on all platforms.
|
sl@0
|
88 |
All the returned pixel formats should appear on the image
|
sl@0
|
89 |
compatibility list for the MBX driver.
|
sl@0
|
90 |
@SYMTestStatus Defined
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
void CTSgImageMbx::TestGetPixelFormatsMBXL()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
TestOpenDriverL();
|
sl@0
|
95 |
//check all the pixel formats returned are in the common compatibility guarantees table
|
sl@0
|
96 |
TestGetPixelFormatCompatibilityGuaranteesL();
|
sl@0
|
97 |
|
sl@0
|
98 |
//check the pixel formates supported by the MBX hardware only
|
sl@0
|
99 |
CallGetPixelFormatsL(ESgCpuAccessNone, ESgUsageDirectGdiSource|ESgUsageCompositionSource|ESgUsageOpenGlesTexture2D|ESgUsageOpenVgImage|ESgUsageDirectGdiTarget, ETrue, KSgScreenIdMain);
|
sl@0
|
100 |
CheckPixelFormatPresent(EUidPixelFormatRGB_565);
|
sl@0
|
101 |
CheckPixelFormatPresent(EUidPixelFormatXRGB_8888);
|
sl@0
|
102 |
CheckPixelFormatPresent(EUidPixelFormatARGB_8888_PRE);
|
sl@0
|
103 |
|
sl@0
|
104 |
TestCloseDriver();
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
void CTSgImageMbx::TestGetImageInterfacesMBXL()
|
sl@0
|
108 |
{
|
sl@0
|
109 |
|
sl@0
|
110 |
}
|