#******************************************************************
#
# Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

import os
import os.path

# SConscript file for Local PKI google tests
gtest_env = SConscript('#extlibs/gtest/SConscript')
unittests_env = gtest_env.Clone()
src_dir = unittests_env.get('SRC_DIR')
pi_dir = os.path.join(src_dir, 'plugins')
build_dir = unittests_env.get('BUILD_DIR')
target_os = unittests_env.get('TARGET_OS')

######################################################################
# Build flags
######################################################################
unittests_env.PrependUnique(CPPPATH = [
                os.path.join(pi_dir, 'include'),
		])

unittests_env.AppendUnique(LIBPATH = [unittests_env.get('BUILD_DIR')])
unittests_env.PrependUnique(LIBS = [
		'plugin_interface',
		'oc',
		'octbstack',
		'oc_logger',
		'connectivity_abstraction',
		'coap'
		])

if unittests_env.get('LOGGING'):
	unittests_env.AppendUnique(CPPDEFINES = ['TB_LOG'])

######################################################################
# Source files and Targets
######################################################################
piunittests = unittests_env.Program('piunittests', ['plugininterfacetest.cpp'])

Alias("piunittests", [piunittests])

unittests_env.AppendTarget('piunittests')
if unittests_env.get('TEST') == '1':
	if target_os in ['linux']:
                from tools.scons.RunTest import *
                run_test(unittests_env,
                         'plugins_unittests.memcheck',
                         'plugins/unittests/piunittests')

