Adjust AccessProvider api to current security-server.
[platform/core/test/security-tests.git] / tests / common / summary_collector.h
1 /*
2  * Copyright (c) 2013 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 /*
18  * @file        summary_collector.h
19  * @author      Michal Witanowski (m.witanowski@samsung.com)
20  * @version     1.0
21  * @brief       Implementation of custom test results collector needed by summary view.
22  */
23
24 #ifndef _RAW_RESULTS_COLLECTOR_H_
25 #define _RAW_RESULTS_COLLECTOR_H_
26
27 #include <dpl/test/test_results_collector.h>
28 #include <chrono>
29
30 /*
31  * Custom test runner results collector. The results (total test cases, failed, etc.) are
32  * appended to a file, wihich is parsed after execution of all tests in oreder to
33  * display summary view.
34  */
35 class SummaryCollector : public DPL::Test::TestResultsCollectorBase
36 {
37     unsigned int m_total, m_succeeded, m_failed, m_ignored; // counters
38
39     SummaryCollector();
40     void Start();
41     void Finish();
42     void CollectResult(const std::string& /*id*/,
43                        const std::string& /*description*/,
44                        const FailStatus::Type status,
45                        const std::string& /*reason = ""*/);
46     void CollectResult(const std::string& /*id*/,
47                        const std::string& /*description*/,
48                        const FailStatus::Type status,
49                        const std::string& /*reason = ""*/,
50                        const bool& isPerformanceTest = false,
51                        const std::chrono::system_clock::duration&
52                                performanceTime = std::chrono::microseconds::zero(),
53                        const std::chrono::system_clock::duration&
54                                performanceMaxTime = std::chrono::microseconds::zero());
55
56 public:
57     static TestResultsCollectorBase* Constructor();
58     static void Register();
59 };
60
61 #endif