aboutsummaryrefslogtreecommitdiff
path: root/pkg/specgen/specgen_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/specgen/specgen_test.go')
-rw-r--r--pkg/specgen/specgen_test.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkg/specgen/specgen_test.go b/pkg/specgen/specgen_test.go
new file mode 100644
index 000000000..8e00bd4b6
--- /dev/null
+++ b/pkg/specgen/specgen_test.go
@@ -0,0 +1,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)
+ }
+}