34132fb5a06f0ff283d6aca93e17ced90fb49c3b
[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 from tools.scons.RunTest import run_test
24
25 # SConscript file for Local PKI google tests
26 gtest_env = SConscript('#extlibs/gtest/SConscript')
27 sptest_env = gtest_env.Clone()
28 src_dir = sptest_env.get('SRC_DIR')
29 target_os = sptest_env.get('TARGET_OS')
30
31 ######################################################################
32 # Build flags
33 ######################################################################
34 with_upstream_libcoap = sptest_env.get('WITH_UPSTREAM_LIBCOAP')
35 if with_upstream_libcoap == '1':
36         # For bring up purposes only, we manually copy the forked version to where the unforked version is downloaded.
37         sptest_env.AppendUnique(CPPPATH = ['#extlibs/libcoap/libcoap/include'])
38 else:
39         # For bring up purposes only, the forked version will live here.
40         sptest_env.AppendUnique(CPPPATH = ['../../../connectivity/lib/libcoap-4.1.1/include'])
41
42 sptest_env.PrependUnique(CPPPATH = [
43                 '../include',
44                 '../../include',
45                 '../include/internal',
46                 '../../../stack/include',
47                 '../../../ocrandom/include',
48                 '../../../logger/include',
49                 '../../../stack/include',
50                 '../../../security/include',
51                 '../../../security/include/internal',
52                 '../../../security/provisioning/include/internal',
53                 '../../../../oc_logger/include',
54                 '../include/oxm',
55                 '../../../../../extlibs/tinydtls',
56                 '../../../../../extlibs/cjson',
57                 '../../../../../extlibs/base64',
58                 '../../../connectivity/inc',
59                 '../../../connectivity/inc/pkix',
60                 '../../../connectivity/common/inc',
61                 '../../../connectivity/api',
62                 '../../../../../extlibs/tinydtls'
63                 ])
64 sptest_env.AppendUnique(LIBPATH = [sptest_env.get('BUILD_DIR')])
65 sptest_env.PrependUnique(LIBS = [   'ocpmapi',
66                                     'oc',
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 sptest_env.get('MULTIPLE_OWNER') == '1':
80         sptest_env.AppendUnique(CPPDEFINES=['_ENABLE_MULTIPLE_OWNER_'])
81
82 if target_os in ['msys_nt', 'windows']:
83     sptest_env.AppendUnique(LINKFLAGS = ['/subsystem:CONSOLE'])
84     sptest_env.AppendUnique(LIBS = ['ws2_32',
85                                     'advapi32',
86                                     'bcrypt',
87                                     'octbstack_static',
88                                     'iphlpapi'])
89 else:
90         sptest_env.AppendUnique(LIBS = ['octbstack'])
91
92 ######################################################################
93 # Source files and Targets
94 ######################################################################
95 unittest_src = ['pmutilitytest.cpp',
96                 'secureresourceprovider.cpp',
97                 'provisioningdatabasemanager.cpp',
98                 'ocprovisioningmanager.cpp',
99                 'credentialgeneratortest.cpp',
100                 ]
101
102 if target_os not in ['windows']:
103     unittest_src += [ 'otmunittest.cpp' ]
104
105 unittest = sptest_env.Program('unittest', unittest_src)
106
107 if target_os not in ['windows']:
108     sample_server1 = sptest_env.Program('sample_server1', ['sampleserver1.cpp'])
109     sample_server2 = sptest_env.Program('sample_server2', ['sampleserver2.cpp'])
110     Alias("test", [sample_server1, sample_server2])
111
112 Alias("test", [unittest])
113
114 sptest_env.AppendTarget('test')
115 # TODO: fix this test on linux and remove this comment line
116 if sptest_env.get('TEST') == '1':
117         if target_os in ['windows']:
118                 out_dir = sptest_env.get('BUILD_DIR')
119                 result_dir = os.path.join(sptest_env.get('BUILD_DIR'), 'test_out') + os.sep
120                 if not os.path.isdir(result_dir):
121                         os.makedirs(result_dir)
122                 sptest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
123                 sptest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
124                 sptest_env.AppendENVPath('PATH', sptest_env.get('BUILD_DIR'))
125                 run_test(sptest_env,
126                                  'resource_csdk_security_provisioning_unittest.memcheck',
127                                  'resource/csdk/security/provisioning/unittest/unittest')