Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / resource / csdk / security / unittest / SConscript
1 # //******************************************************************
2 # //
3 # // Copyright 2015 Intel Mobile Communications GmbH 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
22 Import('env')
23 import os
24 import os.path
25 srmtest_env = env.Clone()
26
27 src_dir = srmtest_env.get('SRC_DIR')
28
29 ######################################################################
30 # Build flags
31 ######################################################################
32 srmtest_env.PrependUnique(CPPPATH = [
33         '../../ocmalloc/include',
34                 '../../connectivity/inc',
35                 '../../connectivity/api',
36                 '../../connectivity/external/inc',
37                 '../../connectivity/lib/libcoap-4.1.1',
38                 '../include',
39                 '../include/internal',
40                 '../../logger/include',
41                 '../../ocmalloc/include',
42                 '../../stack/include',
43                 '../../stack/include/internal',
44                 '../../../oc_logger/include',
45                 '../../../../extlibs/gtest/gtest-1.7.0/include',
46                 '../../../../extlibs/cjson/',
47                 '../provisioning/include',
48 #               '../../../../extlibs/tinydtls/',
49                 '../include'
50                 ])
51
52 srmtest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
53 srmtest_env.AppendUnique(LIBS = ['-lpthread'])
54 srmtest_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
55 srmtest_env.AppendUnique(LIBPATH = [src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs'])
56 srmtest_env.PrependUnique(LIBS = ['ocsrm',
57                                     'octbstack',
58                                     'oc_logger',
59                                     'connectivity_abstraction',
60                                     'coap',
61                                     'gtest',
62                                     'gtest_main'])
63
64 if env.get('SECURED') == '1':
65     srmtest_env.AppendUnique(LIBS = ['tinydtls'])
66
67 if not env.get('RELEASE'):
68         srmtest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
69
70 ######################################################################
71 # Source files and Targets
72 ######################################################################
73 unittest = srmtest_env.Program('unittest', ['aclresourcetest.cpp',
74                                             'amaclresourcetest.cpp',
75                                             'pstatresource.cpp',
76                                             'doxmresource.cpp',
77                                             'policyengine.cpp',
78                                             'securityresourcemanager.cpp',
79                                             'credentialresource.cpp',
80                                             'srmutility.cpp',
81                                             'iotvticalendartest.cpp',
82                                             'base64tests.cpp',
83                                             'svcresourcetest.cpp',
84                                             'srmtestcommon.cpp',
85                                             'directpairingtest.cpp'])
86
87 Alias("test", [unittest])
88
89 unittest_src_dir = src_dir + '/resource/csdk/security/unittest/'
90 unittest_build_dir = env.get('BUILD_DIR') + 'resource/csdk/security/unittest'
91
92 srmtest_env.AppendUnique(CPPDEFINES = ['SECURITY_BUILD_UNITTEST_DIR='+unittest_build_dir])
93
94 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
95     unittest_src_dir + 'oic_unittest.json'))
96 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
97     unittest_src_dir + 'oic_unittest_acl1.json'))
98 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
99     unittest_src_dir + 'oic_unittest_default_acl.json'))
100
101 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
102     unittest_src_dir + 'oic_unittest.dat'))
103 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
104     unittest_src_dir + 'oic_unittest_acl1.dat'))
105 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
106     unittest_src_dir + 'oic_unittest_default_acl.dat'))
107
108 env.AppendTarget('test')
109 if env.get('TEST') == '1':
110         target_os = env.get('TARGET_OS')
111         if target_os == 'linux':
112                 out_dir = env.get('BUILD_DIR')
113                 result_dir = env.get('BUILD_DIR') + '/test_out/'
114                 if not os.path.isdir(result_dir):
115                         os.makedirs(result_dir)
116                 srmtest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
117                 srmtest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
118                 srmtest_env.AppendENVPath('LD_LIBRARY_PATH', ['./extlibs/gtest/gtest-1.7.0/lib/.libs'])
119                 ut = srmtest_env.Command ('ut', None, out_dir + '/resource/csdk/security/unittest/unittest')
120                 AlwaysBuild ('ut')