| /* |
| * |
| * Copyright 2020 gRPC 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 client |
| |
| import ( |
| "testing" |
| |
| v2xdspb "github.com/envoyproxy/go-control-plane/envoy/api/v2" |
| v2corepb "github.com/envoyproxy/go-control-plane/envoy/api/v2/core" |
| v3corepb "github.com/envoyproxy/go-control-plane/envoy/config/core/v3" |
| v2httppb "github.com/envoyproxy/go-control-plane/envoy/config/filter/network/http_connection_manager/v2" |
| v2listenerpb "github.com/envoyproxy/go-control-plane/envoy/config/listener/v2" |
| v3listenerpb "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3" |
| v3httppb "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3" |
| "github.com/golang/protobuf/proto" |
| anypb "github.com/golang/protobuf/ptypes/any" |
| "github.com/google/go-cmp/cmp" |
| "github.com/google/go-cmp/cmp/cmpopts" |
| "google.golang.org/grpc/xds/internal/version" |
| ) |
| |
| func (s) TestUnmarshalListener(t *testing.T) { |
| const ( |
| v2LDSTarget = "lds.target.good:2222" |
| v3LDSTarget = "lds.target.good:3333" |
| v2RouteConfigName = "v2RouteConfig" |
| v3RouteConfigName = "v3RouteConfig" |
| ) |
| |
| var ( |
| v2Lis = &anypb.Any{ |
| TypeUrl: version.V2ListenerURL, |
| Value: func() []byte { |
| cm := &v2httppb.HttpConnectionManager{ |
| RouteSpecifier: &v2httppb.HttpConnectionManager_Rds{ |
| Rds: &v2httppb.Rds{ |
| ConfigSource: &v2corepb.ConfigSource{ |
| ConfigSourceSpecifier: &v2corepb.ConfigSource_Ads{Ads: &v2corepb.AggregatedConfigSource{}}, |
| }, |
| RouteConfigName: v2RouteConfigName, |
| }, |
| }, |
| } |
| mcm, _ := proto.Marshal(cm) |
| lis := &v2xdspb.Listener{ |
| Name: v2LDSTarget, |
| ApiListener: &v2listenerpb.ApiListener{ |
| ApiListener: &anypb.Any{ |
| TypeUrl: version.V2HTTPConnManagerURL, |
| Value: mcm, |
| }, |
| }, |
| } |
| mLis, _ := proto.Marshal(lis) |
| return mLis |
| }(), |
| } |
| v3Lis = &anypb.Any{ |
| TypeUrl: version.V3ListenerURL, |
| Value: func() []byte { |
| cm := &v3httppb.HttpConnectionManager{ |
| RouteSpecifier: &v3httppb.HttpConnectionManager_Rds{ |
| Rds: &v3httppb.Rds{ |
| ConfigSource: &v3corepb.ConfigSource{ |
| ConfigSourceSpecifier: &v3corepb.ConfigSource_Ads{Ads: &v3corepb.AggregatedConfigSource{}}, |
| }, |
| RouteConfigName: v3RouteConfigName, |
| }, |
| }, |
| } |
| mcm, _ := proto.Marshal(cm) |
| lis := &v3listenerpb.Listener{ |
| Name: v3LDSTarget, |
| ApiListener: &v3listenerpb.ApiListener{ |
| ApiListener: &anypb.Any{ |
| TypeUrl: version.V3HTTPConnManagerURL, |
| Value: mcm, |
| }, |
| }, |
| } |
| mLis, _ := proto.Marshal(lis) |
| return mLis |
| }(), |
| } |
| ) |
| |
| tests := []struct { |
| name string |
| resources []*anypb.Any |
| wantUpdate map[string]ListenerUpdate |
| wantErr bool |
| }{ |
| { |
| name: "non-listener resource", |
| resources: []*anypb.Any{{TypeUrl: version.V3HTTPConnManagerURL}}, |
| wantErr: true, |
| }, |
| { |
| name: "badly marshaled listener resource", |
| resources: []*anypb.Any{ |
| { |
| TypeUrl: version.V3ListenerURL, |
| Value: func() []byte { |
| lis := &v3listenerpb.Listener{ |
| Name: v3LDSTarget, |
| ApiListener: &v3listenerpb.ApiListener{ |
| ApiListener: &anypb.Any{ |
| TypeUrl: version.V3HTTPConnManagerURL, |
| Value: []byte{1, 2, 3, 4}, |
| }, |
| }, |
| } |
| mLis, _ := proto.Marshal(lis) |
| return mLis |
| }(), |
| }, |
| }, |
| wantErr: true, |
| }, |
| { |
| name: "empty resource list", |
| }, |
| { |
| name: "v2 listener resource", |
| resources: []*anypb.Any{v2Lis}, |
| wantUpdate: map[string]ListenerUpdate{ |
| v2LDSTarget: {RouteConfigName: v2RouteConfigName}, |
| }, |
| }, |
| { |
| name: "v3 listener resource", |
| resources: []*anypb.Any{v3Lis}, |
| wantUpdate: map[string]ListenerUpdate{ |
| v3LDSTarget: {RouteConfigName: v3RouteConfigName}, |
| }, |
| }, |
| { |
| name: "multiple listener resources", |
| resources: []*anypb.Any{v2Lis, v3Lis}, |
| wantUpdate: map[string]ListenerUpdate{ |
| v2LDSTarget: {RouteConfigName: v2RouteConfigName}, |
| v3LDSTarget: {RouteConfigName: v3RouteConfigName}, |
| }, |
| }, |
| } |
| |
| for _, test := range tests { |
| t.Run(test.name, func(t *testing.T) { |
| update, err := UnmarshalListener(test.resources, nil) |
| if ((err != nil) != test.wantErr) || !cmp.Equal(update, test.wantUpdate, cmpopts.EquateEmpty()) { |
| t.Errorf("UnmarshalListener(%v) = (%v, %v) want (%v, %v)", test.resources, update, err, test.wantUpdate, test.wantErr) |
| } |
| }) |
| } |
| } |