-
Notifications
You must be signed in to change notification settings - Fork 333
/
Copy pathgateway_test.go
132 lines (120 loc) · 3.83 KB
/
gateway_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
Copyright 2024 The Aibrix Team.
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 gateway
import (
"os"
"testing"
configPb "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
"github.com/stretchr/testify/assert"
"github.com/vllm-project/aibrix/pkg/cache"
routing "github.com/vllm-project/aibrix/pkg/plugins/gateway/algorithms"
"github.com/vllm-project/aibrix/pkg/utils"
)
func Test_ValidateRoutingStrategy(t *testing.T) {
var tests = []struct {
routingStrategy string
message string
expectedValidation bool
}{
{
routingStrategy: "",
message: "empty routing strategy",
expectedValidation: false,
},
{
routingStrategy: " ",
message: "spaced routing strategy",
expectedValidation: false,
},
{
routingStrategy: "random",
message: "random routing strategy",
expectedValidation: true,
},
{
routingStrategy: "least-request",
message: "least-request routing strategy",
expectedValidation: true,
},
{
routingStrategy: "rrandom",
message: "misspell routing strategy",
expectedValidation: false,
},
}
cache.InitForTest()
routing.Init()
for _, tt := range tests {
_, currentValidation := routing.Validate(tt.routingStrategy)
assert.Equal(t, tt.expectedValidation, currentValidation, tt.message)
}
}
func TestGetRoutingStrategy(t *testing.T) {
var tests = []struct {
headers []*configPb.HeaderValue
setEnvRoutingStrategy bool
envRoutingStrategy string
expectedStrategy string
expectedEnabled bool
message string
}{
{
headers: []*configPb.HeaderValue{},
setEnvRoutingStrategy: false,
expectedStrategy: "",
expectedEnabled: false,
message: "no routing strategy in headers or environment variable",
},
{
headers: []*configPb.HeaderValue{
{Key: "routing-strategy", RawValue: []byte("random")},
},
setEnvRoutingStrategy: false,
expectedStrategy: "random",
expectedEnabled: true,
message: "routing strategy from headers",
},
{
headers: []*configPb.HeaderValue{},
setEnvRoutingStrategy: true,
envRoutingStrategy: "random",
expectedStrategy: "random",
expectedEnabled: true,
message: "routing strategy from environment variable",
},
{
headers: []*configPb.HeaderValue{
{Key: "routing-strategy", RawValue: []byte("random")},
},
setEnvRoutingStrategy: true,
envRoutingStrategy: "least-request",
expectedStrategy: "random",
expectedEnabled: true,
message: "header routing strategy takes priority over environment variable",
},
}
for _, tt := range tests {
if tt.setEnvRoutingStrategy {
_ = os.Setenv("ROUTING_ALGORITHM", tt.envRoutingStrategy)
} else {
_ = os.Unsetenv("ROUTING_ALGORITHM")
}
// refresh default values, the process won't modify this environment variable during normal running
defaultRoutingStrategy, defaultRoutingStrategyEnabled = utils.LookupEnv(EnvRoutingAlgorithm)
routingStrategy, enabled := getRoutingStrategy(tt.headers)
assert.Equal(t, tt.expectedStrategy, routingStrategy, tt.message)
assert.Equal(t, tt.expectedEnabled, enabled, tt.message)
// Cleanup environment variable for next test
_ = os.Unsetenv("ROUTING_ALGORITHM")
}
}