51 lines
823 B
Go
51 lines
823 B
Go
package cache
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"code.dumpstack.io/tools/out-of-tree/fs"
|
|
)
|
|
|
|
func TestDownloadQemuImage(t *testing.T) {
|
|
tmp, err := ioutil.TempDir("", "out-of-tree_")
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer os.RemoveAll(tmp)
|
|
|
|
file := "out_of_tree_ubuntu_12__04.img"
|
|
|
|
err = DownloadQemuImage(tmp, file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if !fs.PathExists(filepath.Join(tmp, file)) {
|
|
t.Fatalf("%s does not exist", file)
|
|
}
|
|
}
|
|
|
|
func TestDownloadDebianCache(t *testing.T) {
|
|
tmp, err := fs.TempDir()
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer os.RemoveAll(tmp)
|
|
|
|
file := "debian.cache"
|
|
|
|
cachePath := filepath.Join(tmp, file)
|
|
|
|
err = DownloadDebianCache(cachePath)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if !fs.PathExists(filepath.Join(tmp, file)) {
|
|
t.Fatalf("%s does not exist", file)
|
|
}
|
|
}
|