Adding unit test cases for direct pairing
[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 srmtest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
52 srmtest_env.AppendUnique(LIBS = ['-lpthread'])
53 srmtest_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
54 srmtest_env.AppendUnique(LIBPATH = [src_dir + '/extlibs/gtest/gtest-1.7.0/lib/.libs'])
55 srmtest_env.PrependUnique(LIBS = ['ocsrm',
56                                     'octbstack',
57                                     'oc_logger',
58                                     'connectivity_abstraction',
59                                     'coap',
60                                     'gtest',
61                                     'gtest_main'])
62
63 if env.get('SECURED') == '1':
64     srmtest_env.AppendUnique(LIBS = ['tinydtls'])
65
66 if not env.get('RELEASE'):
67         srmtest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
68
69 ######################################################################
70 # Source files and Targets
71 ######################################################################
72 unittest = srmtest_env.Program('unittest', ['aclresourcetest.cpp',
73                                             'pstatresource.cpp',
74                                             'doxmresource.cpp',
75                                             'policyengine.cpp',
76                                             'securityresourcemanager.cpp',
77                                             'credentialresource.cpp',
78                                             'srmutility.cpp',
79                                             'iotvticalendartest.cpp',
80                                             'base64tests.cpp',
81                                             'svcresourcetest.cpp',
82                                             'srmtestcommon.cpp',
83                                             'directpairingtest.cpp'])
84
85 Alias("test", [unittest])
86
87 unittest_src_dir = src_dir + '/resource/csdk/security/unittest/'
88 unittest_build_dir = env.get('BUILD_DIR') +'/resource/csdk/security/unittest'
89
90 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
91     unittest_src_dir + 'oic_unittest.json'))
92 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
93     unittest_src_dir + 'oic_unittest_acl1.json'))
94 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
95     unittest_src_dir + 'oic_unittest_default_acl.json'))
96
97 env.AppendTarget('test')
98 if env.get('TEST') == '1':
99         target_os = env.get('TARGET_OS')
100         if target_os == 'linux':
101                 out_dir = env.get('BUILD_DIR')
102                 result_dir = env.get('BUILD_DIR') + '/test_out/'
103                 if not os.path.isdir(result_dir):
104                         os.makedirs(result_dir)
105                 srmtest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
106                 srmtest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
107                 srmtest_env.AppendENVPath('LD_LIBRARY_PATH', ['./extlibs/gtest/gtest-1.7.0/lib/.libs'])
108                 ut = srmtest_env.Command ('ut', None, out_dir + '/resource/csdk/security/unittest/unittest')
109                 AlwaysBuild ('ut')
110