Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / unittests / SConscript
1 #******************************************************************
2 #
3 # Copyright 2016 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 # Mediator[RichSDK] 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 mediator_rich_test_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 mediator_rich_test_env.AppendUnique(
65         CPPPATH = [
66                 src_dir + '/extlibs/hippomocks-master',
67                 src_dir + '/extlibs/gtest/gtest-1.7.0/include',
68                 '../inc',
69                 '../../../inc',
70         ])
71
72 if target_os not in ['windows', 'winrt']:
73         mediator_rich_test_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall'])
74         if target_os != 'android':
75                 mediator_rich_test_env.AppendUnique(CXXFLAGS = ['-pthread'])
76                 mediator_rich_test_env.AppendUnique(LIBS = ['pthread'])
77
78
79 if env.get('SECURED') == '1':
80              mediator_rich_test_env.PrependUnique(LIBS = ['tinydtls','ocprovision', 'ocpmapi'])
81
82 mediator_rich_test_env.PrependUnique(LIBS = [
83     'oc',
84     'octbstack',
85     'oc_logger',
86     'oc_logger_core',
87     'connectivity_abstraction',
88     'coap',
89     'ESMediatorRich',
90     gtest,
91     gtest_main])
92
93 mediator_rich_test_env.AppendUnique(LIBS = ['dl'])
94
95 ######################################################################
96 # Build Test
97 ######################################################################
98 mediator_richsdk_test_src = env.Glob('./*.cpp')
99
100 mediator_richsdk_test = mediator_rich_test_env.Program('mediator_richsdk_test', mediator_richsdk_test_src)
101 Alias("mediator_richsdk_test", mediator_richsdk_test)
102 env.AppendTarget('mediator_richsdk_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(mediator_rich_test_env, '', 'service/easy-setup/mediator/richsdk/unittests/mediator_richsdk_test')