Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / resource-encapsulation / unittests / 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 ##
22 # ResourceClient Unit Test build script
23 ##
24 import os
25 Import('env')
26
27 if env.get('RELEASE'):
28         env.AppendUnique(CCFLAGS = ['-Os'])
29         env.AppendUnique(CPPDEFINES = ['NDEBUG'])
30 else:
31         env.AppendUnique(CCFLAGS = ['-g'])
32
33 if env.get('LOGGING'):
34         env.AppendUnique(CPPDEFINES = ['TB_LOG'])
35
36 # Add third party libraries
37 lib_env = env.Clone()
38 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
39
40 target_os = env.get('TARGET_OS')
41 if target_os == 'linux':
42         # Verify that 'google unit test' library is installed.  If not,
43         # get it and install it
44         SConscript(env.get('SRC_DIR') + '/extlibs/gtest/SConscript')
45
46         # Verify that 'hippomocks' mocking code is installed.  If not,
47         # get it and install it
48         SConscript(env.get('SRC_DIR') + '/extlibs/hippomocks.scons')
49
50 ResourceClient_gtest_env = lib_env.Clone()
51
52 ######################################################################
53 #unit test setting
54 ######################################################################
55 src_dir = lib_env.get('SRC_DIR')
56 gtest_dir = src_dir + '/extlibs/gtest/gtest-1.7.0'
57
58 ######################################################################
59 # Build flags
60 ######################################################################
61 gtest = File(gtest_dir + '/lib/.libs/libgtest.a')
62 gtest_main = File(gtest_dir + '/lib/.libs/libgtest_main.a')
63
64 ResourceClient_gtest_env.AppendUnique(
65         CPPPATH = [
66                 src_dir + '/extlibs/hippomocks-master', 
67                 src_dir + '/extlibs/gtest/gtest-1.7.0/include',
68                 '../include',
69                 '../src/common/utils/include',
70                 '../src/serverBuilder/include',
71                 '../src/common/primitiveResource/include',
72                 '../src/common/include/expiryTimer'
73         ])
74
75 if target_os not in ['windows', 'winrt']:
76         ResourceClient_gtest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall'])
77         if target_os != 'android':
78                 ResourceClient_gtest_env.AppendUnique(CXXFLAGS = ['-pthread'])
79                 ResourceClient_gtest_env.AppendUnique(LIBS = ['pthread'])
80
81 ResourceClient_gtest_env.PrependUnique(LIBS = [
82     'rcs_client',
83     'rcs_server',
84     'rcs_common',
85     'oc',
86     'octbstack',
87     'oc_logger',
88     'oc_logger_core',
89     'connectivity_abstraction',
90     gtest,
91     gtest_main])
92
93 ResourceClient_gtest_env.AppendUnique(LIBS = ['dl'])    
94
95 ######################################################################
96 # Build Test
97 ######################################################################
98 ResourceClient_gtest_src = env.Glob('./*.cpp')
99
100 ResourceClient_test = ResourceClient_gtest_env.Program('ResourceClientTest', ResourceClient_gtest_src)
101 Alias("ResourceClientTest", ResourceClient_test)
102 env.AppendTarget('ResourceClient_test')
103
104 if env.get('TEST') == '1':
105     target_os = env.get('TARGET_OS')
106     if target_os == 'linux':
107         from tools.scons.RunTest import *
108         run_test(ResourceClient_gtest_env, '',
109                 'service/resource-encapsulation/unittests/ResourceClientTest')