mirror of
https://github.com/siderolabs/talos.git
synced 2026-05-04 20:06:18 +02:00
* Save image in OCI format, so imager can either use as OCI input or from a registry. * Support caching layers to a path, so subsequent runs are faster Signed-off-by: Noel Georgi <git@frezbo.dev>
72 lines
1.7 KiB
Go
72 lines
1.7 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 filemap_test
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/siderolabs/talos/pkg/imager/filemap"
|
|
)
|
|
|
|
func TestFileMap(t *testing.T) {
|
|
tempDir := t.TempDir()
|
|
|
|
assert.NoError(t, os.MkdirAll(filepath.Join(tempDir, "foo/a/b"), 0o755))
|
|
assert.NoError(t, os.MkdirAll(filepath.Join(tempDir, "foo/c"), 0o755))
|
|
assert.NoError(t, os.MkdirAll(filepath.Join(tempDir, "foo/d"), 0o750))
|
|
|
|
assert.NoError(t, os.WriteFile(filepath.Join(tempDir, "foo/a/b/normal"), nil, 0o644))
|
|
assert.NoError(t, os.WriteFile(filepath.Join(tempDir, "foo/c/executable"), []byte("world"), 0o755))
|
|
|
|
artifacts, err := filemap.Walk(tempDir, "")
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(
|
|
t,
|
|
[]filemap.File{
|
|
{
|
|
ImagePath: "foo",
|
|
SourcePath: filepath.Join(tempDir, "foo"),
|
|
ImageMode: 0o755,
|
|
},
|
|
{
|
|
ImagePath: "foo/a",
|
|
SourcePath: filepath.Join(tempDir, "foo/a"),
|
|
ImageMode: 0o755,
|
|
},
|
|
{
|
|
ImagePath: "foo/a/b",
|
|
SourcePath: filepath.Join(tempDir, "foo/a/b"),
|
|
ImageMode: 0o755,
|
|
},
|
|
{
|
|
ImagePath: "foo/a/b/normal",
|
|
SourcePath: filepath.Join(tempDir, "foo/a/b/normal"),
|
|
ImageMode: 0o644,
|
|
},
|
|
{
|
|
ImagePath: "foo/c",
|
|
SourcePath: filepath.Join(tempDir, "foo/c"),
|
|
ImageMode: 0o755,
|
|
},
|
|
{
|
|
ImagePath: "foo/c/executable",
|
|
SourcePath: filepath.Join(tempDir, "foo/c/executable"),
|
|
ImageMode: 0o755,
|
|
},
|
|
{
|
|
ImagePath: "foo/d",
|
|
SourcePath: filepath.Join(tempDir, "foo/d"),
|
|
ImageMode: 0o750,
|
|
},
|
|
},
|
|
artifacts,
|
|
)
|
|
}
|