Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions api/adc/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,15 @@ type ResponseRewriteConfig struct {
Filters []map[string]string `json:"filters,omitempty" yaml:"filters,omitempty"`
}

type FaultInjectionConfig struct {
Abort *FaultInjectionAbortConfig `json:"abort,omitempty" yaml:"abort,omitempty"`
}

type FaultInjectionAbortConfig struct {
HTTPStatus int `json:"http_status" yaml:"http_status"`
Vars [][]expr.Expr `json:"vars,omitempty" yaml:"vars,omitempty"`
}

type ResponseHeaders struct {
Set map[string]string `json:"set,omitempty" yaml:"set,omitempty"`
Add []string `json:"add,omitempty" yaml:"add,omitempty"`
Expand Down
64 changes: 64 additions & 0 deletions internal/adc/translator/annotations/plugins/fault-injection.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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 plugins

import (
"net/http"

"github.com/incubator4/go-resty-expr/expr"

adctypes "github.com/apache/apisix-ingress-controller/api/adc"
"github.com/apache/apisix-ingress-controller/internal/adc/translator/annotations"
)

type FaultInjection struct{}

// FaultInjection to APISIX fault-injection plugin.
func NewFaultInjectionHandler() PluginAnnotationsHandler {
return &FaultInjection{}
}

func (h FaultInjection) PluginName() string {
return "fault-injection"
}

func (f FaultInjection) Handle(e annotations.Extractor) (any, error) {
var plugin adctypes.FaultInjectionConfig

allowMethods := e.GetStringsAnnotation(annotations.AnnotationsHttpAllowMethods)
blockMethods := e.GetStringsAnnotation(annotations.AnnotationsHttpBlockMethods)
if len(allowMethods) == 0 && len(blockMethods) == 0 {
return nil, nil
}
abort := &adctypes.FaultInjectionAbortConfig{
HTTPStatus: http.StatusMethodNotAllowed,
}
if len(allowMethods) > 0 {
abort.Vars = [][]expr.Expr{{
expr.StringExpr("request_method").Not().In(
expr.ArrayExpr(expr.ExprArrayFromStrings(allowMethods)...),
),
}}
} else {
abort.Vars = [][]expr.Expr{{
expr.StringExpr("request_method").In(
expr.ArrayExpr(expr.ExprArrayFromStrings(blockMethods)...),
),
}}
}
plugin.Abort = abort
return &plugin, nil
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 plugins

import (
"encoding/json"
"testing"

"github.com/stretchr/testify/assert"

"github.com/apache/apisix-ingress-controller/internal/adc/translator/annotations"
)

func TestFaultInjectionHttpAllowMethods(t *testing.T) {
handler := NewFaultInjectionHandler()
assert.Equal(t, "fault-injection", handler.PluginName())

extractor := annotations.NewExtractor(map[string]string{
annotations.AnnotationsHttpAllowMethods: "GET,POST",
})

plugin, err := handler.Handle(extractor)
assert.NoError(t, err)
assert.NotNil(t, plugin)

data, err := json.Marshal(plugin)
assert.NoError(t, err)
assert.JSONEq(t, `{"abort":{"http_status":405,"vars":[[["request_method","!","in",["GET","POST"]]]]}}`, string(data))
}

func TestFaultInjectionHttpBlockMethods(t *testing.T) {
handler := NewFaultInjectionHandler()
assert.Equal(t, "fault-injection", handler.PluginName())

extractor := annotations.NewExtractor(map[string]string{
annotations.AnnotationsHttpBlockMethods: "GET,POST",
})

plugin, err := handler.Handle(extractor)
assert.NoError(t, err)
assert.NotNil(t, plugin)

data, err := json.Marshal(plugin)
assert.NoError(t, err)
assert.JSONEq(t, `{"abort":{"http_status":405,"vars":[[["request_method","in",["GET","POST"]]]]}}`, string(data))
}
68 changes: 68 additions & 0 deletions internal/adc/translator/annotations/plugins/plugins.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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 plugins

import (
logf "sigs.k8s.io/controller-runtime/pkg/log"

adctypes "github.com/apache/apisix-ingress-controller/api/adc"
"github.com/apache/apisix-ingress-controller/internal/adc/translator/annotations"
)

// Handler abstracts the behavior so that the apisix-ingress-controller knows
// how to parse some annotations and convert them to APISIX plugins.
type PluginAnnotationsHandler interface {
// Handle parses the target annotation and converts it to the type-agnostic structure.
// The return value might be nil since some features have an explicit switch, users should
// judge whether Handle is failed by the second error value.
Handle(annotations.Extractor) (any, error)
// PluginName returns a string which indicates the target plugin name in APISIX.
PluginName() string
}

var (
log = logf.Log.WithName("annotations").WithName("plugins").WithName("parser")

handlers = []PluginAnnotationsHandler{
NewRedirectHandler(),
NewCorsHandler(),
NewCSRFHandler(),
NewFaultInjectionHandler(),
}
)

type plugins struct{}

func NewParser() annotations.IngressAnnotationsParser {
return &plugins{}
}

func (p *plugins) Parse(e annotations.Extractor) (any, error) {
plugins := make(adctypes.Plugins)
for _, handler := range handlers {
out, err := handler.Handle(e)
if err != nil {
log.Error(err, "Failed to handle annotation", "handler", handler.PluginName())
continue
}
if out != nil {
plugins[handler.PluginName()] = out
}
}
if len(plugins) > 0 {
return plugins, nil
}
return nil, nil
}
Loading