-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BoardModulePkg: Added Mock library for BiosIdLib
Added a gmock for GoogleTests that pull in BiosIdLib. Cc: Eric Dong <[email protected]> Cc: Liming Gao <[email protected]> Signed-off-by: Vivian Nowka-Keane <[email protected]>
- Loading branch information
1 parent
a5d1266
commit 6bc372d
Showing
5 changed files
with
118 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
32 changes: 32 additions & 0 deletions
32
Platform/Intel/BoardModulePkg/Test/BoardModulePkgHostTest.dsc
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 |
40 changes: 40 additions & 0 deletions
40
Platform/Intel/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,40 @@ | ||
/** @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
Platform/Intel/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
Platform/Intel/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 |