IOT-1381 Make iotivity compile in a way usable by windows store apps
[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 = ['tinydtls'])
51         catest_env.AppendUnique(LIBS = ['timer'])
52         if catest_env.get('WITH_TCP') == True:
53                 catest_env.AppendUnique(LIBS = ['mbedtls', 'mbedx509','mbedcrypto'])
54
55 if catest_env.get('WITH_RD') == '1':
56         catest_env.PrependUnique(LIBS = ['resource_directory'])
57
58 if catest_env.get('LOGGING'):
59         catest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
60
61 if target_os in ['msys_nt', 'windows']:
62         catest_env.AppendUnique(LINKFLAGS = ['/subsystem:CONSOLE'])
63         catest_env.AppendUnique(LIBS = ['ws2_32',
64                                         'advapi32',
65                                         'bcrypt',
66                                         'iphlpapi'])
67 else:
68         catest_env.AppendUnique(LIBS = ['m'])
69
70 ######################################################################
71 # Source files and Targets
72 ######################################################################
73
74 if (('IP' in target_transport) or ('ALL' in target_transport)):
75         if target_os != 'arduino':
76                 catests = catest_env.Program('catests', ['catests.cpp',
77                                                          'caprotocolmessagetest.cpp',
78                                                          'cablocktransfertest.cpp',
79                                                          'ca_api_unittest.cpp',
80                                                          'camutex_tests.cpp',
81                                                          'uarraylist_test.cpp',
82                                                          'ulinklist_test.cpp',
83                                                          'uqueue_test.cpp'
84                                                                ])
85 else:
86         # Include all unit test files
87                 catests = catest_env.Program('catests', ['catests.cpp',
88                                                          'caprotocolmessagetest.cpp',
89                                                          'ca_api_unittest.cpp',
90                                                          'camutex_tests.cpp',
91                                                          'uarraylist_test.cpp',
92                                                          'ulinklist_test.cpp',
93                                                          'uqueue_test.cpp'
94                                                                ])
95
96 Alias("test", [catests])
97
98 catest_env.AppendTarget('test')
99 if catest_env.get('TEST') == '1':
100         if target_os in ['linux', 'windows']:
101                 catest_env.AppendENVPath('PATH', catest_env.get('BUILD_DIR'))
102                 from tools.scons.RunTest import *
103                 run_test(catest_env,
104                          'resource_csdk_connectivity_test.memcheck',
105                          'resource/csdk/connectivity/test/catests')