forked from ghostunnel/ghostunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader_test.go
133 lines (112 loc) · 3.57 KB
/
loader_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
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
/*-
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package policy
import (
"context"
"io/ioutil"
"log"
"os"
"runtime"
"testing"
"github.com/open-policy-agent/opa/rego"
"github.com/stretchr/testify/assert"
)
var allowFoobarPolicy string = `
package policy
import input
default allow := false
allow {
input.name == "foobar"
}
`
var allowAllPolicy string = `
package policy
import input
default allow := true
`
func TestPolicyInitFail(t *testing.T) {
p, err := LoadFromFile("invalid", "invalid")
assert.Nil(t, p, "policy should be nil")
assert.NotNil(t, err, "error should not be nil")
}
func TestPolicyReloadFail(t *testing.T) {
if runtime.GOOS == "windows" {
// Skip on Windows due to temp file handling issues
t.Skip()
}
f, err := ioutil.TempFile("", "policy")
assert.Nil(t, err, "temp file error")
defer os.Remove(f.Name())
_, err = f.WriteAt([]byte(allowFoobarPolicy), 0)
_ = f.Sync()
assert.Nil(t, err, "temp file write error")
p, err := LoadFromFile(f.Name(), "data.policy.allow")
assert.NotNil(t, p, "policy was unexpectedly nil")
assert.Nil(t, err, "error loading policy")
if err != nil {
t.Fatal(err)
}
// Remove + reload to test failure
os.Remove(f.Name())
err = p.Reload()
assert.NotNil(t, err, "error should not be nil")
}
func TestPolicyReloading(t *testing.T) {
if runtime.GOOS == "windows" {
// Skip on Windows due to temp file handling issues
t.Skip()
}
f, err := ioutil.TempFile("", "policy")
assert.Nil(t, err, "temp file error")
defer os.Remove(f.Name())
_, err = f.WriteAt([]byte(allowFoobarPolicy), 0)
_ = f.Sync()
assert.Nil(t, err, "temp file write error")
p, err := LoadFromFile(f.Name(), "data.policy.allow")
assert.NotNil(t, p, "policy was unexpectedly nil")
assert.Nil(t, err, "error loading policy")
if err != nil {
t.Fatal(err)
}
input := map[string]interface{}{"name": "foobar"}
results, err := p.Eval(context.Background(), rego.EvalInput(input))
assert.Nil(t, err, "error evaluating policy")
if !results.Allowed() {
log.Fatal("input foobar not allowed on original policy, though it should've been")
}
input = map[string]interface{}{"name": "barfoo"}
results, err = p.Eval(context.Background(), rego.EvalInput(input))
assert.Nil(t, err, "error evaluating policy")
if results.Allowed() {
log.Fatal("input barfoo allowed on original policy, though it should not have been")
}
_ = f.Truncate(0)
_, err = f.WriteAt([]byte(allowAllPolicy), 0)
_ = f.Sync()
assert.Nil(t, err, "temp file write error")
err = p.Reload()
assert.Nil(t, err, "error reloading policy")
input = map[string]interface{}{"name": "foobar"}
results, err = p.Eval(context.Background(), rego.EvalInput(input))
assert.Nil(t, err, "error evaluating policy")
if !results.Allowed() {
log.Fatal("input foobar not allowed on updated policy, though it should've been")
}
input = map[string]interface{}{"name": "barfoo"}
results, err = p.Eval(context.Background(), rego.EvalInput(input))
assert.Nil(t, err, "error evaluating policy")
if !results.Allowed() {
log.Fatal("input barfoo not allowed on updated policy, though it should've been")
}
}