sl@0
|
1 |
// Copyright (c) 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 |
|
sl@0
|
23 |
#include "tflowwindowstestopenglvg.h"
|
sl@0
|
24 |
#include "tflowwindowopengl.h"
|
sl@0
|
25 |
#include "tflowwindowopenvg.h"
|
sl@0
|
26 |
#include "tsmallwindowraster.h"
|
sl@0
|
27 |
#include "tflowwindowscontroller.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KTestStep0002,"GRAPHICS-UI-BENCH-S60-0002");
|
sl@0
|
31 |
_LIT(KSectNameOpenGLVGTest, "OpenGLVGTest");
|
sl@0
|
32 |
_LIT(KKeyNamePreload, "Preload");
|
sl@0
|
33 |
_LIT(KKeyNameFiles, "Files");
|
sl@0
|
34 |
_LIT(KKeyNameWindowWidth, "WindowWidth");
|
sl@0
|
35 |
_LIT(KKeyNameWindowHeight, "WindowHeight");
|
sl@0
|
36 |
|
sl@0
|
37 |
CTFlowWindowsTestOpenGLVG::CTFlowWindowsTestOpenGLVG()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
SetTestStepName(KTFlowWindowsOpenGLVG);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
CTFlowWindowsTestOpenGLVG::~CTFlowWindowsTestOpenGLVG()
|
sl@0
|
43 |
{
|
sl@0
|
44 |
delete iFlowWindowsController;
|
sl@0
|
45 |
iFileNames.Close();
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
TVerdict CTFlowWindowsTestOpenGLVG::doTestStepPreambleL()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
CTe_graphicsperformanceSuiteStepBase::doTestStepPreambleL();
|
sl@0
|
51 |
|
sl@0
|
52 |
iPreload = EFalse; // default behaviour
|
sl@0
|
53 |
GetBoolFromConfig(KSectNameOpenGLVGTest, KKeyNamePreload, iPreload);
|
sl@0
|
54 |
|
sl@0
|
55 |
TSize windowSize = CTWindow::GetDisplaySizeInPixels();
|
sl@0
|
56 |
GetIntFromConfig(KSectNameOpenGLVGTest, KKeyNameWindowWidth, windowSize.iWidth);
|
sl@0
|
57 |
GetIntFromConfig(KSectNameOpenGLVGTest, KKeyNameWindowHeight, windowSize.iHeight);
|
sl@0
|
58 |
TPtrC fileNameList;
|
sl@0
|
59 |
TEST(GetStringFromConfig(KSectNameOpenGLVGTest, KKeyNameFiles, fileNameList));
|
sl@0
|
60 |
ExtractListL(fileNameList, iFileNames);
|
sl@0
|
61 |
iIterationsToTest = windowSize.iWidth * iFileNames.Count();
|
sl@0
|
62 |
|
sl@0
|
63 |
RArray<TPoint> initialPositions;
|
sl@0
|
64 |
RArray<pTWindowCreatorFunction> windowCreatorFunctions;
|
sl@0
|
65 |
TPoint initialPosition(0, 0);
|
sl@0
|
66 |
CleanupClosePushL(initialPositions);
|
sl@0
|
67 |
CleanupClosePushL(windowCreatorFunctions);
|
sl@0
|
68 |
windowCreatorFunctions.AppendL(CTFlowWindowOpenGL::NewL);
|
sl@0
|
69 |
initialPositions.AppendL(initialPosition);
|
sl@0
|
70 |
|
sl@0
|
71 |
windowCreatorFunctions.AppendL(CTFlowWindowOpenVG::NewL);
|
sl@0
|
72 |
initialPosition.iX += windowSize.iWidth;
|
sl@0
|
73 |
initialPositions.AppendL(initialPosition);
|
sl@0
|
74 |
|
sl@0
|
75 |
windowCreatorFunctions.AppendL(CTSmallWindowRaster::NewL);
|
sl@0
|
76 |
initialPosition.iX += windowSize.iWidth;
|
sl@0
|
77 |
initialPositions.AppendL(initialPosition);
|
sl@0
|
78 |
|
sl@0
|
79 |
iFlowWindowsController = CTFlowWindowsController::NewL(ETrue, iFileNames, windowSize, windowCreatorFunctions, initialPositions, EFalse);
|
sl@0
|
80 |
CleanupStack::PopAndDestroy(2, &initialPositions);
|
sl@0
|
81 |
return TestStepResult();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
Override of base class pure virtual
|
sl@0
|
86 |
Our implementation only gets called if the base class doTestStepPreambleL() did
|
sl@0
|
87 |
not leave.
|
sl@0
|
88 |
|
sl@0
|
89 |
@return - TVerdict code
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
TVerdict CTFlowWindowsTestOpenGLVG::doTestStepL()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
SetTestStepID(KTestStep0002);
|
sl@0
|
94 |
TRAPD(err, FlowOpenGLVGWindowsL());
|
sl@0
|
95 |
if (err != KErrNone)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
SetTestStepResult(EAbort);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
return TestStepResult();
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
/**
|
sl@0
|
103 |
@SYMTestCaseID
|
sl@0
|
104 |
GRAPHICS-UI-BENCH-S60-0002
|
sl@0
|
105 |
|
sl@0
|
106 |
@SYMTestCaseDesc
|
sl@0
|
107 |
Tests how long it takes to moves windows over the screen.
|
sl@0
|
108 |
|
sl@0
|
109 |
@SYMTestActions
|
sl@0
|
110 |
Creates windows which draw bitmaps, OpenVG and OpenGL ES content and moves them over the screen.
|
sl@0
|
111 |
|
sl@0
|
112 |
@SYMTestExpectedResults
|
sl@0
|
113 |
Test should pass and write the average framerate of the test to a log file.
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
void CTFlowWindowsTestOpenGLVG::FlowOpenGLVGWindowsL()
|
sl@0
|
116 |
{
|
sl@0
|
117 |
iProfiler->InitResults();
|
sl@0
|
118 |
iIterationsToTest = 25;
|
sl@0
|
119 |
for (TInt i = 0; i < iIterationsToTest; ++i)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
iFlowWindowsController->MoveL();
|
sl@0
|
122 |
}
|
sl@0
|
123 |
iProfiler->MarkResultSetL();
|
sl@0
|
124 |
TSize windowSize = CTWindow::GetDisplaySizeInPixels();
|
sl@0
|
125 |
iProfiler->ResultsAnalysisFrameRate(KTestStep0002, 0, 0, 0, iIterationsToTest, windowSize.iWidth * windowSize.iHeight);
|
sl@0
|
126 |
}
|