1
0
Fork 0

test: enable match image test

timestamps
dump_stack() 2023-05-13 11:00:34 +00:00
parent b1b7a9e675
commit 59febd75b0
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 25 additions and 19 deletions

View File

@ -2,30 +2,36 @@ package debian
import (
"testing"
// "github.com/cavaliergopher/grab/v3"
// "code.dumpstack.io/tools/out-of-tree/config"
"github.com/cavaliergopher/grab/v3"
"code.dumpstack.io/tools/out-of-tree/cache"
"code.dumpstack.io/tools/out-of-tree/config"
)
// func TestMatchImagePkg(t *testing.T) {
// km := config.KernelMask{
// ReleaseMask: "3.2.0-4",
// DistroRelease: "7",
// }
func TestMatchImagePkg(t *testing.T) {
cache.URL = "https://out-of-tree.fra1.digitaloceanspaces.com/1.0.0/"
t.Log("tested with cache by default")
// resp, err := grab.Get(tmp, fileurl)
// if err != nil {
// t.Fatal(err)
// }
km := config.KernelMask{
ReleaseMask: "3.2.0-4",
DistroRelease: "7",
}
// pkgs, err := MatchImagePkg(km)
// if err != nil {
// t.Fatal(err)
// }
resp, err := grab.Get(tmp, fileurl)
if err != nil {
t.Fatal(err)
}
// if len(pkgs) == 0 {
// t.Fatal("no packages")
// }
// }
pkgs, err := MatchImagePkg(km)
if err != nil {
t.Fatal(err)
}
if len(pkgs) == 0 {
t.Fatal("no packages")
}
}
func TestParseKernelMajorMinor(t *testing.T) {
type testcase struct {