惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
罗磊的独立博客
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
B
Blog RSS Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Part 7: Testing with Confidence: Mocking and Recap
Matthias Fri · 2026-05-16 · via DEV Community

The Role of Mocks in Unit Testing

In the previous parts of this series, we focused on building and validating complex dependency graphs for production environments. However, a robust architecture is only half the battle; ensuring that individual components behave correctly in isolation is equally critical.

Unit testing in Go often relies on Mock Objects. Mocks allow you to replace real service implementations with controlled placeholders that simulate specific behaviors, return predetermined values, or record how they were called. This isolation is essential for testing edge cases—like network failures or database errors—without setting up expensive infrastructure.

In this final part of our series, we explore how the Parsley CLI simplifies mock generation and how you can use these mocks to write highly expressive tests.

1. Generating Mocks with Parsley CLI

Manually writing mock implementations for every interface in your project is tedious and error-prone. Parsley addresses this by providing a dedicated generate mocks command.

Step 1: Interface Annotation

To enable mock generation, add a //go:generate directive to your interface definition.

package features

//go:generate parsley-cli generate mocks

type DataService interface {
    FetchData(id string) (string, error)
}

Enter fullscreen mode Exit fullscreen mode

Step 2: Code Generation

When you run go generate ./..., the Parsley CLI scans for the directive and generates a mock.g.go file. This file contains a mock struct (e.g., dataServiceMock) that implements your interface and provides hooks for behavior configuration.

2. Configuring and Verifying Mocks

The generated mocks are designed to be used as drop-in replacements in your test suites. They use a "function-override" pattern that keeps your tests clean and readable.

Practical Example: Testing with Mocks

Suppose we want to test a service that depends on our DataService. We can use the generated NewDataServiceMock() to simulate a successful data fetch.

func TestService_Process(t *testing.T) {
    // 1. Arrange: Initialize the mock and define its behavior
    mock := NewDataServiceMock()
    mock.FetchDataFunc = func(id string) (string, error) {
        return "mock-data", nil
    }

    // 2. Act: Pass the mock to the component under test
    service := NewMyService(mock)
    err := service.Execute("123")

    // 3. Assert: Verify expectations
    assert.NoError(t, err)

    // Verify that FetchData was called exactly once with argument "123"
    assert.True(t, mock.Verify(FunctionFetchData, 
        features.TimesOnce(), 
        features.Exact("123")))
}

Enter fullscreen mode Exit fullscreen mode

Assertion Helpers

Parsley provides built-in helpers to verify method invocations:

  • Counter Helpers: TimesOnce(), TimesNever(), TimesExactly(n).
  • Argument Matchers: Exact(val), IsAny().

This approach allows you to assert not just that a method was called, but that it was called with the correct parameters, providing much deeper confidence in your component interactions.

3. Decoupling Code Generation from DI Runtime

A key design philosophy of Parsley is flexibility. While the Validator and Resolver are powerful for runtime dependency injection, the CLI tools—like proxy and mock generation—can be used independently.

You can leverage Parsley's mock generation to simplify testing even if you prefer manual dependency wiring in your production code. This makes it a versatile addition to any Go developer's toolkit, regardless of their choice of DI framework.


Series Recap: Mastering Dependency Injection

We have reached the end of our journey. Over eight articles, we have transformed a basic Go application into a modular, validated, and testable system.

  1. The Case for Dependency Injection in Go: Established the theoretical foundation and addressed common misconceptions.
  2. Introduction and Quick Start: Explored the core concepts of IoC and set up our first registry.
  3. Service Registration Fundamentals: Learned how to register constructors and pre-existing instances.
  4. Understanding Lifetimes and Scopes: Mastered Transient, Scoped, and Singleton behaviors.
  5. Advanced Registration Patterns: Organized our code using Modules, Factory Functions, and Named Services.
  6. Mastering Dependency Resolution: Dived into Lazy Proxies, Service Lists, and Dynamic Overrides.
  7. Ensuring Reliability: Validation and Proxies: Caught configuration errors early and separated cross-cutting concerns.
  8. Testing with Confidence: (This article) Simplified isolation testing with generated mocks.

Join the Community

Parsley is an open-source project driven by the community. If you found this series helpful, there are several ways you can support the project:

  • Leave a Star: If you use Parsley or appreciate the design, head over to the GitHub repository and leave a star. It helps other developers discover the library.
  • Spread the Word: Share your experience with Parsley on social media or with your team.
  • Contribute: Whether it's reporting a bug, improving the documentation, or proposing a new feature, your contributions are always welcome.

Thank you for following along with this series. I hope Parsley helps you build cleaner, more maintainable Go applications!

Next Steps

  • Try generating a mock for one of your interfaces today.
  • Explore the Mocking Made Easy documentation for advanced verification patterns.