-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jesse Haka <haka.jesse@gmail.com>
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Copyright Envoy Gateway Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// The full text of the Apache license is available in the LICENSE file at | ||
// the root of the repo. | ||
|
||
package translator | ||
|
||
import ( | ||
"testing" | ||
|
||
listenerv3 "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3" | ||
"github.com/envoyproxy/go-control-plane/pkg/wellknown" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/envoyproxy/gateway/internal/ir" | ||
) | ||
|
||
func TestPatchProxyProtocolFilter(t *testing.T) { | ||
type testCase struct { | ||
name string | ||
listener *listenerv3.Listener | ||
} | ||
|
||
irListener := &ir.HTTPListener{ | ||
EnableProxyProtocol: true, | ||
} | ||
|
||
testCases := []testCase{ | ||
{ | ||
name: "listener with proxy proto available already", | ||
listener: &listenerv3.Listener{ | ||
ListenerFilters: []*listenerv3.ListenerFilter{ | ||
{ | ||
Name: wellknown.ProxyProtocol, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: "listener with tls, append proxy proto", | ||
listener: &listenerv3.Listener{ | ||
ListenerFilters: []*listenerv3.ListenerFilter{ | ||
{ | ||
Name: wellknown.TLSInspector, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
patchProxyProtocolFilter(tc.listener, irListener) | ||
// proxy proto filter should be added always as first | ||
require.Equal(t, wellknown.ProxyProtocol, tc.listener.ListenerFilters[0].Name) | ||
}) | ||
} | ||
} |