-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupstream_test.go
141 lines (128 loc) · 2.97 KB
/
upstream_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
133
134
135
136
137
138
139
140
141
package multiproxy
import (
"github.com/stretchr/testify/assert"
"net/http"
"net/url"
"testing"
)
func canService(host string, path string, upstream *Upstream) bool {
req := http.Request{
URL: &url.URL{
Host: host,
Path: path,
},
Host: host,
}
return upstream.CanServiceRequest(&req)
}
func TestCanServiceRequest_HealthyHostMatch(t *testing.T) {
m := Match{
Host: "example.com",
Path: "",
}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.True(t, canService("example.com", "/", upstream))
}
func TestCanServiceRequest_HealthyHostAndPathMatch(t *testing.T) {
m := Match{
Host: "example.com",
Path: "/path",
}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.True(t, canService("example.com", "/path/resource", upstream))
}
func TestCanServiceRequest_HealthyHostNoPathMatch(t *testing.T) {
m := Match{
Host: "example.com",
Path: "/path",
}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.False(t, canService("example.com", "/otherpath", upstream))
}
func TestCanServiceRequest_UnhealthyUpstream(t *testing.T) {
m := Match{
Host: "example.com",
Path: "",
}
upstream := &Upstream{
Matches: []Match{m},
Healthy: false,
}
assert.False(t, canService("example.com", "/", upstream))
}
func TestCanServiceRequest_NoHostMatch(t *testing.T) {
m := Match{
Host: "example.com",
Path: "",
}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.False(t, canService("notexample.com", "/", upstream))
}
func TestCanServiceRequest_EmptyMatches(t *testing.T) {
upstream := &Upstream{
Matches: []Match{},
Healthy: true,
}
assert.False(t, canService("example.com", "/", upstream))
}
func TestCanServiceRequest_MultipleMatches(t *testing.T) {
m1 := Match{
Host: "example.com",
Path: "/path1",
}
m2 := Match{
Host: "example.org",
Path: "/path2",
}
upstream := &Upstream{
Matches: []Match{m1, m2},
Healthy: true,
}
assert.True(t, canService("example.org", "/path2/resource", upstream))
}
func TestPathMatches_EmptyPath(t *testing.T) {
m := Match{Path: ""}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.True(t, canService("anyhost.com", "/anypath", upstream))
}
func TestPathMatches_NonEmptyPath(t *testing.T) {
m := Match{Path: "/specific"}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.True(t, canService("anyhost.com", "/specific/resource", upstream))
assert.False(t, canService("anyhost.com", "/otherpath", upstream))
}
func TestHostMatches_EmptyHost(t *testing.T) {
m := Match{Host: ""}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.True(t, canService("anyhost.com", "/anypath", upstream))
}
func TestHostMatches_NonEmptyHost(t *testing.T) {
m := Match{Host: "example.com"}
upstream := &Upstream{
Matches: []Match{m},
Healthy: true,
}
assert.True(t, canService("example.com", "/anypath", upstream))
assert.False(t, canService("notexample.com", "/anypath", upstream))
}