登录
首页 >  Golang >  Go问答

如何对从库导入的函数进行桩件和跟踪?

来源:stackoverflow

时间:2024-03-14 08:39:30 456浏览 收藏

欢迎各位小伙伴来到golang学习网,相聚于此都是缘哈哈哈!今天我给大家带来《如何对从库导入的函数进行桩件和跟踪?》,这篇文章主要讲到等等知识,如果你对Golang相关的知识非常感兴趣或者正在自学,都可以关注我,我会持续更新相关文章!当然,有什么建议也欢迎在评论留言提出!一起学习!

问题内容

我是一名 javascript 和 python 开发人员。这是使用 jestjs 测试框架的单元测试代码片段:

index.ts

import dotenv from 'dotenv';

export class osenvfetcher {
  constructor() {
    const output = dotenv.config();
    if (output.error) {
      console.log('error loading .env file');
      process.exit(1);
    }
  }
}

index.test.ts

import { osenvfetcher } from './';
import dotenv from 'dotenv';

describe('osenvfetcher', () => {
  aftereach(() => {
    jest.restoreallmocks();
  });
  it('should pass', () => {
    const moutput = { error: new error('parsed failure') };
    jest.spyon(dotenv, 'config').mockreturnvalueonce(moutput);
    const errorlogspy = jest.spyon(console, 'log');
    const exitstub = jest.spyon(process, 'exit').mockimplementation();
    new osenvfetcher();
    expect(dotenv.config).tobecalledtimes(1);
    expect(errorlogspy).tobecalledwith('error loading .env file');
    expect(exitstub).tobecalledwith(1);
  });
});

单元测试的结果:

pass  stackoverflow/todo/index.test.ts (11.08s)
  osenvfetcher
    ✓ should pass (32ms)

  console.log
    error loading .env file

      at customconsole. (node_modules/jest-environment-enzyme/node_modules/jest-mock/build/index.js:866:25)

----------|---------|----------|---------|---------|-------------------
file      | % stmts | % branch | % funcs | % lines | uncovered line #s 
----------|---------|----------|---------|---------|-------------------
all files |     100 |       50 |     100 |     100 |                   
 index.ts |     100 |       50 |     100 |     100 | 6                 
----------|---------|----------|---------|---------|-------------------
test suites: 1 passed, 1 total
tests:       1 passed, 1 total
snapshots:   0 total
time:        12.467s

示例中的测试方法在使用 arrange、act、assert 模式的 js 项目中很常见。由于dotenv.config()方法会执行一些文件系统i/o操作,因此它有一个副作用。所以我们将为它做一个存根或模拟。这样我们的单元测试就没有副作用,并且是在隔离的环境中进行测试。

这同样适用于python。我们可以使用unittest.mock模拟对象库来做同样的事情。我对这些单元测试方法非常满意。

现在,我转而去,尝试做同样的事情。代码在这里:

osenvfetcher.go

package util

import (
    "log"
    "os"
    "github.com/joho/godotenv"
)

var godotenvload = godotenv.load

type envfetcher interface {
    getenv(key string) string
}

type osenvfetcher struct {}

func newosenvfetcher() *osenvfetcher {
    err := godotenvload()
    if err != nil {
        log.fatal("error loading .env file")
    }
    return &osenvfetcher{}
}

func (f *osenvfetcher) getenv(key string) string {
    return os.getenv(key)
}

osenvfetcher_test.go

package util

import (
    "testing"
    "fmt"
)

func testosenvfetcher(t *testing.t) {
    old := godotenvload
    defer func() { godotenvload = old }()
    godotenvload = func() error {
        return 
    }
    osenvfetcher := newosenvfetcher()
    port := osenvfetcher.getenv("port")
    fmt.println(port)
}

测试用例尚未完成。我不确定应该如何模拟、存根或间谍 godotenv.load 方法(相当于 dotenv.config())和 log.fatal 方法?我找到了这个模拟包-mock.但是godotenv包没有接口,它是由函数组成的。

