Add tests for Cynara::PolicyBucket
[platform/core/security/cynara.git] / test / CMakeLists.txt
1 # Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License");
4 #    you may not use this file except in compliance with the License.
5 #    You may obtain a copy of the License at
6 #
7 #        http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS,
11 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #    See the License for the specific language governing permissions and
13 #    limitations under the License.
14 #
15 # @file        CMakeLists.txt
16 # @author      Aleksander Zdyb <a.zdyb@partner.samsung.com>
17 # @brief       Temporary cmake for tests
18 #
19
20 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.3)
21 PROJECT("cynara-tests")
22
23 ADD_SUBDIRECTORY(${GMOCK_DIR} gmock)
24
25 SET(CYNARA_SOURCES_FOR_TESTS
26     ${CYNARA_SRC}/service/storage/Storage.cpp
27     ${CYNARA_SRC}/common/types/PolicyBucket.cpp
28     ${CYNARA_SRC}/service/storage/InMemoryStorageBackend.cpp
29     ${CYNARA_SRC}/service/storage/StorageSerializer.cpp
30     ${CYNARA_SRC}/common/types/PolicyKey.cpp
31     ${CYNARA_SRC}/common/types/PolicyType.cpp
32 )
33
34 SET(CYNARA_TESTS_SOURCES
35     types/policykey.cpp
36     storage/storage/policies.cpp
37     storage/storage/check.cpp
38     storage/storage/buckets.cpp
39     storage/inmemorystoragebackend/inmemorystoragebackend.cpp
40     storage/inmemorystoragebackend/search.cpp
41     storage/inmemorystoragebackend/buckets.cpp
42     storage/serializer/dump.cpp
43     common/types/policybucket.cpp
44     helpers.cpp
45 )
46
47 INCLUDE_DIRECTORIES(
48     ${GMOCK_DIR}/include
49     ${GMOCK_DIR}/gtest/include
50     ${CYNARA_SRC}
51     ${CYNARA_SRC}/common
52     ${CYNARA_SRC}/include
53 )
54
55 ADD_EXECUTABLE(cynara-tests
56     ${CYNARA_SOURCES_FOR_TESTS}
57     ${CYNARA_TESTS_SOURCES}
58 )
59
60 SET(CMAKE_CXX_FLAGS "-std=c++0x -O0 -g -gdwarf-2")
61
62 FIND_PACKAGE(Threads)
63
64 TARGET_LINK_LIBRARIES(cynara-tests
65     ${CMAKE_THREAD_LIBS_INIT}
66     gmock gtest_main
67 )