2018-04-08 20:37:13 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
|
|
|
|
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 luarestywaf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
api "k8s.io/api/core/v1"
|
|
|
|
extensions "k8s.io/api/extensions/v1beta1"
|
|
|
|
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/ingress-nginx/internal/ingress/annotations/parser"
|
|
|
|
"k8s.io/ingress-nginx/internal/ingress/resolver"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParse(t *testing.T) {
|
|
|
|
luaRestyWAFAnnotation := parser.GetAnnotationWithPrefix("lua-resty-waf")
|
|
|
|
luaRestyWAFDebugAnnotation := parser.GetAnnotationWithPrefix("lua-resty-waf-debug")
|
2018-04-09 01:55:23 +00:00
|
|
|
luaRestyWAFIgnoredRuleSetsAnnotation := parser.GetAnnotationWithPrefix("lua-resty-waf-ignore-rulesets")
|
2018-10-20 04:06:05 +00:00
|
|
|
luaRestyWAFScoreThresholdAnnotation := parser.GetAnnotationWithPrefix("lua-resty-waf-score-threshold")
|
|
|
|
luaRestyWAFAllowUnknownContentTypesAnnotation := parser.GetAnnotationWithPrefix("lua-resty-waf-allow-unknown-content-types")
|
|
|
|
luaRestyWAFProcessMultipartBody := parser.GetAnnotationWithPrefix("lua-resty-waf-process-multipart-body")
|
2018-04-08 20:37:13 +00:00
|
|
|
|
|
|
|
ap := NewParser(&resolver.Mock{})
|
|
|
|
if ap == nil {
|
|
|
|
t.Fatalf("expected a parser.IngressAnnotation but returned nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
annotations map[string]string
|
|
|
|
expected *Config
|
|
|
|
}{
|
|
|
|
{nil, &Config{}},
|
|
|
|
{map[string]string{}, &Config{}},
|
|
|
|
|
2018-10-25 02:43:26 +00:00
|
|
|
{map[string]string{luaRestyWAFAnnotation: "active"}, &Config{Mode: "ACTIVE", Debug: false, IgnoredRuleSets: []string{}, ProcessMultipartBody: true}},
|
2018-04-09 12:19:13 +00:00
|
|
|
{map[string]string{luaRestyWAFDebugAnnotation: "true"}, &Config{Debug: false}},
|
2018-04-08 20:37:13 +00:00
|
|
|
|
2018-10-25 02:43:26 +00:00
|
|
|
{map[string]string{luaRestyWAFAnnotation: "active", luaRestyWAFDebugAnnotation: "true"}, &Config{Mode: "ACTIVE", Debug: true, IgnoredRuleSets: []string{}, ProcessMultipartBody: true}},
|
|
|
|
{map[string]string{luaRestyWAFAnnotation: "active", luaRestyWAFDebugAnnotation: "false"}, &Config{Mode: "ACTIVE", Debug: false, IgnoredRuleSets: []string{}, ProcessMultipartBody: true}},
|
|
|
|
{map[string]string{luaRestyWAFAnnotation: "inactive", luaRestyWAFDebugAnnotation: "true"}, &Config{Mode: "INACTIVE", Debug: true, IgnoredRuleSets: []string{}, ProcessMultipartBody: true}},
|
2018-04-09 01:55:23 +00:00
|
|
|
|
|
|
|
{map[string]string{
|
2018-10-20 04:06:05 +00:00
|
|
|
luaRestyWAFAnnotation: "active",
|
|
|
|
luaRestyWAFDebugAnnotation: "true",
|
|
|
|
luaRestyWAFIgnoredRuleSetsAnnotation: "ruleset1, ruleset2 ruleset3, another.ruleset",
|
|
|
|
luaRestyWAFScoreThresholdAnnotation: "10",
|
|
|
|
luaRestyWAFAllowUnknownContentTypesAnnotation: "true"},
|
2018-10-25 02:43:26 +00:00
|
|
|
&Config{Mode: "ACTIVE", Debug: true, IgnoredRuleSets: []string{"ruleset1", "ruleset2", "ruleset3", "another.ruleset"}, ScoreThreshold: 10, AllowUnknownContentTypes: true, ProcessMultipartBody: true}},
|
2018-04-09 12:19:13 +00:00
|
|
|
|
2018-10-25 02:43:26 +00:00
|
|
|
{map[string]string{luaRestyWAFAnnotation: "siMulate", luaRestyWAFDebugAnnotation: "true"}, &Config{Mode: "SIMULATE", Debug: true, IgnoredRuleSets: []string{}, ProcessMultipartBody: true}},
|
2018-04-09 12:19:13 +00:00
|
|
|
{map[string]string{luaRestyWAFAnnotation: "siMulateX", luaRestyWAFDebugAnnotation: "true"}, &Config{Debug: false}},
|
2018-10-05 04:24:37 +00:00
|
|
|
|
2018-10-20 04:06:05 +00:00
|
|
|
{map[string]string{luaRestyWAFAnnotation: "active", luaRestyWAFProcessMultipartBody: "false"}, &Config{Mode: "ACTIVE", ProcessMultipartBody: false, IgnoredRuleSets: []string{}}},
|
2018-04-08 20:37:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ing := &extensions.Ingress{
|
|
|
|
ObjectMeta: meta_v1.ObjectMeta{
|
|
|
|
Name: "foo",
|
|
|
|
Namespace: api.NamespaceDefault,
|
|
|
|
},
|
|
|
|
Spec: extensions.IngressSpec{},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testCases {
|
|
|
|
ing.SetAnnotations(testCase.annotations)
|
|
|
|
result, _ := ap.Parse(ing)
|
|
|
|
config := result.(*Config)
|
|
|
|
if !config.Equal(testCase.expected) {
|
|
|
|
t.Errorf("expected %v but returned %v, annotations: %s", testCase.expected, result, testCase.annotations)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|