forked from microsoft/mu_common_intel_min_platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CHERRY-PICK] BoardModulePkg: Added Mock library for BiosIdLib (micro…
…soft#301) ## Description Added a gmock for GoogleTests that pull in BiosIdLib. Cherry picked from edk2_platforms [c53db4dc8bbc6cec6016792b9e08b1f0630498ae](tianocore/edk2-platforms@c53db4d) Amended to add newline in header file description. - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? ## How This Was Tested Consumed mock in GoogleTest ## Integration Instructions N/A Signed-off-by: Vivian Nowka-Keane <[email protected]> Co-authored-by: Bhavani Subramanian <[email protected]>
- Loading branch information
1 parent
620d3ae
commit d6d36cf
Showing
5 changed files
with
119 additions
and
0 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
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 BoardModulePkgHostTest.dsc | ||
# | ||
# BoardModulePkg DSC file used to build host-based unit tests. | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
# | ||
## | ||
|
||
[Defines] | ||
PLATFORM_NAME = BoardModulePkgHostTest | ||
PLATFORM_GUID = 67275336-A324-4F69-BD38-70A4C7898F06 | ||
PLATFORM_VERSION = 0.1 | ||
DSC_SPECIFICATION = 0x00010005 | ||
OUTPUT_DIRECTORY = Build/BoardModulePkg/HostTest | ||
SUPPORTED_ARCHITECTURES = IA32|X64 | ||
BUILD_TARGETS = NOOPT | ||
SKUID_IDENTIFIER = DEFAULT | ||
|
||
!include UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc | ||
|
||
[LibraryClasses] | ||
|
||
[Components] | ||
# | ||
# Build HOST_APPLICATIONs that test the BoardModulePkg | ||
# | ||
|
||
# | ||
# Build HOST_APPLICATION Libraries With GoogleTest | ||
# | ||
BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.inf |
41 changes: 41 additions & 0 deletions
41
BoardModulePkg/Test/Mock/Include/GoogleTest/Library/MockBiosIdLib.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,41 @@ | ||
/** @file MockBiosIdLib.h | ||
Google Test mocks for BiosIdLib | ||
Copyright (c) Microsoft Corporation. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef MOCK_BIOS_ID_LIB_H_ | ||
#define MOCK_BIOS_ID_LIB_H_ | ||
|
||
#include <Library/GoogleTestLib.h> | ||
#include <Library/FunctionMockLib.h> | ||
extern "C" { | ||
#include <Uefi.h> | ||
#include <Pi/PiBootMode.h> | ||
#include <Library/BiosIdLib.h> | ||
} | ||
|
||
struct MockBiosIdLib { | ||
MOCK_INTERFACE_DECLARATION (MockBiosIdLib); | ||
|
||
MOCK_FUNCTION_DECLARATION ( | ||
EFI_STATUS, | ||
GetBiosId, | ||
( | ||
OUT BIOS_ID_IMAGE *BiosIdImage OPTIONAL | ||
) | ||
); | ||
|
||
MOCK_FUNCTION_DECLARATION ( | ||
EFI_STATUS, | ||
GetBiosVersionDateTime, | ||
( | ||
OUT CHAR16 *BiosVersion, OPTIONAL | ||
OUT CHAR16 *BiosReleaseDate, OPTIONAL | ||
OUT CHAR16 *BiosReleaseTime OPTIONAL | ||
) | ||
); | ||
}; | ||
|
||
#endif |
12 changes: 12 additions & 0 deletions
12
BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.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,12 @@ | ||
/** @file MockBiosIdLib.cpp | ||
Google Test mocks for BiosIdLib | ||
Copyright (c) Microsoft Corporation. | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#include <GoogleTest/Library/MockBiosIdLib.h> | ||
|
||
MOCK_INTERFACE_DEFINITION (MockBiosIdLib); | ||
MOCK_FUNCTION_DEFINITION (MockBiosIdLib, GetBiosId, 1, EFIAPI); | ||
MOCK_FUNCTION_DEFINITION (MockBiosIdLib, GetBiosVersionDateTime, 3, EFIAPI); |
33 changes: 33 additions & 0 deletions
33
BoardModulePkg/Test/Mock/Library/GoogleTest/MockBiosIdLib/MockBiosIdLib.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,33 @@ | ||
## @file MockBiosIdLib.inf | ||
# Google Test mock for BiosIdLib | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
|
||
[Defines] | ||
INF_VERSION = 0x00010005 | ||
BASE_NAME = MockBiosIdLib | ||
FILE_GUID = FD03FA6D-7447-499C-B3AF-D89450F7739A | ||
MODULE_TYPE = HOST_APPLICATION | ||
VERSION_STRING = 1.0 | ||
LIBRARY_CLASS = BiosIdLib | ||
PI_SPECIFICATION_VERSION = 0x0001000A | ||
|
||
# | ||
# VALID_ARCHITECTURES = IA32 X64 | ||
# | ||
|
||
[Sources] | ||
MockBiosIdLib.cpp | ||
|
||
[Packages] | ||
MdePkg/MdePkg.dec | ||
UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec | ||
BoardModulePkg/BoardModulePkg.dec | ||
|
||
[LibraryClasses] | ||
GoogleTestLib | ||
|
||
[BuildOptions] | ||
MSFT:*_*_*_CC_FLAGS = /EHsc |