1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
// Copyright (c) Contributors to the Apptainer project, established as
// Apptainer a Series of LF Projects LLC.
// For website terms of use, trademark policy, privacy policy and other
// project policies see https://lfprojects.org/policies
// Copyright (c) 2018-2019, Sylabs Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
package capabilities
import (
"sort"
"testing"
)
func TestSplit(t *testing.T) {
testCaps := []struct {
caps string
length int
}{
{
caps: "chown, sys_admin",
length: 2,
},
{
caps: "CAP_, sys_admin ",
length: 1,
},
{
caps: "cap_sys_admin, cap_chown",
length: 2,
},
{
caps: "CAP_sys_admin,CHOWN",
length: 2,
},
{
caps: "chown, CAP_ALL",
length: len(Map),
},
{
caps: "cap_all",
length: len(Map),
},
{
caps: "",
length: 0,
},
}
for _, tc := range testCaps {
caps, _ := Split(tc.caps)
if len(caps) != tc.length {
t.Errorf("should have returned %d as capability len instead of %d", tc.length, len(caps))
}
}
}
func TestRemoveDuplicated(t *testing.T) {
tt := []struct {
name string
in []string
expect []string
}{
{
name: "no duplicates",
in: []string{
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
expect: []string{
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
},
{
name: "single duplicate",
in: []string{
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_DAC_OVERRIDE",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
expect: []string{
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
},
{
name: "two duplicates",
in: []string{
"CAP_KILL",
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_DAC_OVERRIDE",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
expect: []string{
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
},
{
name: "not once duplicated",
in: []string{
"CAP_DAC_OVERRIDE",
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_DAC_OVERRIDE",
"CAP_DAC_OVERRIDE",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
"CAP_DAC_OVERRIDE",
},
expect: []string{
"CAP_CHOWN",
"CAP_DAC_OVERRIDE",
"CAP_DAC_READ_SEARCH",
"CAP_FOWNER",
"CAP_FSETID",
"CAP_KILL",
"CAP_SETGID",
},
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
actual := RemoveDuplicated(tc.in)
sort.Strings(tc.expect)
sort.Strings(actual)
if len(tc.expect) != len(actual) {
t.Fatalf("expectected slice of len=%d, got len=%d", len(tc.expect), len(actual))
}
for i := range tc.expect {
if tc.expect[i] != actual[i] {
t.Fatalf("expected %s at position %d, but got %s", tc.expect[i], i, actual[i])
}
}
})
}
}
|