1
0

test: disable match image test until cache is implemented

This commit is contained in:
dump_stack() 2023-05-13 10:24:29 +00:00
parent ebc597ff0b
commit 28acc51417
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
2 changed files with 21 additions and 15 deletions

View File

@ -121,6 +121,7 @@ func kernelRelease(deb string) (r Release, err error) {
} }
var ( var (
CacheURL string
CachePath string CachePath string
RefetchDays int = 7 RefetchDays int = 7
) )

View File

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