Table of Contents
问题内容
解决方法
repo.go 文件
repo_test.go 文件
Home Backend Development Golang Issues using go-sqlmock and inserting parameters into simulated queries

Issues using go-sqlmock and inserting parameters into simulated queries

Feb 11, 2024 pm 07:12 PM

使用 go-sqlmock 并将参数插入模拟查询的问题

在PHP开发中,数据库操作是非常常见的需求,而对于一些需要测试的场景,我们又不希望直接操作真实的数据库。这时候,我们可以使用go-sqlmock来模拟数据库查询,从而达到我们想要的测试效果。本文将向大家介绍如何使用go-sqlmock,并将参数插入模拟查询的问题。无论你是PHP开发初学者还是有一定经验的开发者,通过学习本文,你都能够轻松掌握这一技巧,提升你的开发效率。

问题内容

我正在尝试使用 go-sqlmock 模拟我的查询函数并类似地复制数据库表。但是,我没有得到我期望的结果。查询的行为不正常,参数没有插入到查询中并且实际结果不正确。我在这里做错了什么?

这是我正在嘲笑的函数和查询:

func (y *yumdatabase) gettransactionid(pkg string) (int, error) {
    var id int

    queryfortid := "select tid from trans_cmdline where cmdline like '%install " + pkg + "%' order by tid desc limit 1"
    row := y.db.queryrow(queryfortid)
    switch err := row.scan(&id); err {
    case sql.errnorows:
        fmt.println("no rows were returned")
        return 0, err
    case nil:
        return id, nil
    default:
        return 0, err
    }
}
Copy after login

这是模拟测试功能:

func testgettransactionid(t *testing.t) {
    db, mock, err := sqlmock.new()
    if err != nil {
        t.fatalf("err not expected: %v", err)
    }
    pkg := "tcpdump"
    rows := sqlmock.newrows([]string{"tid"}).addrow("1").addrow("3")
    mock.expectquery("select tid from trans_cmdline where cmdline like '%install " + pkg + "%' order by tid desc limit 1").willreturnrows(rows)

    mockdb := &yumdatabase{
        db: db,
    }

    got, err := mockdb.gettransactionid("tcpdump")
    assert.equal(t, 3, got)
}
Copy after login

如果上述工作按预期进行,我会在“got”中返回“3”,但我会返回“1”

其次,是否可以将 rows 更改为以下内容:

rows := sqlmock.newrows([]string{"tid", "cmdline"}).addrow("1", "install test").addrow("3", "delete test2")
Copy after login

实际上进行了比较“where cmdline like '%install xyz%'”,因为我尝试了这个,并且收到了以下错误(所有主要代码都构建并工作,包括查询,所以这是一个问题我猜是我写的模拟代码):

error sql: expected 2 destination arguments in Scan, not 1
Copy after login

我希望看到从 sql 查询返回的最高 tid,而不是“addrow”中指定的第一个 tid,并且我希望查询实现对模拟中的“cmdline”行的检查。

解决方法

我就是这样管理你的需求的。首先,让我分享代码,然后,我将引导您完成所有相关更改。该代码包含在两个文件中:repo.gorepo_test.go

repo.go 文件

package repo

import (
    "database/sql"
    "fmt"
)

func gettransactionid(db *sql.db, pkg string) (int, error) {
    var id int
    row := db.queryrow("select tid from trans_cmdline where cmdline like '%install $1%' order by tid desc limit 1", pkg)
    switch err := row.scan(&id); err {
    case sql.errnorows:
        fmt.println("no rows were returned")
        return 0, err
    case nil:
        return id, nil
    default:
        return 0, err
    }
}
Copy after login

这里有两个小改进:

  1. *sql.db 作为参数传入。正如最佳实践所建议的,函数是一等公民。这就是为什么我更愿意尽可能坚持使用它们。
  2. 我使用准备好的语句来传递查询的参数。不是简单的字符串连接。因此,可以更轻松地拦截传递给查询的参数并对其设置期望

现在让我们切换到测试代码。

repo_test.go 文件

package repo

import (
    "database/sql"
    "testing"

    "github.com/DATA-DOG/go-sqlmock"
    "github.com/stretchr/testify/assert"
)

func TestGetTransactionId(t *testing.T) {
    db, mock, err := sqlmock.New(sqlmock.QueryMatcherOption(sqlmock.QueryMatcherEqual))
    if err != nil {
        t.Fatalf("err not expected while opening mock db, %v", err)
    }
    t.Run("HappyPath", func(t *testing.T) {
        rows := sqlmock.NewRows([]string{"tid"}).AddRow("1")
        mock.ExpectQuery("SELECT tid FROM trans_cmdline WHERE cmdline LIKE '%install $1%' ORDER BY tid DESC LIMIT 1").
            WithArgs("tcpdump").
            WillReturnRows(rows)

        got, err := GetTransactionId(db, "tcpdump")

        assert.Equal(t, 1, got)
        assert.Nil(t, err)
    })

    t.Run("NoRowsReturned", func(t *testing.T) {
        mock.ExpectQuery("SELECT tid FROM trans_cmdline WHERE cmdline LIKE '%install $1%' ORDER BY tid DESC LIMIT 1").
            WithArgs("tcpdump").
            WillReturnError(sql.ErrNoRows)

        got, err := GetTransactionId(db, "tcpdump")

        assert.Equal(t, 0, got)
        assert.Equal(t, sql.ErrNoRows, err)
    })
}
Copy after login

这里,您需要注意更多更改:

  1. 在实例化 dbmock 时,您应该将 sqlmock.querymatcherequal 作为参数传递给。因此,它将完全匹配查询。
  2. expectquery 方法现在使用准备好的语句功能并需要一个参数(例如本例中的 tcpdump)。
  3. 重构了断言以利用 github.com/stretchr/testify/assert 包。

我希望这可以帮助您解决问题,请告诉我!

The above is the detailed content of Issues using go-sqlmock and inserting parameters into simulated queries. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do you use the pprof tool to analyze Go performance? How do you use the pprof tool to analyze Go performance? Mar 21, 2025 pm 06:37 PM

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

How do you write unit tests in Go? How do you write unit tests in Go? Mar 21, 2025 pm 06:34 PM

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

How do I write mock objects and stubs for testing in Go? How do I write mock objects and stubs for testing in Go? Mar 10, 2025 pm 05:38 PM

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

How can I define custom type constraints for generics in Go? How can I define custom type constraints for generics in Go? Mar 10, 2025 pm 03:20 PM

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications? Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications? Mar 25, 2025 am 11:17 AM

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

How can I use tracing tools to understand the execution flow of my Go applications? How can I use tracing tools to understand the execution flow of my Go applications? Mar 10, 2025 pm 05:36 PM

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

How do you use table-driven tests in Go? How do you use table-driven tests in Go? Mar 21, 2025 pm 06:35 PM

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

How do you specify dependencies in your go.mod file? How do you specify dependencies in your go.mod file? Mar 27, 2025 pm 07:14 PM

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

See all articles