// // 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 #include #include #ifdef _HIPPOMOCKS__ENABLE_CFUNC_MOCKING_SUPPORT TEST_CASE("bfelf_binary: binary load fails") { MockRepository mocks; mocks.OnCallFunc(bfelf_load).Return(-1); file f; CHECK_THROWS(binaries_info(&f, g_filenames.back(), {VMM_PREFIX_PATH + "/lib/"_s})); } TEST_CASE("bfelf_binary: binary success") { file f; CHECK_NOTHROW(binaries_info(&f, g_filenames.back(), {VMM_PREFIX_PATH + "/lib/"_s})); } TEST_CASE("bfelf_binary: module list load fails") { MockRepository mocks; mocks.OnCallFunc(bfelf_load).Return(-1); file f; CHECK_THROWS(binaries_info(&f, g_filenames)); } TEST_CASE("bfelf_binary: module list success") { file f; CHECK_NOTHROW(binaries_info(&f, g_filenames)); } TEST_CASE("bfelf_binary: set args") { file f; binaries_info info(&f, g_filenames); CHECK_NOTHROW(info.set_args(0, nullptr)); } 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()); } #endif