• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program Tester Core
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 Test result collector
22  *//*--------------------------------------------------------------------*/
23 
24 #include "tcuResultCollector.hpp"
25 #include "tcuTestContext.hpp"
26 #include "tcuTestLog.hpp"
27 
28 namespace tcu
29 {
30 
testResultSeverity(qpTestResult testResult)31 static int testResultSeverity (qpTestResult testResult)
32 {
33 	switch (testResult)
34 	{
35 		case QP_TEST_RESULT_LAST:					return -1;
36 		case QP_TEST_RESULT_PASS:					return 0;
37 		case QP_TEST_RESULT_PENDING:				return 10;
38 		case QP_TEST_RESULT_NOT_SUPPORTED:			return 20;
39 		case QP_TEST_RESULT_QUALITY_WARNING:		return 30;
40 		case QP_TEST_RESULT_COMPATIBILITY_WARNING:	return 40;
41 		case QP_TEST_RESULT_TIMEOUT:				return 50;
42 		case QP_TEST_RESULT_WAIVER:					return 60;
43 		case QP_TEST_RESULT_FAIL:					return 100;
44 		case QP_TEST_RESULT_RESOURCE_ERROR:			return 110;
45 		case QP_TEST_RESULT_INTERNAL_ERROR:			return 120;
46 		case QP_TEST_RESULT_CRASH:					return 150;
47 		default:									DE_FATAL("Impossible case");
48 	}
49 	return 0;
50 }
51 
ResultCollector(void)52 ResultCollector::ResultCollector (void)
53 	: m_log		(DE_NULL)
54 	, m_prefix	("")
55 	, m_result	(QP_TEST_RESULT_LAST)
56 	, m_message ("Pass")
57 {
58 }
59 
ResultCollector(TestLog & log,const std::string & prefix)60 ResultCollector::ResultCollector (TestLog& log, const std::string& prefix)
61 	: m_log		(&log)
62 	, m_prefix	(prefix)
63 	, m_result	(QP_TEST_RESULT_LAST)
64 	, m_message ("Pass")
65 {
66 }
67 
getResult(void) const68 qpTestResult ResultCollector::getResult (void) const
69 {
70 	if (m_result == QP_TEST_RESULT_LAST)
71 		return QP_TEST_RESULT_PASS;
72 	else
73 		return m_result;
74 }
75 
addResult(qpTestResult result,const std::string & msg)76 void ResultCollector::addResult (qpTestResult result, const std::string& msg)
77 {
78 	if (m_log != DE_NULL)
79 		(*m_log) << TestLog::Message << m_prefix << msg << TestLog::EndMessage;
80 
81 	if (testResultSeverity(result) > testResultSeverity(m_result))
82 	{
83 		m_result = result;
84 		m_message = msg;
85 	}
86 }
87 
checkResult(bool condition,qpTestResult result,const std::string & msg)88 bool ResultCollector::checkResult (bool condition, qpTestResult result, const std::string& msg)
89 {
90 	if (!condition)
91 		addResult(result, msg);
92 	return condition;
93 }
94 
fail(const std::string & msg)95 void ResultCollector::fail (const std::string& msg)
96 {
97 	addResult(QP_TEST_RESULT_FAIL, msg);
98 }
99 
check(bool condition,const std::string & msg)100 bool ResultCollector::check (bool condition, const std::string& msg)
101 {
102 	return checkResult(condition, QP_TEST_RESULT_FAIL, msg);
103 }
104 
setTestContextResult(TestContext & testCtx)105 void ResultCollector::setTestContextResult (TestContext& testCtx)
106 {
107 	testCtx.setTestResult(getResult(), getMessage().c_str());
108 }
109 
110 } // tcu
111