mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
dafeeac4fd
Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn>
55 lines
1.6 KiB
Go
55 lines
1.6 KiB
Go
package plugin
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
)
|
|
|
|
func TestValidatePrivileges(t *testing.T) {
|
|
testData := map[string]struct {
|
|
requiredPrivileges types.PluginPrivileges
|
|
privileges types.PluginPrivileges
|
|
result bool
|
|
}{
|
|
"diff-len": {
|
|
requiredPrivileges: []types.PluginPrivilege{
|
|
{"Privilege1", "Description", []string{"abc", "def", "ghi"}},
|
|
},
|
|
privileges: []types.PluginPrivilege{
|
|
{"Privilege1", "Description", []string{"abc", "def", "ghi"}},
|
|
{"Privilege2", "Description", []string{"123", "456", "789"}},
|
|
},
|
|
result: false,
|
|
},
|
|
"diff-value": {
|
|
requiredPrivileges: []types.PluginPrivilege{
|
|
{"Privilege1", "Description", []string{"abc", "def", "GHI"}},
|
|
{"Privilege2", "Description", []string{"123", "456", "***"}},
|
|
},
|
|
privileges: []types.PluginPrivilege{
|
|
{"Privilege1", "Description", []string{"abc", "def", "ghi"}},
|
|
{"Privilege2", "Description", []string{"123", "456", "789"}},
|
|
},
|
|
result: false,
|
|
},
|
|
"diff-order-but-same-value": {
|
|
requiredPrivileges: []types.PluginPrivilege{
|
|
{"Privilege1", "Description", []string{"abc", "def", "GHI"}},
|
|
{"Privilege2", "Description", []string{"123", "456", "789"}},
|
|
},
|
|
privileges: []types.PluginPrivilege{
|
|
{"Privilege2", "Description", []string{"123", "456", "789"}},
|
|
{"Privilege1", "Description", []string{"GHI", "abc", "def"}},
|
|
},
|
|
result: true,
|
|
},
|
|
}
|
|
|
|
for key, data := range testData {
|
|
err := validatePrivileges(data.requiredPrivileges, data.privileges)
|
|
if (err == nil) != data.result {
|
|
t.Fatalf("Test item %s expected result to be %t, got %t", key, data.result, (err == nil))
|
|
}
|
|
}
|
|
}
|