Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / resource / csdk / connectivity / test / SConscript
1 #******************************************************************
2 #
3 # Copyright 2015 Samsung Electronics 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 catest_env = gtest_env.Clone()
27 target_os = catest_env.get('TARGET_OS')
28 target_transport = catest_env.get('TARGET_TRANSPORT')
29
30 ######################################################################
31 # Build flags
32 ######################################################################
33 catest_env.PrependUnique(CPPPATH = [
34                 '../../logger/include',
35                 '../../stack/include',
36                 '../../extlibs/cjson',
37                 '../../../oc_logger/include',
38                ])
39
40 catest_env.AppendUnique(LIBPATH = [catest_env.get('BUILD_DIR')])
41 catest_env.PrependUnique(LIBS = ['gtest', 'gtest_main'])
42 catest_env.PrependUnique(LIBS = ['octbstack',
43                                     'connectivity_abstraction',
44                                     'coap'])
45
46 if target_os not in ['arduino', 'darwin', 'ios', 'msys_nt', 'windows']:
47         catest_env.AppendUnique(LIBS=['rt'])
48
49 if catest_env.get('SECURED') == '1':
50         catest_env.AppendUnique(LIBS = ['mbedtls', 'mbedx509','mbedcrypto'])
51
52 if catest_env.get('WITH_RD') == '1':
53         catest_env.PrependUnique(LIBS = ['resource_directory'])
54
55 if catest_env.get('LOGGING'):
56         catest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
57
58 if target_os in ['msys_nt', 'windows']:
59         catest_env.AppendUnique(LINKFLAGS = ['/subsystem:CONSOLE'])
60         catest_env.AppendUnique(LIBS = ['ws2_32',
61                                         'advapi32',
62                                         'bcrypt',
63                                         'iphlpapi'])
64 else:
65         catest_env.AppendUnique(LIBS = ['m'])
66
67 ######################################################################
68 # Source files and Targets
69 ######################################################################
70
71 tests_src = [
72         'catests.cpp',
73         'caprotocolmessagetest.cpp',
74         'ca_api_unittest.cpp',
75         'camutex_tests.cpp',
76         'uarraylist_test.cpp',
77         'ulinklist_test.cpp',
78         'uqueue_test.cpp'
79 ]
80
81 if (('IP' in target_transport) or ('ALL' in target_transport)):
82         if target_os != 'arduino':
83                 tests_src = tests_src + ['cablocktransfertest.cpp']
84
85 if catest_env.get('SECURED') == '1' and catest_env.get('WITH_TCP') == True:
86         tests_src = tests_src + ['ssladapter_test.cpp']
87
88 catests = catest_env.Program('catests', tests_src)
89
90 Alias("test", [catests])
91
92 catest_env.AppendTarget('test')
93 if catest_env.get('TEST') == '1':
94         if target_os in ['linux', 'windows']:
95                 catest_env.AppendENVPath('PATH', catest_env.get('BUILD_DIR'))
96                 from tools.scons.RunTest import *
97                 run_test(catest_env,
98                          'resource_csdk_connectivity_test.memcheck',
99                          'resource/csdk/connectivity/test/catests')