mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-18 04:27:06 +02:00
This fixes issues with `// +build` directives not being recognized in source files. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
120 lines
2.5 KiB
Go
120 lines
2.5 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
// Package archiver provides a service to archive part of the filesystem into tar archive
|
|
package archiver_test
|
|
|
|
import (
|
|
"archive/tar"
|
|
"bytes"
|
|
"context"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/talos-systems/talos/pkg/archiver"
|
|
)
|
|
|
|
type TarSuite struct {
|
|
CommonSuite
|
|
}
|
|
|
|
//nolint: gocyclo
|
|
func (suite *TarSuite) TestArchiveDir() {
|
|
ch, err := archiver.Walker(context.Background(), suite.tmpDir)
|
|
suite.Require().NoError(err)
|
|
|
|
var buf bytes.Buffer
|
|
|
|
err = archiver.Tar(context.Background(), ch, &buf)
|
|
suite.Require().NoError(err)
|
|
|
|
pathsSeen := map[string]struct{}{}
|
|
|
|
tr := tar.NewReader(&buf)
|
|
|
|
for {
|
|
hdr, err := tr.Next()
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
if hdr.Typeflag == tar.TypeDir {
|
|
continue
|
|
}
|
|
|
|
contents, err := ioutil.ReadAll(tr)
|
|
suite.Require().NoError(err)
|
|
|
|
found := false
|
|
|
|
for _, fi := range filesFixture {
|
|
if fi.Path[1:] == hdr.Name {
|
|
found = true
|
|
pathsSeen[fi.Path] = struct{}{}
|
|
|
|
switch {
|
|
case fi.Mode&os.ModeSymlink != 0:
|
|
suite.Require().Equal(string(fi.Contents), hdr.Linkname)
|
|
case fi.Size > 0:
|
|
suite.Require().Len(contents, fi.Size)
|
|
case fi.Contents != nil:
|
|
suite.Require().EqualValues(fi.Contents, contents)
|
|
default:
|
|
suite.Require().Len(contents, 0)
|
|
}
|
|
}
|
|
}
|
|
|
|
suite.Require().True(found, "file %q", hdr.Name)
|
|
}
|
|
|
|
for _, fi := range filesFixture {
|
|
_, ok := pathsSeen[fi.Path]
|
|
suite.Require().True(ok, "path %q", fi.Path)
|
|
}
|
|
}
|
|
|
|
func (suite *TarSuite) TestArchiveFile() {
|
|
ch, err := archiver.Walker(context.Background(), filepath.Join(suite.tmpDir, "/usr/bin/cp"))
|
|
suite.Require().NoError(err)
|
|
|
|
var buf bytes.Buffer
|
|
|
|
err = archiver.Tar(context.Background(), ch, &buf)
|
|
suite.Require().NoError(err)
|
|
|
|
tr := tar.NewReader(&buf)
|
|
|
|
for {
|
|
hdr, err := tr.Next()
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
expectedContents := []byte("ELF EXECUTABLE IIRC")
|
|
|
|
suite.Require().EqualValues(hdr.Typeflag, tar.TypeReg)
|
|
suite.Require().EqualValues(hdr.Name, "cp")
|
|
suite.Require().EqualValues(hdr.Size, len(expectedContents))
|
|
|
|
contents, err := ioutil.ReadAll(tr)
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().Equal(expectedContents, contents)
|
|
}
|
|
}
|
|
|
|
func TestTarSuite(t *testing.T) {
|
|
suite.Run(t, new(TarSuite))
|
|
}
|