-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mock functions under MockUefiRuntimeServicesTableLib, MockUefiRun…
…timeServicesTableLib and Create Mock for DxeServicesTableLib (#1109) ## Description Add mock functions under MockUefiRuntimeServicesTableLib, MockUefiRuntimeServicesTableLib and Create Mock for DxeServicesTableLib For details on how to complete to complete these options and their meaning refer to [CONTRIBUTING.md](https://github.com/microsoft/mu/blob/HEAD/CONTRIBUTING.md). - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? ## How This Was Tested Unit tests component can call these mock functions success ## Integration Instructions N/A --------- Signed-off-by: YiTa-AMI <[email protected]>
- Loading branch information
Showing
8 changed files
with
133 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
MdePkg/Test/Mock/Include/GoogleTest/Library/MockDxeServicesTableLib.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** @file MockDxeServicesTableLib.h | ||
Google Test mocks for DxeServicesTableLib | ||
Copyright (c) Microsoft Corporation. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef MOCK_DXE_SERVICES_TABLE_LIB_H_ | ||
#define MOCK_DXE_SERVICES_TABLE_LIB_H_ | ||
|
||
#include <Library/GoogleTestLib.h> | ||
#include <Library/FunctionMockLib.h> | ||
extern "C" { | ||
#include <Uefi.h> | ||
#include <Pi/PiDxeCis.h> | ||
} | ||
|
||
// | ||
// Declarations to handle usage of the DxeServicesTableLib by creating mock | ||
// | ||
struct MockDxeServicesTableLib { | ||
MOCK_INTERFACE_DECLARATION (MockDxeServicesTableLib); | ||
|
||
MOCK_FUNCTION_DECLARATION ( | ||
EFI_STATUS, | ||
gDS_Dispatch, | ||
() | ||
); | ||
}; | ||
|
||
#endif // MOCK_UEFI_DXE_SERVICES_TABLE_LIB_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
MdePkg/Test/Mock/Library/GoogleTest/MockDxeServicesTableLib/MockDxeServicesTableLib.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** @file MockDxeServicesTableLib.cpp | ||
Google Test mocks for DxeServicesTableLib | ||
Copyright (c) Microsoft Corporation. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
#include <GoogleTest/Library/MockDxeServicesTableLib.h> | ||
|
||
MOCK_INTERFACE_DEFINITION (MockDxeServicesTableLib); | ||
MOCK_FUNCTION_DEFINITION (MockDxeServicesTableLib, gDS_Dispatch, 0, EFIAPI); | ||
|
||
static EFI_DXE_SERVICES LocalDs = { | ||
{ 0, 0, 0, 0, 0 }, // EFI_TABLE_HEADER | ||
NULL, // EFI_ADD_MEMORY_SPACE | ||
NULL, // EFI_ALLOCATE_MEMORY_SPACE | ||
NULL, // EFI_FREE_MEMORY_SPACE | ||
NULL, // EFI_REMOVE_MEMORY_SPACE | ||
NULL, // EFI_GET_MEMORY_SPACE_DESCRIPTOR | ||
NULL, // EFI_SET_MEMORY_SPACE_ATTRIBUTES | ||
NULL, // EFI_GET_MEMORY_SPACE_MAP | ||
NULL, // EFI_ADD_IO_SPACE | ||
NULL, // EFI_ALLOCATE_IO_SPACE | ||
NULL, // EFI_FREE_IO_SPACE | ||
NULL, // EFI_REMOVE_IO_SPACE | ||
NULL, // EFI_GET_IO_SPACE_DESCRIPTOR | ||
NULL, // EFI_GET_IO_SPACE_MAP | ||
gDS_Dispatch, // EFI_DISPATCH | ||
NULL, // EFI_SCHEDULE | ||
NULL, // EFI_TRUST | ||
NULL, // EFI_PROCESS_FIRMWARE_VOLUME | ||
NULL // EFI_SET_MEMORY_SPACE_CAPABILITIES | ||
}; | ||
|
||
extern "C" { | ||
EFI_DXE_SERVICES *gDS = &LocalDs; | ||
} |
32 changes: 32 additions & 0 deletions
32
MdePkg/Test/Mock/Library/GoogleTest/MockDxeServicesTableLib/MockDxeServicesTableLib.inf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
## @file MockDxeServicesTableLib.inf | ||
# Mock implementation of the DXE Services Table Library. | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
## | ||
|
||
[Defines] | ||
INF_VERSION = 0x00010005 | ||
BASE_NAME = MockDxeServicesTableLib | ||
FILE_GUID = 8d9ce22b-2cf3-4646-ad0b-ce3cf1aea84d | ||
MODULE_TYPE = HOST_APPLICATION | ||
VERSION_STRING = 1.0 | ||
LIBRARY_CLASS = DxeServicesTableLib | ||
|
||
# | ||
# VALID_ARCHITECTURES = IA32 X64 EBC | ||
# | ||
|
||
[Sources] | ||
MockDxeServicesTableLib.cpp | ||
|
||
[LibraryClasses] | ||
GoogleTestLib | ||
|
||
[Packages] | ||
MdePkg/MdePkg.dec | ||
UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec | ||
|
||
[BuildOptions] | ||
MSFT:*_*_*_CC_FLAGS = /EHsc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters