Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / service / things-manager / 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 # ThingsManager Unit Test build script
23 ##
24 import os
25
26 # SConscript file for Local PKI google tests
27 gtest_env = SConscript('#extlibs/gtest/SConscript')
28 lib_env = gtest_env.Clone()
29 target_os = lib_env.get('TARGET_OS')
30
31 if lib_env.get('RELEASE'):
32     lib_env.AppendUnique(CCFLAGS = ['-Os'])
33     lib_env.AppendUnique(CPPDEFINES = ['NDEBUG'])
34 else:
35     lib_env.AppendUnique(CCFLAGS = ['-g'])
36
37 if lib_env.get('LOGGING'):
38     lib_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
39
40 # Add third party libraries
41 SConscript('#service/third_party_libs.scons', 'lib_env')
42
43 if target_os in ['linux']:
44     # Verify that 'hippomocks' mocking code is installed.
45     # If not, get it and install it
46     SConscript('#extlibs/hippomocks.scons')
47
48 ThingsManager_gtest_env = lib_env.Clone()
49
50 ######################################################################
51 #unit test setting
52 ######################################################################
53 src_dir = ThingsManager_gtest_env.get('SRC_DIR')
54
55 ######################################################################
56 # Build flags
57 ######################################################################
58 ThingsManager_gtest_env.AppendUnique(
59         CPPPATH = [
60                 src_dir + '/extlibs/hippomocks-master',
61                 '../sdk/inc',
62                 '../../../extlibs/timer'
63         ])
64
65 if target_os not in ['windows', 'winrt']:
66     ThingsManager_gtest_env.AppendUnique(LIBS = ['dl'])
67     ThingsManager_gtest_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall'])
68     if target_os != 'android':
69         ThingsManager_gtest_env.AppendUnique(CXXFLAGS = ['-pthread'])
70         ThingsManager_gtest_env.AppendUnique(LIBS = ['pthread'])
71
72 ThingsManager_gtest_env.PrependUnique(LIBS = [
73     'libTGMSDKLibrary',
74     'coap',
75     'connectivity_abstraction',
76     'oc_logger',
77     'oc_logger_core',
78     'oc',
79     'octbstack',
80     'gtest',
81     'gtest_main'])
82
83 ######################################################################
84 # Build Test
85 ######################################################################
86 ThingsManager_gtest_src = ThingsManager_gtest_env.Glob('./*.cpp')
87
88 ThingsManagerTest = ThingsManager_gtest_env.Program('ThingsManagerTest', ThingsManager_gtest_src)
89 Alias("ThingsManagerTest", ThingsManagerTest)
90 ThingsManager_gtest_env.AppendTarget('ThingsManagerTest')
91
92 if ThingsManager_gtest_env.get('TEST') == '1':
93     if target_os in ['linux']:
94         from tools.scons.RunTest import *
95         run_test(ThingsManager_gtest_env, '',
96                 'service/things-manager/unittests/ThingsManagerTest')