我在我的 Ubuntu 12.04.1 笔记本电脑上运行 go 1.0.3,我偶然发现了一个问题,如果我在 main() 中运行一些代码,它的行为与使用 go test 运行它的行为大不相同。
这是我的示例:
来自 main.go
package main
import (
"image"
"image/jpeg"
"fmt"
"myproj/htmlutil"
[some imports removed]
)
func main() {
img, err := htmlutil.GetResizedImageFromWeb("http://img.foodnetwork.com/FOOD/2011/05/04/FNM_060111-OOT-B005_s4x3.jpg")
if err != nil {
fmt.Println("There was a problem ",err)
}
fmt.Println("Bounds were ",img.Bounds())
}
来自 myproj/htmlutil_test.go
package htmlutil
import (
"image"
"fmt"
"testing"
[some imports removed]
)
func TestGetImageFromURL(t *testing.T){
img, err := GetResizedImageFromWeb("http://img.foodnetwork.com/FOOD/2011/05/04/FNM_060111-OOT-B005_s4x3.jpg")
if err != nil {
t.Fatalf("There was a problem %q",err)
}
fmt.Println("Bounds were ",img.Bounds())
}
他们调用的函数 GetResizedImageFromWeb() 在 myproj/htmlutil.go 中:
package htmlutil
import (
"errors"
"fmt"
"image"
"io/ioutil"
"net/http"
[some imports removed]
)
func GetResizedImageFromWeb(imageURL string) (image.Image, error) {
resp, err := http.Get(imageURL)
if err != nil {
return nil, errors.New(fmt.Sprint("There was a problem reading the site %q Debug[%s]",imageURL, err))
}
defer resp.Body.Close()
//Decode the image using image's general purpose decoder
image, s, err := image.Decode(resp.Body)
if err != nil {
return nil, err
}
return resizeImage(image), nil
}
当我从命令行运行“go run main.go”时,我会从 url 看到图像的边界,如果我想使用 main.go 中的函数,可以将其保存为磁盘上的 jpg 文件。但是,当我从 htmlutil 包运行“go test”时,出现以下错误:
There was a problem "image: unknown format"
是什么导致问题仅在单元测试中失败?我究竟做错了什么?
我唯一的猜测是,无论出于何种原因, html.Get() 都没有返回测试场景中的所有数据,但我仍然对为什么会发生这种情况感到困惑。