-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathperm_check_test.go
55 lines (47 loc) · 1.23 KB
/
perm_check_test.go
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
package file
import (
"fmt"
"os"
"path/filepath"
"testing"
types "github.com/maticnetwork/heimdall/types/error"
"github.com/stretchr/testify/assert"
"github.com/tendermint/tendermint/libs/common"
)
func TestPermCheck(t *testing.T) {
t.Parallel()
tc := []struct {
filePath string
perm os.FileMode
validPerm os.FileMode
expErr error
msg string
}{
{
filePath: "/tmp/heimdall_test/test.json",
perm: 0777,
validPerm: 0600,
expErr: types.InvalidPermissionsError{File: "/tmp/heimdall_test/test.json", Perm: 0600},
msg: "test for invalid permission",
},
{
filePath: "/tmp/heimdall_test/test.json",
perm: 0600,
validPerm: 0600,
msg: "success",
},
}
for i, c := range tc {
// get path to UAT secrets file
caseMsg := fmt.Sprintf("for i: %v, case: %v", i, c.msg)
// set files for perm
err := common.EnsureDir(filepath.Dir(c.filePath), 0777)
assert.Nil(t, err, caseMsg)
_, err = os.OpenFile(c.filePath, os.O_CREATE, c.perm) // os.OpenFile creates the file if it is missing
assert.Nil(t, err, caseMsg)
// check file perm for secret file
err = PermCheck(c.filePath, c.validPerm)
assert.Equal(t, c.expErr, err)
os.Remove(c.filePath) // clean up
}
}