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

Open
wants to merge 9 commits into
base: dev/202405
Choose a base branch
from
56 changes: 56 additions & 0 deletions MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockSmmSwDispatch2.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/** @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 MockSmmSwDispatch2Protocol {
MOCK_INTERFACE_DECLARATION (MockSmmSwDispatch2Protocol);

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 (MockSmmSwDispatch2Protocol);
MOCK_FUNCTION_DEFINITION (MockSmmSwDispatch2Protocol, MockRegister, 4, EFIAPI);
MOCK_FUNCTION_DEFINITION (MockSmmSwDispatch2Protocol, MockUnRegister, 2, EFIAPI);

EFI_SMM_SW_DISPATCH2_PROTOCOL SMM_SW_DISPATCH2_PROTOCOL_MOCK = {
MockRegister, // EFI_SMM_SW_REGISTER2 Register;
MockUnRegister // EFI_SMM_SW_UNREGISTER2 UnRegister;
};


extern "C" {
EFI_SMM_SW_DISPATCH2_PROTOCOL *gSmmSwDispatch2 = &SMM_SW_DISPATCH2_PROTOCOL_MOCK;
}
#endif // MOCK_SMM_SW_DISPATCH2_H_

Loading