replace : iotivity -> iotivity-sec
[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('LOGGING'):
53         catest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
54
55 if target_os in ['msys_nt', 'windows']:
56         catest_env.AppendUnique(LINKFLAGS = ['/subsystem:CONSOLE'])
57         catest_env.AppendUnique(LIBS = ['ws2_32',
58                                         'advapi32',
59                                         'bcrypt',
60                                         'iphlpapi'])
61 else:
62         catest_env.AppendUnique(LIBS = ['m'])
63
64 ######################################################################
65 # Source files and Targets
66 ######################################################################
67
68 tests_src = [
69         'catests.cpp',
70         'caprotocolmessagetest.cpp',
71         'ca_api_unittest.cpp',
72         'octhread_tests.cpp',
73         'uarraylist_test.cpp',
74         'ulinklist_test.cpp',
75         'uqueue_test.cpp'
76 ]
77
78 if (('IP' in target_transport) or ('ALL' in target_transport)):
79         if target_os != 'arduino':
80                 tests_src = tests_src + ['cablocktransfertest.cpp']
81
82 if catest_env.get('SECURED') == '1' and catest_env.get('WITH_TCP') == True:
83         tests_src = tests_src + ['ssladapter_test.cpp']
84
85 catests = catest_env.Program('catests', tests_src)
86
87 Alias("test", [catests])
88
89 catest_env.AppendTarget('test')
90 if catest_env.get('TEST') == '1':
91         if target_os in ['linux', 'windows']:
92                 catest_env.AppendENVPath('PATH', catest_env.get('BUILD_DIR'))
93                 from tools.scons.RunTest import *
94                 run_test(catest_env,
95                          'resource_csdk_connectivity_test.memcheck',
96                          'resource/csdk/connectivity/test/catests')