Multiple Ownership Transfer support.
[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                                     'ocsrm',
67                                     'oc_logger',
68                                     'connectivity_abstraction',
69                                     'coap'])
70
71 if sptest_env.get('SECURED') == '1':
72     sptest_env.AppendUnique(LIBS = ['mbedtls', 'mbedx509','mbedcrypto'])
73     sptest_env.AppendUnique(LIBS = ['tinydtls'])
74
75 if not sptest_env.get('RELEASE'):
76         sptest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
77
78 if sptest_env.get('MULTIPLE_OWNER') == '1':
79         sptest_env.AppendUnique(CPPDEFINES=['_ENABLE_MULTIPLE_OWNER_'])
80
81 if target_os in ['msys_nt', 'windows']:
82     sptest_env.AppendUnique(LINKFLAGS = ['/subsystem:CONSOLE'])
83     sptest_env.AppendUnique(LIBS = ['ws2_32',
84                                     'advapi32',
85                                     'bcrypt',
86                                     'octbstack_static',
87                                     'iphlpapi'])
88 else:
89         sptest_env.AppendUnique(LIBS = ['octbstack'])
90
91 ######################################################################
92 # Source files and Targets
93 ######################################################################
94 unittest_src = ['pmutilitytest.cpp',
95                 'secureresourceprovider.cpp',
96                 'provisioningdatabasemanager.cpp',
97                 'ocprovisioningmanager.cpp',
98                 'credentialgeneratortest.cpp',
99                 ]
100
101 if target_os not in ['windows']:
102     unittest_src += [ 'otmunittest.cpp' ]
103
104 unittest = sptest_env.Program('unittest', unittest_src)
105
106 if target_os not in ['windows']:
107     sample_server1 = sptest_env.Program('sample_server1', ['sampleserver1.cpp'])
108     sample_server2 = sptest_env.Program('sample_server2', ['sampleserver2.cpp'])
109     Alias("test", [sample_server1, sample_server2])
110
111 Alias("test", [unittest])
112
113 sptest_env.AppendTarget('test')
114 if sptest_env.get('TEST') == '1':
115         if target_os in ['linux', 'windows']:
116                 out_dir = sptest_env.get('BUILD_DIR')
117                 result_dir = os.path.join(sptest_env.get('BUILD_DIR'), 'test_out') + os.sep
118                 if not os.path.isdir(result_dir):
119                         os.makedirs(result_dir)
120                 sptest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
121                 sptest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
122                 sptest_env.AppendENVPath('PATH', sptest_env.get('BUILD_DIR'))
123                 ut = sptest_env.Command ('ut', None, out_dir + '/resource/csdk/security/provisioning/unittest/unittest')
124                 AlwaysBuild ('ut')
125