Files
cloudpods/pkg/util/imagetools/image_test.go
T
2018-12-05 12:06:49 +08:00

15 lines
391 B
Go

package imagetools
import "testing"
func TestNormalizeImageInfo(t *testing.T) {
info := NormalizeImageInfo("rhel67_20180816.qcow2", "", "", "", "")
t.Logf("%#v", info)
info = NormalizeImageInfo("Ubuntu_16.04.3_amd64_qingcloud_20180817.qcow2", "", "", "", "")
t.Logf("%#v", info)
info = NormalizeImageInfo("windows-server-2008-dc-cn-20180717", "", "", "", "")
t.Logf("%#v", info)
}