1 # //******************************************************************
3 # // Copyright 2015 Intel Mobile Communications GmbH All Rights Reserved.
5 # //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 # // http://www.apache.org/licenses/LICENSE-2.0
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.
19 # //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
25 srmtest_env = env.Clone()
27 src_dir = srmtest_env.get('SRC_DIR')
29 ######################################################################
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',
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 # '../../../../extlibs/tinydtls/',
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',
58 'connectivity_abstraction',
63 if env.get('SECURED') == '1':
64 srmtest_env.AppendUnique(LIBS = ['tinydtls'])
66 if not env.get('RELEASE'):
67 srmtest_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
69 ######################################################################
70 # Source files and Targets
71 ######################################################################
72 unittest = srmtest_env.Program('unittest', ['aclresourcetest.cpp',
76 'securityresourcemanager.cpp',
77 'credentialresource.cpp',
79 'iotvticalendartest.cpp',
81 'svcresourcetest.cpp',
84 Alias("test", [unittest])
86 unittest_src_dir = src_dir + '/resource/csdk/security/unittest/'
87 unittest_build_dir = env.get('BUILD_DIR') + 'resource/csdk/security/unittest'
89 srmtest_env.AppendUnique(CPPDEFINES = ['SECURITY_BUILD_UNITTEST_DIR='+unittest_build_dir])
91 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
92 unittest_src_dir + 'oic_unittest.json'))
93 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
94 unittest_src_dir + 'oic_unittest_acl1.json'))
95 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
96 unittest_src_dir + 'oic_unittest_default_acl.json'))
98 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
99 unittest_src_dir + 'oic_unittest.dat'))
100 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
101 unittest_src_dir + 'oic_unittest_acl1.dat'))
102 srmtest_env.Alias("install", srmtest_env.Install( unittest_build_dir,
103 unittest_src_dir + 'oic_unittest_default_acl.dat'))
105 env.AppendTarget('test')
106 if env.get('TEST') == '1':
107 target_os = env.get('TARGET_OS')
108 if target_os == 'linux':
109 out_dir = env.get('BUILD_DIR')
110 result_dir = env.get('BUILD_DIR') + '/test_out/'
111 if not os.path.isdir(result_dir):
112 os.makedirs(result_dir)
113 srmtest_env.AppendENVPath('GTEST_OUTPUT', ['xml:'+ result_dir])
114 srmtest_env.AppendENVPath('LD_LIBRARY_PATH', [out_dir])
115 srmtest_env.AppendENVPath('LD_LIBRARY_PATH', ['./extlibs/gtest/gtest-1.7.0/lib/.libs'])
116 ut = srmtest_env.Command ('ut', None, out_dir + '/resource/csdk/security/unittest/unittest')