Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_wearable / test / include / dpl / test / test_results_collector.h
1 /*
2  * Copyright (c) 2011 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.h
18  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version     1.0
20  * @brief       Header file with declaration of TestResultsCollectorBase
21  */
22
23 #ifndef DPL_TEST_RESULTS_COLLECTOR_H
24 #define DPL_TEST_RESULTS_COLLECTOR_H
25
26 #include <dpl/noncopyable.h>
27 #include <dpl/availability.h>
28 #include <vector>
29 #include <list>
30 #include <map>
31 #include <string>
32 #include <memory>
33
34 namespace DPL {
35 namespace Test {
36 class TestResultsCollectorBase;
37 typedef std::shared_ptr<TestResultsCollectorBase>
38 TestResultsCollectorBasePtr;
39
40 class TestResultsCollectorBase :
41     private DPL::Noncopyable
42 {
43   public:
44     typedef TestResultsCollectorBase* (*CollectorConstructorFunc)();
45     typedef std::list<std::string> TestCaseIdList;
46     struct FailStatus
47     {
48         enum Type
49         {
50             NONE,
51             FAILED,
52             IGNORED,
53             INTERNAL
54         };
55     };
56
57     virtual ~TestResultsCollectorBase() {}
58
59     virtual bool Configure()
60     {
61         return true;
62     }
63     virtual void Start(int count) { DPL_UNUSED_PARAM(count); }
64     virtual void Finish() { }
65     virtual void CollectCurrentTestGroupName(const std::string& /*groupName*/)
66     {}
67
68     virtual void CollectTestsCasesList(const TestCaseIdList& /*list*/) {}
69     virtual void CollectResult(const std::string& id,
70                                const std::string& description,
71                                const FailStatus::Type status = FailStatus::NONE,
72                                const std::string& reason = "") = 0;
73     virtual std::string CollectorSpecificHelp() const
74     {
75         return "";
76     }
77     virtual bool ParseCollectorSpecificArg (const std::string& /*arg*/)
78     {
79         return false;
80     }
81
82     static TestResultsCollectorBase* Create(const std::string& name);
83     static void RegisterCollectorConstructor(
84         const std::string& name,
85         CollectorConstructorFunc
86         constructor);
87     static std::vector<std::string> GetCollectorsNames();
88
89   private:
90     typedef std::map<std::string, CollectorConstructorFunc> ConstructorsMap;
91     static ConstructorsMap m_constructorsMap;
92 };
93 }
94 }
95
96 #endif /* DPL_TEST_RESULTS_COLLECTOR_H */