-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy patheval_penalty_box_test.go
175 lines (162 loc) · 5.19 KB
/
eval_penalty_box_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
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
174
175
package appsec
import (
"context"
"encoding/json"
"errors"
"net/http"
"net/http/httptest"
"testing"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v10/pkg/session"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// Test get EvalPenaltyBox
func TestAppSec_GetEvalPenaltyBox(t *testing.T) {
result := GetPenaltyBoxResponse{}
respData := compactJSON(loadFixtureBytes("testdata/TestPenaltyBoxes/PenaltyBox.json"))
err := json.Unmarshal([]byte(respData), &result)
require.NoError(t, err)
tests := map[string]struct {
params GetPenaltyBoxRequest
responseStatus int
responseBody string
expectedPath string
expectedResponse *GetPenaltyBoxResponse
withError error
}{
"200 OK": {
params: GetPenaltyBoxRequest{
ConfigID: 43253,
Version: 15,
PolicyID: "AAAA_81230",
},
responseStatus: http.StatusOK,
responseBody: respData,
expectedPath: "/appsec/v1/configs/43253/versions/15/security-policies/AAAA_81230/eval-penalty-box",
expectedResponse: &result,
},
"500 internal server error": {
params: GetPenaltyBoxRequest{
ConfigID: 43253,
Version: 15,
PolicyID: "AAAA_81230",
},
responseStatus: http.StatusInternalServerError,
responseBody: `
{
"type": "internal_error",
"title": "Internal Server Error",
"detail": "Error fetching match target"
}`,
expectedPath: "/appsec/v1/configs/43253/versions/15/security-policies/AAAA_81230/eval-penalty-box",
withError: &Error{
Type: "internal_error",
Title: "Internal Server Error",
Detail: "Error fetching match target",
StatusCode: http.StatusInternalServerError,
},
},
}
for name, test := range tests {
t.Run(name, func(t *testing.T) {
mockServer := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, test.expectedPath, r.URL.String())
assert.Equal(t, http.MethodGet, r.Method)
w.WriteHeader(test.responseStatus)
_, err := w.Write([]byte(test.responseBody))
assert.NoError(t, err)
}))
client := mockAPIClient(t, mockServer)
result, err := client.GetEvalPenaltyBox(context.Background(), test.params)
if test.withError != nil {
assert.True(t, errors.Is(err, test.withError), "want: %s; got: %s", test.withError, err)
return
}
require.NoError(t, err)
assert.Equal(t, test.expectedResponse, result)
})
}
}
// Test Update EvalPenaltyBox.
func TestAppSec_UpdateEvalPenaltyBox(t *testing.T) {
result := UpdatePenaltyBoxResponse{}
respData := compactJSON(loadFixtureBytes("testdata/TestPenaltyBoxes/PenaltyBox.json"))
err := json.Unmarshal([]byte(respData), &result)
require.NoError(t, err)
req := UpdatePenaltyBoxRequest{}
reqData := compactJSON(loadFixtureBytes("testdata/TestPenaltyBoxes/PenaltyBox.json"))
err = json.Unmarshal([]byte(reqData), &req)
require.NoError(t, err)
tests := map[string]struct {
params UpdatePenaltyBoxRequest
responseStatus int
responseBody string
expectedPath string
expectedResponse *UpdatePenaltyBoxResponse
withError error
headers http.Header
}{
"200 Success": {
params: UpdatePenaltyBoxRequest{
ConfigID: 43253,
Version: 15,
PolicyID: "AAAA_81230",
PenaltyBoxProtection: false,
Action: string(ActionTypeDeny),
},
headers: http.Header{
"Content-Type": []string{"application/json;charset=UTF-8"},
},
responseStatus: http.StatusCreated,
responseBody: respData,
expectedResponse: &result,
expectedPath: "/appsec/v1/configs/43253/versions/15/security-policies/AAAA_81230/eval-penalty-box",
},
"500 internal server error": {
params: UpdatePenaltyBoxRequest{
ConfigID: 43253,
Version: 15,
PolicyID: "AAAA_81230",
PenaltyBoxProtection: true,
Action: string(ActionTypeDeny),
},
responseStatus: http.StatusInternalServerError,
responseBody: `
{
"type": "internal_error",
"title": "Internal Server Error",
"detail": "Error creating zone"
}`,
expectedPath: "/appsec/v1/configs/43253/versions/15/security-policies/AAAA_81230/eval-penalty-box",
withError: &Error{
Type: "internal_error",
Title: "Internal Server Error",
Detail: "Error creating zone",
StatusCode: http.StatusInternalServerError,
},
},
}
for name, test := range tests {
t.Run(name, func(t *testing.T) {
mockServer := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodPut, r.Method)
w.WriteHeader(test.responseStatus)
if len(test.responseBody) > 0 {
_, err := w.Write([]byte(test.responseBody))
assert.NoError(t, err)
}
}))
client := mockAPIClient(t, mockServer)
result, err := client.UpdateEvalPenaltyBox(
session.ContextWithOptions(
context.Background(),
session.WithContextHeaders(test.headers)), test.params)
if test.withError != nil {
assert.True(t, errors.Is(err, test.withError), "want: %s; got: %s", test.withError, err)
return
}
require.NoError(t, err)
assert.Equal(t, test.expectedResponse, result)
})
}
}