blob: 7f088e176957f205716b5086b4a6fc605d9998ae [file] [log] [blame]
Jarkko Poyry3c827362014-09-02 11:48:52 +03001/*-------------------------------------------------------------------------
2 * drawElements Quality Program OpenGL ES 3.0 Module
3 * -------------------------------------------------
4 *
5 * Copyright 2014 The Android Open Source Project
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 *//*!
20 * \file
21 * \brief OpenGL ES 3.0 Test Package
22 *//*--------------------------------------------------------------------*/
23
24#include "tes3TestPackage.hpp"
25#include "tes3InfoTests.hpp"
26#include "es3fFunctionalTests.hpp"
27#include "es3aAccuracyTests.hpp"
28#include "es3sStressTests.hpp"
29#include "es3pPerformanceTests.hpp"
Pyry Haulos4e3ea872015-03-20 11:06:41 -070030#include "tcuTestLog.hpp"
31#include "gluRenderContext.hpp"
32#include "gluStateReset.hpp"
33#include "glwFunctions.hpp"
34#include "glwEnums.hpp"
Jarkko Poyry3c827362014-09-02 11:48:52 +030035
36namespace deqp
37{
38namespace gles3
39{
40
Pyry Haulos4e3ea872015-03-20 11:06:41 -070041class TestCaseWrapper : public tcu::TestCaseExecutor
Jarkko Poyry3c827362014-09-02 11:48:52 +030042{
Pyry Haulos4e3ea872015-03-20 11:06:41 -070043public:
44 TestCaseWrapper (TestPackage& package);
45 ~TestCaseWrapper (void);
Jarkko Poyry3c827362014-09-02 11:48:52 +030046
Pyry Haulos4e3ea872015-03-20 11:06:41 -070047 void init (tcu::TestCase* testCase, const std::string& path);
48 void deinit (tcu::TestCase* testCase);
49 tcu::TestNode::IterateResult iterate (tcu::TestCase* testCase);
50
51private:
52 TestPackage& m_testPackage;
53};
54
55TestCaseWrapper::TestCaseWrapper (TestPackage& package)
56 : m_testPackage(package)
57{
Jarkko Poyry3c827362014-09-02 11:48:52 +030058}
59
Pyry Haulos4e3ea872015-03-20 11:06:41 -070060TestCaseWrapper::~TestCaseWrapper (void)
Jarkko Poyry3c827362014-09-02 11:48:52 +030061{
Pyry Haulos4e3ea872015-03-20 11:06:41 -070062}
63
64void TestCaseWrapper::init (tcu::TestCase* testCase, const std::string&)
65{
66 testCase->init();
67}
68
69void TestCaseWrapper::deinit (tcu::TestCase* testCase)
70{
71 testCase->deinit();
72
73 DE_ASSERT(m_testPackage.getContext());
Mika Isojärvi344563b2016-03-10 13:56:54 -080074 glu::resetState(m_testPackage.getContext()->getRenderContext(), m_testPackage.getContext()->getContextInfo());
Pyry Haulos4e3ea872015-03-20 11:06:41 -070075}
76
77tcu::TestNode::IterateResult TestCaseWrapper::iterate (tcu::TestCase* testCase)
78{
79 tcu::TestContext& testCtx = m_testPackage.getContext()->getTestContext();
80 glu::RenderContext& renderCtx = m_testPackage.getContext()->getRenderContext();
81 tcu::TestCase::IterateResult result;
82
83 // Clear to surrender-blue
84 {
85 const glw::Functions& gl = renderCtx.getFunctions();
86 gl.clearColor(0.125f, 0.25f, 0.5f, 1.f);
87 gl.clear(GL_COLOR_BUFFER_BIT);
88 }
89
90 result = testCase->iterate();
91
92 // Call implementation specific post-iterate routine (usually handles native events and swaps buffers)
93 try
94 {
95 renderCtx.postIterate();
96 return result;
97 }
98 catch (const tcu::ResourceError& e)
99 {
100 testCtx.getLog() << e;
101 testCtx.setTestResult(QP_TEST_RESULT_RESOURCE_ERROR, "Resource error in context post-iteration routine");
102 testCtx.setTerminateAfter(true);
103 return tcu::TestNode::STOP;
104 }
105 catch (const std::exception& e)
106 {
107 testCtx.getLog() << e;
108 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Error in context post-iteration routine");
109 return tcu::TestNode::STOP;
110 }
Jarkko Poyry3c827362014-09-02 11:48:52 +0300111}
112
113TestPackage::TestPackage (tcu::TestContext& testCtx)
114 : tcu::TestPackage (testCtx, "dEQP-GLES3", "dEQP OpenGL ES 3.0 Tests")
Jarkko Poyry3c827362014-09-02 11:48:52 +0300115 , m_archive (testCtx.getRootArchive(), "gles3/")
Pyry Haulos4e3ea872015-03-20 11:06:41 -0700116 , m_context (DE_NULL)
Jarkko Poyry3c827362014-09-02 11:48:52 +0300117{
118}
119
120TestPackage::~TestPackage (void)
121{
122 // Destroy children first since destructors may access context.
123 TestNode::deinit();
Pyry Haulos4e3ea872015-03-20 11:06:41 -0700124 delete m_context;
Jarkko Poyry3c827362014-09-02 11:48:52 +0300125}
126
127void TestPackage::init (void)
128{
129 try
130 {
131 // Create context
Pyry Haulos4e3ea872015-03-20 11:06:41 -0700132 m_context = new Context(m_testCtx);
Jarkko Poyry3c827362014-09-02 11:48:52 +0300133
134 // Add main test groups
Pyry Haulos4e3ea872015-03-20 11:06:41 -0700135 addChild(new InfoTests (*m_context));
136 addChild(new Functional::FunctionalTests (*m_context));
137 addChild(new Accuracy::AccuracyTests (*m_context));
138 addChild(new Performance::PerformanceTests (*m_context));
139 addChild(new Stress::StressTests (*m_context));
Jarkko Poyry3c827362014-09-02 11:48:52 +0300140 }
141 catch (...)
142 {
Pyry Haulos4e3ea872015-03-20 11:06:41 -0700143 delete m_context;
144 m_context = DE_NULL;
Jarkko Poyry3c827362014-09-02 11:48:52 +0300145
146 throw;
147 }
148}
149
150void TestPackage::deinit (void)
151{
152 TestNode::deinit();
Pyry Haulos4e3ea872015-03-20 11:06:41 -0700153 delete m_context;
154 m_context = DE_NULL;
155}
156
157tcu::TestCaseExecutor* TestPackage::createExecutor (void) const
158{
159 return new TestCaseWrapper(const_cast<TestPackage&>(*this));
Jarkko Poyry3c827362014-09-02 11:48:52 +0300160}
161
162} // gles3
163} // deqp