summaryrefslogtreecommitdiff
path: root/pkg/specgen/specgen_test.go
blob: 8e00bd4b6c673915e8e31091cacbb13d517a64eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package specgen

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestNewSpecGeneratorWithRootfs(t *testing.T) {
	tests := []struct {
		rootfs                string
		expectedRootfsOverlay bool
		expectedRootfs        string
	}{
		{"/root/a:b:O", true, "/root/a:b"},
		{"/root/a:b/c:O", true, "/root/a:b/c"},
		{"/root/a:b/c:", false, "/root/a:b/c:"},
		{"/root/a/b", false, "/root/a/b"},
	}
	for _, args := range tests {
		val := NewSpecGenerator(args.rootfs, true)
		assert.Equal(t, val.RootfsOverlay, args.rootfs)
		assert.Equal(t, val.Rootfs, args.rootfs)
	}
}