在生产代码中,通常需要使用常量来表示稳定值,例如基本 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中文网其他相关文章!