Add PerformanceResult class
[platform/core/test/security-tests.git] / src / framework / include / dpl / test / test_results_collector_console.h
1 /*
2  * Copyright (c) 2014-2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        test_results_collector_console.h
18  * @author      Marcin Niesluchowski (m.niesluchow@samsung.com)
19  * @version     1.0
20  * @brief       Header file containing ConsoleCollector class declaration
21  */
22
23 #ifndef DPL_TEST_RESULTS_COLLECTOR_CONSOLE_H
24 #define DPL_TEST_RESULTS_COLLECTOR_CONSOLE_H
25
26 #include <map>
27
28 #include <dpl/test/statistic.h>
29 #include <dpl/test/test_results_collector.h>
30
31 namespace DPL {
32 namespace Test {
33
34 class ConsoleCollector :
35     public TestResultsCollectorBase
36 {
37 public:
38     static TestResultsCollectorBase* Constructor();
39
40 private:
41     ConsoleCollector();
42
43     virtual bool ParseCollectorSpecificArg(const std::string& arg);
44     virtual std::string CollectorSpecificHelp() const;
45     virtual void CollectCurrentTestGroupName(const std::string& name);
46     virtual void CollectResult(const std::string& id,
47                                const FailStatus status = FailStatus::NONE,
48                                const std::string& reason = "",
49                                const ConstPerformanceResultPtr &performanceResult = nullptr);
50     virtual void Finish();
51
52     void PrintfErrorMessage(const char* type, const std::string& message);
53     void PrintfIgnoredMessage(const char* type, const std::string& message);
54     void PrintStats(const std::string& title, const Statistic& stats);
55
56     Statistic m_stats;
57     std::map<std::string, Statistic> m_groupsStats;
58     std::string m_currentGroup;
59     bool m_verbosity;
60 };
61
62 } // namespace Test
63 } // namespace DPL
64
65 #endif // DPL_TEST_RESULTS_COLLECTOR_CONSOLE_H