All checks were successful
Test / Create distribution (push) Successful in 32s
Test / Sandbox (push) Successful in 2m7s
Test / Hakurei (push) Successful in 3m7s
Test / Hpkg (push) Successful in 3m50s
Test / Sandbox (race detector) (push) Successful in 4m17s
Test / Hakurei (race detector) (push) Successful in 5m3s
Test / Flake checks (push) Successful in 1m27s
This allows adapter structs to use the same field names as Op structs. Signed-off-by: Ophestra <cat@gensokyo.uk>
67 lines
1.5 KiB
Go
67 lines
1.5 KiB
Go
package hst_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"hakurei.app/container"
|
|
"hakurei.app/hst"
|
|
)
|
|
|
|
func TestFSBind(t *testing.T) {
|
|
checkFs(t, []fsTestCase{
|
|
{"nil", (*hst.FSBind)(nil), false, nil, nil, nil, "<invalid>"},
|
|
|
|
{"full", &hst.FSBind{
|
|
Target: m("/dev"),
|
|
Source: m("/mnt/dev"),
|
|
Optional: true,
|
|
Device: true,
|
|
}, true, container.Ops{&container.BindMountOp{
|
|
Source: m("/mnt/dev"),
|
|
Target: m("/dev"),
|
|
Flags: container.BindWritable | container.BindDevice | container.BindOptional,
|
|
}}, m("/dev"), ms("/mnt/dev"),
|
|
"d+/mnt/dev:/dev"},
|
|
|
|
{"full write dev", &hst.FSBind{
|
|
Target: m("/dev"),
|
|
Source: m("/mnt/dev"),
|
|
Write: true,
|
|
Device: true,
|
|
}, true, container.Ops{&container.BindMountOp{
|
|
Source: m("/mnt/dev"),
|
|
Target: m("/dev"),
|
|
Flags: container.BindWritable | container.BindDevice,
|
|
}}, m("/dev"), ms("/mnt/dev"),
|
|
"d*/mnt/dev:/dev"},
|
|
|
|
{"full write", &hst.FSBind{
|
|
Target: m("/tmp"),
|
|
Source: m("/mnt/tmp"),
|
|
Write: true,
|
|
}, true, container.Ops{&container.BindMountOp{
|
|
Source: m("/mnt/tmp"),
|
|
Target: m("/tmp"),
|
|
Flags: container.BindWritable,
|
|
}}, m("/tmp"), ms("/mnt/tmp"),
|
|
"w*/mnt/tmp:/tmp"},
|
|
|
|
{"full no flags", &hst.FSBind{
|
|
Target: m("/etc"),
|
|
Source: m("/mnt/etc"),
|
|
}, true, container.Ops{&container.BindMountOp{
|
|
Source: m("/mnt/etc"),
|
|
Target: m("/etc"),
|
|
}}, m("/etc"), ms("/mnt/etc"),
|
|
"*/mnt/etc:/etc"},
|
|
|
|
{"nil dst", &hst.FSBind{
|
|
Source: m("/"),
|
|
}, true, container.Ops{&container.BindMountOp{
|
|
Source: m("/"),
|
|
Target: m("/"),
|
|
}}, m("/"), ms("/"),
|
|
"*/"},
|
|
})
|
|
}
|