Rename /tests to /ckm to align with tizen branch
[platform/core/test/security-tests.git] / src / cynara-tests / common / cynara_test_agent_response.h
1 /*
2  * Copyright (c) 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 #ifndef CYNARA_TEST_AGENT_RESPONSE_H
18 #define CYNARA_TEST_AGENT_RESPONSE_H
19
20 #include <cynara_test_commons.h>
21
22 #include <cynara-agent.h>
23 #include <cynara-plugin.h>
24 #include <ostream>
25
26 namespace CynaraTestAgent {
27
28 class AgentResponse
29 {
30 public:
31     AgentResponse() = delete;
32     static AgentResponse createAllow(cynara_agent_req_id id);
33     static AgentResponse createDeny(cynara_agent_req_id id);
34     static AgentResponse createCancel(cynara_agent_req_id id);
35
36     cynara_agent_msg_type type() const
37     {
38         return m_type;
39     }
40
41     cynara_agent_req_id id() const
42     {
43         return m_id;
44     }
45
46     Cynara::PluginData data() const
47     {
48         return m_data;
49     }
50
51     friend std::ostream& operator<<(std::ostream& os, const AgentResponse &response);
52
53 private:
54     AgentResponse(cynara_agent_msg_type type, cynara_agent_req_id id, Cynara::PluginData data)
55         : m_type(type), m_id(id), m_data(data)
56     {}
57
58     cynara_agent_msg_type m_type;
59     cynara_agent_req_id m_id;
60     Cynara::PluginData m_data;
61 };
62
63 } // namespace CynaraTestAgent
64
65 #endif // CYNARA_TEST_AGENT_RESPONSE_H