add/remove/modify APIs.
[platform/upstream/csr-framework.git] / test / test-api-engine-manager.cpp
1 /*
2  *  Copyright (c) 2016 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-api-engine-manager.cpp
18  * @author      Kyungwook Tak (k.tak@samsung.com)
19  * @version     1.0
20  * @brief       CSR Engine manager API test
21  */
22 #include <csr/engine-manager.h>
23
24 #include <string>
25 #include <boost/test/unit_test.hpp>
26
27 BOOST_AUTO_TEST_SUITE(API_ENGINE_MANAGER)
28
29 BOOST_AUTO_TEST_CASE(get_current_engine)
30 {
31         int ret = CSR_ERROR_UNKNOWN;
32
33         csr_engine_h handle;
34         BOOST_REQUIRE_NO_THROW(ret = csr_get_current_engine(CSR_ENGINE_CS, &handle));
35         BOOST_REQUIRE(ret == CSR_ERROR_NONE);
36
37         BOOST_REQUIRE_NO_THROW(ret = csr_engine_destroy(handle));
38         BOOST_REQUIRE(ret == CSR_ERROR_NONE);
39 }
40
41 BOOST_AUTO_TEST_CASE(get_name)
42 {
43         int ret = CSR_ERROR_UNKNOWN;
44
45         csr_engine_h handle;
46         BOOST_REQUIRE_NO_THROW(ret = csr_get_current_engine(CSR_ENGINE_CS, &handle));
47         BOOST_REQUIRE(ret == CSR_ERROR_NONE);
48
49         char *name = nullptr;
50         BOOST_REQUIRE_NO_THROW(ret = csr_engine_get_name(handle, &name));
51         BOOST_REQUIRE(ret == CSR_ERROR_NONE);
52
53         BOOST_REQUIRE_NO_THROW(ret = csr_engine_destroy(handle));
54         BOOST_REQUIRE(ret == CSR_ERROR_NONE);
55 }
56
57 BOOST_AUTO_TEST_SUITE_END()