Imported Upstream version 1.1.1
[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 if target_os not in ['windows']:
49         unittests_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
50         unittests_env.AppendUnique(LIBS = ['pthread'])
51 unittests_env.AppendUnique(LIBPATH = [unittests_env.get('BUILD_DIR')])
52 unittests_env.PrependUnique(LIBS = [
53                 'oc',
54                 'octbstack',
55                 'oc_logger',
56                 'connectivity_abstraction',
57                 'coap',
58                 'gtest',
59                 'gtest_main'
60                 ])
61
62 if unittests_env.get('SECURED') == '1':
63     unittests_env.AppendUnique(LIBS = ['tinydtls'])
64
65 if unittests_env.get('LOGGING'):
66         unittests_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
67
68 ######################################################################
69 # Source files and Targets
70 ######################################################################
71 unittests = unittests_env.Program('unittests', ['ConstructResourceTest.cpp',
72                                                 'OCPlatformTest.cpp',
73                                                 'OCRepresentationTest.cpp',
74                                                 'OCRepresentationEncodingTest.cpp',
75                                                 'OCResourceTest.cpp',
76                                                 'OCExceptionTest.cpp',
77                                                 'OCResourceResponseTest.cpp',
78                                                 'OCHeaderOptionTest.cpp'])
79
80 Alias("unittests", [unittests])
81
82 unittests_env.AppendTarget('unittests')
83 if unittests_env.get('TEST') == '1':
84         if target_os in ['linux']:
85                 from tools.scons.RunTest import *
86                 run_test(unittests_env,
87                          'resource_unittests_unittests.memcheck',
88                          'resource/unittests/unittests')
89
90 src_dir = unittests_env.get('SRC_DIR')
91 svr_db_src_dir = os.path.join(src_dir, 'resource/examples/')
92 svr_db_build_dir = os.path.join(unittests_env.get('BUILD_DIR'), 'resource', 'unittests') + os.sep
93 unittests_env.Alias("install",
94                     unittests_env.Install(svr_db_build_dir,
95                                           os.path.join(svr_db_src_dir,
96                                                        'oic_svr_db_client.dat')))