
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
github.com/GoogleCloudPlatform/compute-image-tools/cli_tools
cli_tools uses gomock. The mocks are stored as source code, and need to be updated whenever the referenced interface is changed.
To use existing mocks, no setup is required.
To generate new mocks, or update existing mocks, you need the mockgen
tool:
go install github.com/golang/mock/mockgen
export PATH=$PATH:~/go/bin
For interfaces within cli_tools that require mocking, we create go generate definitions. These definitions codify naming convention, and simplify future updates.
For example, to update the mock for shell.Executor
:
cd cli_tools/common/utils/shell
go generate ./...
For interfaces that are external to cli_tools, we run mockgen
directly.
For example, to update the mock for daisy.Logger
:
cd cli_tools/mocks
mockgen -package mocks -mock_names Logger=MockDaisyLogger \
github.com/GoogleCloudPlatform/compute-daisy Logger > mock_daisy_logger.go
Tips:
-mock_names
flag. Executing git diff
will help you to determine whether that flag is required.cli_tools/mocks
.cli_tools/common/image/importer/mocks/source_mocks.go
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.