Common adapter for DTLS/TLS
[platform/upstream/iotivity.git] / resource / csdk / security / provisioning / unittest / 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 sptest_env = gtest_env.Clone()
27 src_dir = sptest_env.get('SRC_DIR')
28 target_os = sptest_env.get('TARGET_OS')
29
30 ######################################################################
31 # Build flags
32 ######################################################################
33 with_upstream_libcoap = sptest_env.get('WITH_UPSTREAM_LIBCOAP')
34 if with_upstream_libcoap == '1':
35         # For bring up purposes only, we manually copy the forked version to where the unforked version is downloaded.
36         sptest_env.AppendUnique(CPPPATH = ['#extlibs/libcoap/libcoap/include'])
37 else:
38         # For bring up purposes only, the forked version will live here.
39         sptest_env.AppendUnique(CPPPATH = ['../../../connectivity/lib/libcoap-4.1.1/include'])
40
41 sptest_env.PrependUnique(CPPPATH = [
42                 '../include',
43                 '../../include',
44                 '../include/internal',
45                 '../../../stack/include',
46                 '../../../ocrandom/include',
47                 '../../../logger/include',
48                 '../../../stack/include',
49                 '../../../security/include',
50                 '../../../security/include/internal',
51                 '../../../security/provisioning/include/internal',
52                 '../../../../oc_logger/include',
53                 '../include/oxm',
54                 '../../../../../extlibs/tinydtls',
55                 '../../../../../extlibs/cjson',
56                 '../../../../../extlibs/base64',
57                 '../../../connectivity/inc',
58                 '../../../connectivity/inc/pkix',
59                 '../../../connectivity/common/inc',
60                 '../../../connectivity/api',
61                 '../../../../../extlibs/tinydtls'
62                 ])
63 sptest_env.AppendUnique(LIBPATH = [sptest_env.get('BUILD_DIR')])
64 sptest_env.PrependUnique(LIBS = [   'ocpmapi',
65                                     'oc',
66                                     'octbstack_test',
67                                     'ocsrm',
68                                     'oc_logger',
69                                     'connectivity_abstraction',
70                                     'coap'])
71
72 if sptest_env.get('SECURED') == '1':
73     sptest_env.AppendUnique(LIBS = ['mbedtls', 'mbedx509','mbedcrypto'])
74     sptest_env.AppendUnique(LIBS = ['tinydtls'])
75
76 if not sptest_env.get('RELEASE'):
77         sptest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
78
79 if target_os in ['msys_nt', 'windows']:
80     sptest_env.AppendUnique(LIBS = ['ws2_32',
81                                     'advapi32',
82                                     'bcrypt',
83                                     'octbstack_static',
84                                     'iphlpapi'])
85 else:
86         sptest_env.AppendUnique(LIBS = ['octbstack'])
87
88 ######################################################################
89 # Source files and Targets
90 ######################################################################
91 unittest_src = ['pmutilitytest.cpp',
92                 'secureresourceprovider.cpp',
93                 'provisioningdatabasemanager.cpp',
94                 'ocprovisioningmanager.cpp',
95                 'credentialgeneratortest.cpp',
96                 ]
97
98 if target_os not in ['windows']:
99     unittest_src += [ 'otmunittest.cpp' ]
100
101 unittest = sptest_env.Program('unittest', unittest_src)
102
103 if target_os not in ['windows']:
104     sample_server1 = sptest_env.Program('sample_server1', ['sampleserver1.cpp'])
105     sample_server2 = sptest_env.Program('sample_server2', ['sampleserver2.cpp'])
106     Alias("test", [sample_server1, sample_server2])
107
108 Alias("test", [unittest])
109
110 sptest_env.AppendTarget('test')
111 if sptest_env.get('TEST') == '1':
112         if target_os in ['linux', 'windows']:
113                 out_dir = sptest_env.get('BUILD_DIR')
114                 result_dir = os.path.join(sptest_env.get('BUILD_DIR'), 'test_out') + os.sep
115                 if not os.path.isdir(result_dir):
116                         os.makedirs(result_dir)
117                 sptest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
118                 sptest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
119                 sptest_env.AppendENVPath('PATH', sptest_env.get('BUILD_DIR'))
120                 ut = sptest_env.Command ('ut', None, out_dir + '/resource/csdk/security/provisioning/unittest/unittest')
121                 AlwaysBuild ('ut')
122