Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Mock for Mock Smm Sw Dispatch2 Protocol #1217

Merged
merged 11 commits into from
Dec 12, 2024
52 changes: 52 additions & 0 deletions MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockSmmSwDispatch2.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/** @file MockSmmSwDispatch2.h
This file declares a mock of SMM Software Dispatch Protocol

Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/

#ifndef MOCK_SMM_SW_DISPATCH2_H_
#define MOCK_SMM_SW_DISPATCH2_H_

#include <Library/GoogleTestLib.h>
#include <Library/FunctionMockLib.h>

extern "C" {
#include <Uefi.h>
#include <Protocol/SmmSwDispatch2.h>
}

// Declarations to handle usage of the EFI_SMM_SW_DISPATCH2_PROTOCOL
struct MockEfiSmmSwDispatch2Protocol {
MOCK_INTERFACE_DECLARATION (MockEfiSmmSwDispatch2Protocol);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
MockRegister,
(
IN CONST EFI_SMM_SW_DISPATCH2_PROTOCOL *This,
IN EFI_SMM_HANDLER_ENTRY_POINT2 DispatchFunction,
IN OUT EFI_SMM_SW_REGISTER_CONTEXT *RegisterContext,
OUT EFI_HANDLE *DispatchHandle)
);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
MockUnRegister,
(
IN CONST EFI_SMM_SW_DISPATCH2_PROTOCOL *This,
IN EFI_HANDLE DispatchHandle)
);
};

MOCK_INTERFACE_DEFINITION (MockEfiSmmSwDispatch2Protocol);
MOCK_FUNCTION_DEFINITION (MockEfiSmmSwDispatch2Protocol, MockRegister, 4, EFIAPI);
MOCK_FUNCTION_DEFINITION (MockEfiSmmSwDispatch2Protocol, MockUnRegister, 2, EFIAPI);

#define MOCK_EFI_SMM_SW_DISPATCH2_PROTOCOL_INSTANCE(NAME) \
EFI_SMM_SW_DISPATCH2_PROTOCOL NAME##_INSTANCE = { \
MockRegister, \
MockUnRegister }; \
EFI_SMM_SW_DISPATCH2_PROTOCOL *NAME = &NAME##_INSTANCE;

#endif // MOCK_SMM_SW_DISPATCH2_H_
Loading