Master branch merge for VS build success
[platform/upstream/iotivity.git] / resource / unittests / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 #
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 import os
22 import os.path
23
24 # SConscript file for Local PKI google tests
25 gtest_env = SConscript('#extlibs/gtest/SConscript')
26 unittests_env = gtest_env.Clone()
27 src_dir = unittests_env.get('SRC_DIR')
28 target_os = unittests_env.get('TARGET_OS')
29
30 ######################################################################
31 # Build flags
32 ######################################################################
33 unittests_env.PrependUnique(CPPPATH = [
34                 '../include',
35                 '../oc_logger/include',
36                 '../csdk/stack/include',
37                 '../csdk/security/include',
38                 '../csdk/stack/include/internal',
39                 '../csdk/connectivity/api',
40                 '../csdk/connectivity/external/inc',
41                 '../csdk/ocsocket/include',
42                 '../c_common/ocrandom/include',
43                 '../csdk/logger/include',
44                 '#extlibs/hippomocks-master/HippoMocks',
45                 '#extlibs/hippomocks-master/HippoMocksTest'
46                 ])
47
48 unittests_env.AppendUnique(LIBPATH = [unittests_env.get('BUILD_DIR')])
49 unittests_env.PrependUnique(LIBS = [
50                 'oc',
51                 'octbstack',
52                 'oc_logger',
53                 'connectivity_abstraction',
54                 'coap'
55                 ])
56
57 if unittests_env.get('SECURED') == '1':
58     unittests_env.AppendUnique(LIBS = ['tinydtls'])
59
60 if unittests_env.get('LOGGING'):
61         unittests_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
62
63 ######################################################################
64 # Source files and Targets
65 ######################################################################
66 unittests = unittests_env.Program('unittests', ['ConstructResourceTest.cpp',
67                                                 'OCPlatformTest.cpp',
68                                                 'OCRepresentationTest.cpp',
69                                                 'OCRepresentationEncodingTest.cpp',
70                                                 'OCResourceTest.cpp',
71                                                 'OCExceptionTest.cpp',
72                                                 'OCResourceResponseTest.cpp',
73                                                 'OCHeaderOptionTest.cpp'])
74
75 Alias("unittests", [unittests])
76
77 unittests_env.AppendTarget('unittests')
78 if unittests_env.get('TEST') == '1':
79         if target_os in ['linux']:
80                 from tools.scons.RunTest import *
81                 run_test(unittests_env,
82                          'resource_unittests_unittests.memcheck',
83                          'resource/unittests/unittests')
84
85 src_dir = unittests_env.get('SRC_DIR')
86 svr_db_src_dir = os.path.join(src_dir, 'resource/examples/')
87 svr_db_build_dir = os.path.join(unittests_env.get('BUILD_DIR'), 'resource', 'unittests') + os.sep
88 unittests_env.Alias("install",
89                     unittests_env.Install(svr_db_build_dir,
90                                           os.path.join(svr_db_src_dir,
91                                                        'oic_svr_db_client.dat')))