首页 > 后端开发 > Golang > 如何在 Go 中重新定义常量进行测试?

如何在 Go 中重新定义常量进行测试?

DDD
发布: 2024-11-02 11:49:02
原创
816 人浏览过

How Can You Redefine Constants in Go for Testing?

重新定义 Go 中测试的常量

在生产代码中,通常需要使用常量来表示稳定值,例如基本 URL。然而,这可能会在测试时带来挑战,因为 Go 中 const 的默认实现不允许重新分配。

问题:

考虑以下代码片段,它尝试重新定义测试文件:

<code class="go">package main

const baseUrl = "http://google.com"

// in main_test.go
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  ...
 }
const baseUrl = ts.URL // throws error: const baseUrl already defined</code>
登录后复制

此代码将失败,并显示 const baseUrl 已定义错误,因为 Go 不允许重新定义常量。

解决方案:

启用测试友好的常量,请考虑重构您的代码。不使用全局常量,而是创建一个将常量值作为参数的函数:

<code class="go">const baseUrl_ = "http://google.com"

func MyFunc(baseUrl string) {
    // Use baseUrl
}</code>
登录后复制

在测试文件中,您可以重新定义 baseUrl 参数,而不影响生产代码:

<code class="go">// in main_test.go
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  ...
 }
myFuncImpl(ts.URL) // Call the function with the test URL</code>
登录后复制

这种方法允许您使用不同的常量值测试代码,同时保留原始实现。原始函数 MyFunc() 仍然使用生产常数值,保证非测试场景的稳定性。

以上是如何在 Go 中重新定义常量进行测试?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板