blob: 363134b7f7328343709e305e229b0f1a14aa05a0 [file] [log] [blame]
// Copyright Istio 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 extension
import (
"testing"
)
import (
envoy_config_core_v3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
extensionsv3 "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
"github.com/golang/protobuf/ptypes/wrappers"
"github.com/google/go-cmp/cmp"
"google.golang.org/protobuf/testing/protocmp"
"google.golang.org/protobuf/types/known/anypb"
extensions "istio.io/api/extensions/v1alpha1"
)
import (
"github.com/apache/dubbo-go-pixiu/pilot/pkg/model"
)
var (
someAuthNFilter = &model.WasmPluginWrapper{
Name: "someAuthNFilter",
Namespace: "dubbo-system",
ResourceName: "dubbo-system.someAuthNFilter",
WasmPlugin: &extensions.WasmPlugin{
Priority: &wrappers.Int64Value{Value: 1},
},
}
someAuthZFilter = &model.WasmPluginWrapper{
Name: "someAuthZFilter",
Namespace: "dubbo-system",
ResourceName: "dubbo-system.someAuthZFilter",
WasmPlugin: &extensions.WasmPlugin{
Priority: &wrappers.Int64Value{Value: 1000},
},
}
)
func TestInsertedExtensionConfigurations(t *testing.T) {
wasm, _ := anypb.New(&extensionsv3.Wasm{})
testCases := []struct {
name string
wasmPlugins map[extensions.PluginPhase][]*model.WasmPluginWrapper
names []string
expectedECs []*envoy_config_core_v3.TypedExtensionConfig
}{
{
name: "empty",
wasmPlugins: map[extensions.PluginPhase][]*model.WasmPluginWrapper{},
names: []string{someAuthNFilter.Name},
expectedECs: []*envoy_config_core_v3.TypedExtensionConfig{},
},
{
name: "authn",
wasmPlugins: map[extensions.PluginPhase][]*model.WasmPluginWrapper{
extensions.PluginPhase_AUTHN: {
someAuthNFilter,
someAuthZFilter,
},
},
names: []string{someAuthNFilter.Namespace + "." + someAuthNFilter.Name},
expectedECs: []*envoy_config_core_v3.TypedExtensionConfig{
{
Name: "dubbo-system.someAuthNFilter",
TypedConfig: wasm,
},
},
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
ecs := InsertedExtensionConfigurations(tc.wasmPlugins, tc.names, nil)
if diff := cmp.Diff(tc.expectedECs, ecs, protocmp.Transform()); diff != "" {
t.Fatal(diff)
}
})
}
}