我正在寻找一些方法,例如 jest.mock(modulename, factory, options) 和 jest.spyon(object, methodname)。或者,像 sinonjs 的存根和间谍。或者,像茉莉花的间谍。这些方法几乎可以覆盖任何测试场景。无论使用di还是直接导入模块。

我看到了一些方法,但它们都有自己的问题。

例如https://stackoverflow.com/a/41661462/6463558。

我需要存根十个有副作用的方法怎么办?我需要将一个包的这些方法分配给10个变量,并在运行测试之前将它们替换为测试用例中的模拟版本十次。它是不可扩展的。也许我可以创建一个 __mocks__ 目录并将所有模拟版本对象放入其中。这样我就可以在所有测试文件中使用它们。

使用依赖注入更好。通过这种方式,我们可以将模拟对象传递给函数/方法。但有些场景是直接导入包并使用包的方法(第三个或内置标准库)。这也是我问题中的场景。我觉得这种场景是不可避免的,一定会出现在代码的某一层。

我可以使用 jestjs 轻松处理这种情况,例如

util.js

exports.resolveaddress = function(addr) {
  // ...
  const data = exports.parsejson(json);
  return data;
}
exports.parsejson = function(json) {}

main.js

// import util module directly rather than using dependency injection
import util from './util';
function main() {
  return util.resolveaddress();
}

main.test.js

import util from './util';
const mJson = 'mocked json data';
jest.spyOn(util, 'parseJSON').mockReturnValueOnce(mJson)
const actual = main()
expect(actual).toBe('mocked json data');

我直接导入 util 模块并模拟 util.parsejson 方法及其返回值。我不确定 go 的包是否可以做到这一点。目前,这些问题是安排问题。

此外,我还需要检查方法是否确实被调用,以确保代码逻辑和分支是正确的。 (例如,使用 jestjs.tobecalledwith() 方法)。这是断言问题。

提前致谢!


解决方案


这是我基于此answer的解决方案:

osenvfetcher.go

package util

import (
    "log"
    "os"
    "github.com/joho/godotenv"
)

var godotenvload = godotenv.load
var logfatal = log.fatal

type envfetcher interface {
    getenv(key string) string
}

type osenvfetcher struct {}

func newosenvfetcher() *osenvfetcher {
    err := godotenvload()
    if err != nil {
        logfatal("error loading .env file")
    }
    return &osenvfetcher{}
}

func (f *osenvfetcher) getenv(key string) string {
    return os.getenv(key)
}

osenvfetcher_test.go

package util

import (
    "testing"
    "errors"
)


func mockrestore(ogodotenvload func(...string) error, ologfatal func(v ...interface{})) {
    godotenvload = ogodotenvload
    logfatal = ologfatal
}

func testosenvfetcher(t *testing.t) {
    // arrange
    ogodotenvload := godotenvload
    ologfatal := logfatal
    defer mockrestore(ogodotenvload, ologfatal)
    var godotenvloadcalled = false
    godotenvload = func(...string) error {
        godotenvloadcalled = true
        return errors.new("parsed failure")
    }
    var logfatalcalled = false
    var logfatalcalledwith interface{}
    logfatal = func(v ...interface{}) {
        logfatalcalled = true
        logfatalcalledwith = v[0]
    }
    // act
    newosenvfetcher()
    // assert
    if !godotenvloadcalled {
        t.errorf("godotenv.load should be called")
    }
    if !logfatalcalled {
        t.errorf("log.fatal should be called")
    }
    if logfatalcalledwith != "error loading .env file" {
        t.errorf("log.fatal should be called with: %s", logfatalcalledwith)
    }
}

测试覆盖范围的结果:

☁  util [master] ⚡  go test -v -coverprofile cover.out
=== RUN   TestOsEnvFetcher
--- PASS: TestOsEnvFetcher (0.00s)
PASS
coverage: 80.0% of statements

覆盖 html 记者:

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>