mirror of
https://github.com/mudler/luet.git
synced 2025-04-28 11:34:42 +00:00
* Print all not-found packages When trying to install several packages that are not found luet will now print all packages that are not found, instead of only first one. * changes to some failing tests
113 lines
3.4 KiB
Go
113 lines
3.4 KiB
Go
// Copyright © 2021 Ettore Di Giacinto <mudler@gentoo.org>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package image_test
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/google/go-containerregistry/pkg/name"
|
|
v1 "github.com/google/go-containerregistry/pkg/v1"
|
|
daemon "github.com/google/go-containerregistry/pkg/v1/daemon"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"github.com/mudler/luet/pkg/api/core/context"
|
|
. "github.com/mudler/luet/pkg/api/core/image"
|
|
"github.com/mudler/luet/pkg/helpers/file"
|
|
)
|
|
|
|
var _ = Describe("Extract", func() {
|
|
|
|
Context("extract files from images", func() {
|
|
Context("ExtractFiles", func() {
|
|
ctx := context.NewContext()
|
|
var tmpfile *os.File
|
|
var ref name.Reference
|
|
var img v1.Image
|
|
var err error
|
|
|
|
BeforeEach(func() {
|
|
ctx = context.NewContext()
|
|
|
|
tmpfile, err = ioutil.TempFile("", "extract")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer os.RemoveAll(tmpfile.Name()) // clean up
|
|
|
|
ref, err = name.ParseReference("alpine")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
img, err = daemon.Image(ref)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
})
|
|
|
|
It("Extract all files", func() {
|
|
_, tmpdir, err := Extract(
|
|
ctx,
|
|
img,
|
|
ExtractFiles(ctx, "", []string{}, []string{}),
|
|
)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
// defer os.RemoveAll(tmpdir) // clean up
|
|
|
|
Expect(filepath.Join(tmpdir, "usr", "bin")).To(BeADirectory())
|
|
Expect(filepath.Join(tmpdir, "bin", "busybox")).To(BeARegularFile())
|
|
})
|
|
|
|
It("Extract specific dir", func() {
|
|
_, tmpdir, err := Extract(
|
|
ctx,
|
|
img,
|
|
ExtractFiles(ctx, "/usr", []string{}, []string{}),
|
|
)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer os.RemoveAll(tmpdir) // clean up
|
|
Expect(filepath.Join(tmpdir, "usr", "sbin")).To(BeADirectory())
|
|
Expect(filepath.Join(tmpdir, "usr", "bin")).To(BeADirectory())
|
|
Expect(filepath.Join(tmpdir, "bin", "busybox")).ToNot(BeARegularFile())
|
|
})
|
|
|
|
It("Extract a dir with includes/excludes", func() {
|
|
_, tmpdir, err := Extract(
|
|
ctx,
|
|
img,
|
|
ExtractFiles(ctx, "/usr", []string{"bin"}, []string{"sbin"}),
|
|
)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer os.RemoveAll(tmpdir) // clean up
|
|
|
|
Expect(file.Exists(filepath.Join(tmpdir, "usr", "bin"))).To(BeTrue())
|
|
Expect(file.Exists(filepath.Join(tmpdir, "bin", "sh"))).To(BeFalse())
|
|
Expect(file.Exists(filepath.Join(tmpdir, "usr", "sbin"))).To(BeFalse())
|
|
})
|
|
|
|
It("Extract with includes/excludes", func() {
|
|
_, tmpdir, err := Extract(
|
|
ctx,
|
|
img,
|
|
ExtractFiles(ctx, "", []string{"/usr|/usr/bin"}, []string{"^/bin"}),
|
|
)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer os.RemoveAll(tmpdir) // clean up
|
|
|
|
Expect(filepath.Join(tmpdir, "usr", "bin")).To(BeADirectory())
|
|
Expect(filepath.Join(tmpdir, "bin", "busybox")).ToNot(BeARegularFile())
|
|
})
|
|
})
|
|
})
|
|
})
|