2015-07-12 04:33:30 -04:00
|
|
|
package opts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-12-21 15:06:46 -05:00
|
|
|
"github.com/docker/go-units"
|
2015-07-12 04:33:30 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestUlimitOpt(t *testing.T) {
|
2015-12-21 15:06:46 -05:00
|
|
|
ulimitMap := map[string]*units.Ulimit{
|
2015-07-12 04:33:30 -04:00
|
|
|
"nofile": {"nofile", 1024, 512},
|
|
|
|
}
|
|
|
|
|
2015-05-01 10:00:43 -04:00
|
|
|
ulimitOpt := NewUlimitOpt(&ulimitMap)
|
2015-07-12 04:33:30 -04:00
|
|
|
|
|
|
|
expected := "[nofile=512:1024]"
|
|
|
|
if ulimitOpt.String() != expected {
|
|
|
|
t.Fatalf("Expected %v, got %v", expected, ulimitOpt)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Valid ulimit append to opts
|
|
|
|
if err := ulimitOpt.Set("core=1024:1024"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalid ulimit type returns an error and do not append to opts
|
|
|
|
if err := ulimitOpt.Set("notavalidtype=1024:1024"); err == nil {
|
|
|
|
t.Fatalf("Expected error on invalid ulimit type")
|
|
|
|
}
|
|
|
|
expected = "[nofile=512:1024 core=1024:1024]"
|
|
|
|
expected2 := "[core=1024:1024 nofile=512:1024]"
|
|
|
|
result := ulimitOpt.String()
|
|
|
|
if result != expected && result != expected2 {
|
|
|
|
t.Fatalf("Expected %v or %v, got %v", expected, expected2, ulimitOpt)
|
|
|
|
}
|
|
|
|
|
|
|
|
// And test GetList
|
|
|
|
ulimits := ulimitOpt.GetList()
|
|
|
|
if len(ulimits) != 2 {
|
|
|
|
t.Fatalf("Expected a ulimit list of 2, got %v", ulimits)
|
|
|
|
}
|
|
|
|
}
|