added Testcase for MQ Client API
[platform/upstream/iotivity.git] / resource / unittests / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 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 import os
22 import os.path
23
24 # SConscript file for Local PKI google tests
25 gtest_env = SConscript('#extlibs/gtest/SConscript')
26 unittests_env = gtest_env.Clone()
27 src_dir = unittests_env.get('SRC_DIR')
28 target_os = unittests_env.get('TARGET_OS')
29 with_mq = unittests_env.get('WITH_MQ')
30
31 ######################################################################
32 # Build flags
33 ######################################################################
34 unittests_env.PrependUnique(CPPPATH = [
35                 '../include',
36                 '../oc_logger/include',
37                 '../csdk/stack/include',
38                 '../csdk/security/include',
39                 '../csdk/stack/include/internal',
40                 '../csdk/connectivity/api',
41                 '../csdk/connectivity/external/inc',
42                 '../csdk/ocsocket/include',
43                 '../c_common/ocrandom/include',
44                 '../csdk/logger/include',
45                 '#extlibs/hippomocks-master/HippoMocks',
46                 '#extlibs/hippomocks-master/HippoMocksTest'
47                 ])
48
49 unittests_env.AppendUnique(LIBPATH = [unittests_env.get('BUILD_DIR')])
50 unittests_env.PrependUnique(LIBS = [
51                 'oc',
52                 'octbstack',
53                 'oc_logger',
54                 'connectivity_abstraction',
55                 'coap'
56                 ])
57
58 if unittests_env.get('SECURED') == '1':
59         unittests_env.AppendUnique(LIBS = ['tinydtls'])
60
61 if unittests_env.get('LOGGING'):
62         unittests_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
63
64 if unittests_env.get('WITH_CLOUD'):
65         unittests_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD'])
66
67 ######################################################################
68 # Source files and Targets
69 ######################################################################
70
71 unittests_src = [
72                 'ConstructResourceTest.cpp',
73                 'OCPlatformTest.cpp',
74                 'OCRepresentationTest.cpp',
75                 'OCRepresentationEncodingTest.cpp',
76                 'OCResourceTest.cpp',
77                 'OCExceptionTest.cpp',
78                 'OCResourceResponseTest.cpp',
79                 'OCHeaderOptionTest.cpp'
80         ]
81
82 if (('SUB' in with_mq) or ('PUB' in with_mq) or ('BROKER' in with_mq)):
83         unittests_src = unittests_src + ['OCMQResourceTest.cpp']
84
85 if unittests_env.get('WITH_CLOUD'):
86         unittests_src = unittests_src + ['OCAccountManagerTest.cpp']
87
88 unittests = unittests_env.Program('unittests', unittests_src)
89
90 Alias("unittests", [unittests])
91
92 unittests_env.AppendTarget('unittests')
93 if unittests_env.get('TEST') == '1':
94         if target_os in ['linux']:
95                 from tools.scons.RunTest import *
96                 run_test(unittests_env,
97                          'resource_unittests_unittests.memcheck',
98                          'resource/unittests/unittests')
99
100 src_dir = unittests_env.get('SRC_DIR')
101 svr_db_src_dir = os.path.join(src_dir, 'resource/examples/')
102 svr_db_build_dir = os.path.join(unittests_env.get('BUILD_DIR'), 'resource', 'unittests') + os.sep
103 unittests_env.Alias("install",
104                     unittests_env.Install(svr_db_build_dir,
105                                           os.path.join(svr_db_src_dir,
106                                                        'oic_svr_db_client.dat')))