2022-08-09 11:43:02 +00:00
|
|
|
// Copyright 2022 Linka Cloud All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2022-08-05 15:39:04 +00:00
|
|
|
package d2vm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
"go.linka.cloud/d2vm/pkg/docker"
|
|
|
|
"go.linka.cloud/d2vm/pkg/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
func testSysconfig(t *testing.T, ctx context.Context, img, sysconf, kernel, initrd string) {
|
2022-09-10 10:38:02 +00:00
|
|
|
require.NoError(t, docker.Pull(ctx, img))
|
2022-08-05 15:39:04 +00:00
|
|
|
tmpPath := filepath.Join(os.TempDir(), "d2vm-tests", strings.NewReplacer(":", "-", ".", "-").Replace(img))
|
|
|
|
require.NoError(t, os.MkdirAll(tmpPath, 0755))
|
|
|
|
defer os.RemoveAll(tmpPath)
|
|
|
|
logrus.Infof("inspecting image %s", img)
|
|
|
|
r, err := FetchDockerImageOSRelease(ctx, img, tmpPath)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer docker.Remove(ctx, img)
|
|
|
|
sys, err := sysconfig(r)
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, sysconf, sys)
|
2023-02-23 14:02:12 +00:00
|
|
|
d, err := NewDockerfile(r, img, "root", "", false)
|
2022-08-05 15:39:04 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
logrus.Infof("docker image based on %s", d.Release.Name)
|
|
|
|
p := filepath.Join(tmpPath, docker.FormatImgName(img))
|
|
|
|
dir := filepath.Dir(p)
|
|
|
|
f, err := os.Create(p)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer f.Close()
|
|
|
|
require.NoError(t, d.Render(f))
|
|
|
|
imgUUID := uuid.New().String()
|
|
|
|
logrus.Infof("building kernel enabled image")
|
|
|
|
require.NoError(t, docker.Build(ctx, imgUUID, p, dir))
|
|
|
|
defer docker.Remove(ctx, imgUUID)
|
|
|
|
require.NoError(t, docker.RunAndRemove(ctx, imgUUID, "test", "-f", kernel))
|
|
|
|
require.NoError(t, docker.RunAndRemove(ctx, imgUUID, "test", "-f", initrd))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSyslinuxCfg(t *testing.T) {
|
2022-08-09 11:35:42 +00:00
|
|
|
t.Parallel()
|
2022-08-05 15:39:04 +00:00
|
|
|
tests := []struct {
|
|
|
|
image string
|
|
|
|
kernel string
|
|
|
|
initrd string
|
|
|
|
sysconfig string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
image: "ubuntu:18.04",
|
|
|
|
kernel: "/vmlinuz",
|
|
|
|
initrd: "/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgDebian,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "ubuntu:20.04",
|
|
|
|
kernel: "/boot/vmlinuz",
|
|
|
|
initrd: "/boot/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgUbuntu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "ubuntu:22.04",
|
|
|
|
kernel: "/boot/vmlinuz",
|
|
|
|
initrd: "/boot/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgUbuntu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "ubuntu:latest",
|
|
|
|
kernel: "/boot/vmlinuz",
|
|
|
|
initrd: "/boot/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgUbuntu,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "debian:9",
|
|
|
|
kernel: "/vmlinuz",
|
|
|
|
initrd: "/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgDebian,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "debian:10",
|
|
|
|
kernel: "/vmlinuz",
|
|
|
|
initrd: "/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgDebian,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "debian:11",
|
|
|
|
kernel: "/vmlinuz",
|
|
|
|
initrd: "/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgDebian,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "debian:latest",
|
|
|
|
kernel: "/vmlinuz",
|
|
|
|
initrd: "/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgDebian,
|
|
|
|
},
|
2022-09-18 21:02:25 +00:00
|
|
|
{
|
|
|
|
image: "kalilinux/kali-rolling:latest",
|
|
|
|
kernel: "/vmlinuz",
|
|
|
|
initrd: "/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgDebian,
|
|
|
|
},
|
2023-02-15 09:20:37 +00:00
|
|
|
{
|
|
|
|
image: "alpine:3.16",
|
|
|
|
kernel: "/boot/vmlinuz-virt",
|
|
|
|
initrd: "/boot/initramfs-virt",
|
|
|
|
sysconfig: syslinuxCfgAlpine,
|
|
|
|
},
|
2022-08-05 15:39:04 +00:00
|
|
|
{
|
|
|
|
image: "alpine",
|
|
|
|
kernel: "/boot/vmlinuz-virt",
|
|
|
|
initrd: "/boot/initramfs-virt",
|
|
|
|
sysconfig: syslinuxCfgAlpine,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "centos:8",
|
|
|
|
kernel: "/boot/vmlinuz",
|
|
|
|
initrd: "/boot/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgCentOS,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: "centos:latest",
|
|
|
|
kernel: "/boot/vmlinuz",
|
|
|
|
initrd: "/boot/initrd.img",
|
|
|
|
sysconfig: syslinuxCfgCentOS,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
exec.SetDebug(true)
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2022-08-09 11:35:42 +00:00
|
|
|
test := test
|
2022-08-05 15:39:04 +00:00
|
|
|
t.Run(test.image, func(t *testing.T) {
|
2022-08-09 11:35:42 +00:00
|
|
|
t.Parallel()
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
2022-08-05 15:39:04 +00:00
|
|
|
testSysconfig(t, ctx, test.image, test.sysconfig, test.kernel, test.initrd)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|