mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
|
package daemon
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/docker/docker/runconfig"
|
||
|
)
|
||
|
|
||
|
func TestParseSecurityOpt(t *testing.T) {
|
||
|
container := &Container{}
|
||
|
config := &runconfig.Config{}
|
||
|
|
||
|
// test apparmor
|
||
|
config.SecurityOpt = []string{"apparmor:test_profile"}
|
||
|
if err := parseSecurityOpt(container, config); err != nil {
|
||
|
t.Fatalf("Unexpected parseSecurityOpt error: %v", err)
|
||
|
}
|
||
|
if container.AppArmorProfile != "test_profile" {
|
||
|
t.Fatalf("Unexpected AppArmorProfile, expected: \"test_profile\", got %q", container.AppArmorProfile)
|
||
|
}
|
||
|
|
||
|
// test valid label
|
||
|
config.SecurityOpt = []string{"label:user:USER"}
|
||
|
if err := parseSecurityOpt(container, config); err != nil {
|
||
|
t.Fatalf("Unexpected parseSecurityOpt error: %v", err)
|
||
|
}
|
||
|
|
||
|
// test invalid label
|
||
|
config.SecurityOpt = []string{"label"}
|
||
|
if err := parseSecurityOpt(container, config); err == nil {
|
||
|
t.Fatal("Expected parseSecurityOpt error, got nil")
|
||
|
}
|
||
|
|
||
|
// test invalid opt
|
||
|
config.SecurityOpt = []string{"test"}
|
||
|
if err := parseSecurityOpt(container, config); err == nil {
|
||
|
t.Fatal("Expected parseSecurityOpt error, got nil")
|
||
|
}
|
||
|
}
|