Merge branch 'tizen' into security-manager
[platform/core/test/security-tests.git] / src / cynara-tests / common / cynara_test_client_async_request_monitor.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 #ifndef CYNARA_TEST_CLIENT_ASYNC_REQUEST_MONITOR_H
18 #define CYNARA_TEST_CLIENT_ASYNC_REQUEST_MONITOR_H
19
20 #include <cynara-client-async.h>
21
22 #include <functional>
23 #include <unordered_map>
24
25 namespace CynaraTestClientAsync {
26
27 typedef std::function<void(void)> RequestFunction;
28
29 struct RequestEntity
30 {
31     RequestFunction m_userFunction;
32     int m_expectedResponse;
33     cynara_async_call_cause m_expectedCause;
34 };
35
36 class RequestMonitor
37 {
38 public:
39     ~RequestMonitor();
40
41     void registerRequest(cynara_check_id id, const RequestEntity &request);
42
43     static void updateResponse(cynara_check_id checkId, cynara_async_call_cause cause, int response,
44                                void *data);
45
46 private:
47     std::unordered_map<cynara_check_id, RequestEntity> m_requests;
48 };
49
50 }// namespace CynaraTestClientAsync
51
52 #endif // CYNARA_TEST_CLIENT_ASYNC_REQUEST_MONITOR_H