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

MdePkg/GoogleTest: Add HASH2 Protocol mock interface #630

Merged
merged 3 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions MdePkg/Test/Mock/Include/GoogleTest/Protocol/MockHash2.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/** @file
This file declares a mock of Hash2 Protocol.

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

#ifndef MOCK_HASH2_H
#define MOCK_HASH2_H

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

extern "C" {
#include <Uefi.h>
#include <Protocol\Hash2.h>
}

struct MockHash2 {
MOCK_INTERFACE_DECLARATION (MockHash2);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
GetHashSize,
(IN CONST EFI_HASH2_PROTOCOL *This,
IN CONST EFI_GUID *HashAlgorithm,
OUT UINTN *HashSize)
);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
Hash,
(IN CONST EFI_HASH2_PROTOCOL *This,
IN CONST EFI_GUID *HashAlgorithm,
IN CONST UINT8 *Message,
IN UINTN MessageSize,
IN OUT EFI_HASH2_OUTPUT *Hash)
);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
HashInit,
(IN CONST EFI_HASH2_PROTOCOL *This,
IN CONST EFI_GUID *HashAlgorithm)
);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
HashUpdate,
(IN CONST EFI_HASH2_PROTOCOL *This,
IN CONST UINT8 *Message,
IN UINTN MessageSize)
);

MOCK_FUNCTION_DECLARATION (
EFI_STATUS,
HashFinal,
(IN CONST EFI_HASH2_PROTOCOL *This,
IN OUT EFI_HASH2_OUTPUT *Hash)
);
};

extern "C" {
extern EFI_HASH2_PROTOCOL *gHash2Protocol;
}

#endif // MOCK_HASH2_H
27 changes: 27 additions & 0 deletions MdePkg/Test/Mock/Library/GoogleTest/Protocol/MockHash2.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/** @file MockHash2.cpp
Google Test mock for Hash2 Protocol

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

#include <GoogleTest/Protocol/MockHash2.h>

MOCK_INTERFACE_DEFINITION (MockHash2);
MOCK_FUNCTION_DEFINITION (MockHash2, GetHashSize, 3, EFIAPI);
MOCK_FUNCTION_DEFINITION (MockHash2, Hash, 5, EFIAPI);
MOCK_FUNCTION_DEFINITION (MockHash2, HashInit, 2, EFIAPI);
MOCK_FUNCTION_DEFINITION (MockHash2, HashUpdate, 3, EFIAPI);
MOCK_FUNCTION_DEFINITION (MockHash2, HashFinal, 2, EFIAPI);

EFI_HASH2_PROTOCOL HASH2_PROTOCOL_INSTANCE = {
GetHashSize, // EFI_HASH2_GET_HASH_SIZE
Hash, // EFI_HASH2_HASH
HashInit, // EFI_HASH2_HASH_INIT
HashUpdate, // EFI_HASH2_HASH_UPDATE
HashFinal // EFI_HASH2_HASH_FINAL
};

extern "C" {
EFI_HASH2_PROTOCOL *gHash2Protocol = &HASH2_PROTOCOL_INSTANCE;
}