2017-08-17 10:49:49 -06:00
|
|
|
//
|
|
|
|
|
// Bareflank Hypervisor
|
|
|
|
|
// Copyright (C) 2015 Assured Information Security, Inc.
|
|
|
|
|
//
|
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
#include <catch/catch.hpp>
|
2017-08-29 13:51:00 -06:00
|
|
|
#include <hippomocks.h>
|
2017-08-17 10:49:49 -06:00
|
|
|
|
|
|
|
|
#include <test_real_elf.h>
|
|
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
#ifdef _HIPPOMOCKS__ENABLE_CFUNC_MOCKING_SUPPORT
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: binary load fails")
|
2017-08-17 10:49:49 -06:00
|
|
|
{
|
2017-08-29 13:51:00 -06:00
|
|
|
MockRepository mocks;
|
|
|
|
|
mocks.OnCallFunc(bfelf_load).Return(-1);
|
|
|
|
|
|
|
|
|
|
file f;
|
2018-01-22 12:45:07 -07:00
|
|
|
CHECK_THROWS(binaries_info(&f, g_filenames.back(), {VMM_PREFIX_PATH + "/lib/"_s}));
|
2017-08-17 10:49:49 -06:00
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
TEST_CASE("bfelf_binary: binary success")
|
2017-08-17 10:49:49 -06:00
|
|
|
{
|
2017-08-29 13:51:00 -06:00
|
|
|
file f;
|
2018-01-22 12:45:07 -07:00
|
|
|
CHECK_NOTHROW(binaries_info(&f, g_filenames.back(), {VMM_PREFIX_PATH + "/lib/"_s}));
|
2017-08-17 10:49:49 -06:00
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
TEST_CASE("bfelf_binary: module list load fails")
|
2017-08-17 10:49:49 -06:00
|
|
|
{
|
2017-08-29 13:51:00 -06:00
|
|
|
MockRepository mocks;
|
|
|
|
|
mocks.OnCallFunc(bfelf_load).Return(-1);
|
2017-08-17 10:49:49 -06:00
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
file f;
|
|
|
|
|
CHECK_THROWS(binaries_info(&f, g_filenames));
|
|
|
|
|
}
|
2017-08-17 10:49:49 -06:00
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
TEST_CASE("bfelf_binary: module list success")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
CHECK_NOTHROW(binaries_info(&f, g_filenames));
|
2017-08-17 10:49:49 -06:00
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
TEST_CASE("bfelf_binary: set args")
|
2017-08-17 10:49:49 -06:00
|
|
|
{
|
2017-08-29 13:51:00 -06:00
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
2017-08-17 10:49:49 -06:00
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
CHECK_NOTHROW(info.set_args(0, nullptr));
|
2017-08-17 10:49:49 -06:00
|
|
|
}
|
2017-08-29 13:51:00 -06:00
|
|
|
|
2017-09-05 15:44:21 -06:00
|
|
|
TEST_CASE("bfelf_binary: ef")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.ef());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: ef index")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.ef(0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: at")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.at(0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: front")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.front());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: back")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.back());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: binaries")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.binaries());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: info")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.info());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: entry")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.entry());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("bfelf_binary: loader")
|
|
|
|
|
{
|
|
|
|
|
file f;
|
|
|
|
|
binaries_info info(&f, g_filenames);
|
|
|
|
|
|
|
|
|
|
CHECK_NOTHROW(info.loader());
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:51:00 -06:00
|
|
|
#endif
|