Rename /tests to /ckm to align with tizen branch
[platform/core/test/security-tests.git] / src / cynara-tests / common / cynara_test_agent_request.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_REQUEST_H
18 #define CYNARA_TEST_AGENT_REQUEST_H
19
20 #include <cynara_test_commons.h>
21
22 #include <cynara-agent.h>
23 #include <cynara-plugin.h>
24 #include <ostream>
25 #include <string>
26
27 namespace CynaraTestAgent {
28
29 class AgentRequest
30 {
31 public:
32     AgentRequest() : m_valid(false), m_type(CYNARA_MSG_TYPE_ACTION), m_id(0)
33     {}
34
35     void set(cynara_agent_msg_type type, cynara_agent_req_id id, const void *data, size_t dataSize);
36
37     bool valid() const
38     {
39         return m_valid;
40     }
41
42     cynara_agent_msg_type type() const
43     {
44         return m_type;
45     }
46
47     cynara_agent_req_id id() const
48     {
49         return m_id;
50     }
51
52     void assertAction(std::string client, std::string user, std::string privilege);
53     void assertCancel();
54
55     friend std::ostream& operator<<(std::ostream& os, const AgentRequest &request);
56
57 private:
58     bool m_valid;
59     cynara_agent_msg_type m_type;
60     cynara_agent_req_id m_id;
61     Cynara::PluginData m_data;
62     std::string m_client;
63     std::string m_user;
64     std::string m_privilege;
65 };
66
67 } // namespace CynaraTestAgent
68
69 #endif // CYNARA_TEST_AGENT_REQUEST_H