-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathcommon_integration_test.go
355 lines (295 loc) · 12.3 KB
/
common_integration_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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
package integration
import (
"crypto/tls"
"crypto/x509"
"encoding/json"
"fmt"
"io"
"math/rand"
"net/http"
"net/http/httptest"
"os"
"os/exec"
"path/filepath"
"strings"
"time"
nats "github.com/nats-io/nats.go"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gbytes"
. "github.com/onsi/gomega/gexec"
"gopkg.in/yaml.v3"
"code.cloudfoundry.org/gorouter/config"
"code.cloudfoundry.org/gorouter/mbus"
"code.cloudfoundry.org/gorouter/route"
"code.cloudfoundry.org/gorouter/test_util"
)
type testState struct {
// these get set by the constructor
cfg *config.Config
client *http.Client
routeServiceClient *http.Client
trustedExternalServiceHostname string
trustedExternalServiceTLS *tls.Config
trustedBackendServerCertSAN string
trustedBackendTLSConfig *tls.Config
untrustedBackendServerCertSAN string
untrustedBackendTLSConfig *tls.Config
trustedClientTLSConfig *tls.Config
trustedRouteServiceClientTLSConfig *tls.Config
// these get set when gorouter is started
tmpdir string
natsRunner *test_util.NATSRunner
gorouterSession *Session
mbusClient *nats.Conn
fakeMetron test_util.FakeMetron
}
func (s *testState) SetOnlyTrustClientCACertsTrue() {
s.cfg.OnlyTrustClientCACerts = true
trustedBackendCLientCertChain := test_util.CreateSignedCertWithRootCA(test_util.CertNames{CommonName: s.trustedBackendServerCertSAN})
s.cfg.ClientCACerts = string(trustedBackendCLientCertChain.CACertPEM)
s.trustedBackendTLSConfig = trustedBackendCLientCertChain.AsTLSConfig()
}
func NewTestState() *testState {
// TODO: don't hide so much behind these test_util methods
cfg, clientTLSConfig := test_util.SpecSSLConfig(test_util.NextAvailPort(), test_util.NextAvailPort(), test_util.NextAvailPort(), test_util.NextAvailPort(), test_util.NextAvailPort(), test_util.NextAvailPort(), test_util.NextAvailPort())
cfg.SkipSSLValidation = false
cfg.RouteServicesHairpinning = false
cfg.CipherString = "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384"
// TODO: why these magic numbers?
cfg.PruneStaleDropletsInterval = 2 * time.Second
cfg.DropletStaleThreshold = 10 * time.Second
cfg.StartResponseDelayInterval = 1 * time.Second
cfg.EndpointTimeout = 15 * time.Second
cfg.EndpointDialTimeout = 500 * time.Millisecond
cfg.DrainTimeout = 200 * time.Millisecond
cfg.DrainWait = 1 * time.Second
cfg.Backends.MaxConns = 10
cfg.LoadBalancerHealthyThreshold = 0
cfg.SuspendPruningIfNatsUnavailable = true
cfg.DisableKeepAlives = false
externalRouteServiceHostname := "external-route-service.localhost.routing.cf-app.com"
routeServiceKey, routeServiceCert := test_util.CreateKeyPair(externalRouteServiceHostname)
routeServiceTLSCert, err := tls.X509KeyPair(routeServiceCert, routeServiceKey)
Expect(err).ToNot(HaveOccurred())
browserToGorouterClientCertChain := test_util.CreateSignedCertWithRootCA(test_util.CertNames{})
cfg.CACerts = append(cfg.CACerts, string(browserToGorouterClientCertChain.CACertPEM))
cfg.CACerts = append(cfg.CACerts, string(routeServiceCert))
routeServiceToGorouterClientCertChain := test_util.CreateSignedCertWithRootCA(test_util.CertNames{})
cfg.CACerts = append(cfg.CACerts, string(routeServiceToGorouterClientCertChain.CACertPEM))
trustedBackendServerCertSAN := "some-trusted-backend.example.net"
backendCertChain := test_util.CreateSignedCertWithRootCA(test_util.CertNames{CommonName: trustedBackendServerCertSAN, SANs: test_util.SubjectAltNames{DNS: trustedBackendServerCertSAN}})
cfg.CACerts = append(cfg.CACerts, string(backendCertChain.CACertPEM))
gorouterToBackendsClientCertChain := test_util.CreateSignedCertWithRootCA(test_util.CertNames{CommonName: "gorouter", SANs: test_util.SubjectAltNames{DNS: "gorouter"}})
trustedBackendTLSConfig := backendCertChain.AsTLSConfig()
trustedBackendTLSConfig.ClientAuth = tls.RequireAndVerifyClientCert
trustedBackendTLSConfig.CipherSuites = []uint16{tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256}
untrustedBackendServerCertSAN := "some-trusted-backend.example.net"
untrustedBackendCLientCertChain := test_util.CreateSignedCertWithRootCA(test_util.CertNames{CommonName: untrustedBackendServerCertSAN, SANs: test_util.SubjectAltNames{DNS: untrustedBackendServerCertSAN}})
untrustedBackendTLSConfig := untrustedBackendCLientCertChain.AsTLSConfig()
cfg.CACerts = append(cfg.CACerts, string(untrustedBackendCLientCertChain.CACertPEM))
cfg.OnlyTrustClientCACerts = false
cfg.ClientCACerts = strings.Join(cfg.CACerts, "") + string(backendCertChain.CACertPEM)
// set Gorouter to use client certs
cfg.Backends.TLSPem = config.TLSPem{
CertChain: string(gorouterToBackendsClientCertChain.CertPEM),
PrivateKey: string(gorouterToBackendsClientCertChain.PrivKeyPEM),
}
cfg.RouteServiceConfig.TLSPem = config.TLSPem{
CertChain: string(browserToGorouterClientCertChain.CertPEM),
PrivateKey: string(browserToGorouterClientCertChain.PrivKeyPEM),
}
// make backend trust the CA that signed the gorouter's client cert
certPool := x509.NewCertPool()
certPool.AddCert(gorouterToBackendsClientCertChain.CACert)
trustedBackendTLSConfig.ClientCAs = certPool
uaaCACertsPath, err := filepath.Abs(filepath.Join("test", "assets", "certs", "uaa-ca.pem"))
Expect(err).ToNot(HaveOccurred())
cfg.OAuth = config.OAuthConfig{
ClientName: "client-id",
ClientSecret: "client-secret",
CACerts: uaaCACertsPath,
}
cfg.OAuth.TokenEndpoint, cfg.OAuth.Port = hostnameAndPort(oauthServer.Addr())
cfg.MaxRequestHeaderBytes = 48 * 1024 //1kb
return &testState{
cfg: cfg,
client: &http.Client{
Transport: &http.Transport{
TLSClientConfig: clientTLSConfig,
},
},
routeServiceClient: &http.Client{
Transport: &http.Transport{
TLSClientConfig: clientTLSConfig,
},
},
trustedExternalServiceHostname: externalRouteServiceHostname,
trustedExternalServiceTLS: &tls.Config{
Certificates: []tls.Certificate{routeServiceTLSCert},
},
trustedClientTLSConfig: browserToGorouterClientCertChain.AsTLSConfig(),
trustedRouteServiceClientTLSConfig: routeServiceToGorouterClientCertChain.AsTLSConfig(),
trustedBackendTLSConfig: trustedBackendTLSConfig,
trustedBackendServerCertSAN: trustedBackendServerCertSAN,
untrustedBackendTLSConfig: untrustedBackendTLSConfig,
untrustedBackendServerCertSAN: untrustedBackendServerCertSAN,
}
}
func (s *testState) newPostRequest(url string, body io.Reader) *http.Request {
req, err := http.NewRequest("POST", url, body)
Expect(err).NotTo(HaveOccurred())
port := s.cfg.Port
if strings.HasPrefix(url, "https") {
port = s.cfg.SSLPort
}
req.URL.Host = fmt.Sprintf("127.0.0.1:%d", port)
return req
}
func (s *testState) newGetRequest(url string) *http.Request {
req, err := http.NewRequest("GET", url, nil)
Expect(err).NotTo(HaveOccurred())
port := s.cfg.Port
if strings.HasPrefix(url, "https") {
port = s.cfg.SSLPort
}
req.URL.Host = fmt.Sprintf("127.0.0.1:%d", port)
return req
}
func (s *testState) register(backend *httptest.Server, routeURI string) {
s.registerAsTLS(backend, routeURI, "")
}
func (s *testState) registerAsTLS(backend *httptest.Server, routeURI string, serverCertDomainSAN string) {
_, backendPort := hostnameAndPort(backend.Listener.Addr().String())
var openPort, tlsPort uint16
if serverCertDomainSAN != "" {
tlsPort = uint16(backendPort)
} else {
openPort = uint16(backendPort)
}
rm := mbus.RegistryMessage{
Host: "127.0.0.1",
Port: openPort,
TLSPort: tlsPort,
Uris: []route.Uri{route.Uri(routeURI)},
StaleThresholdInSeconds: 10,
RouteServiceURL: "",
PrivateInstanceID: fmt.Sprintf("%x", rand.Int31()),
ServerCertDomainSAN: serverCertDomainSAN,
}
s.registerAndWait(rm)
}
func (s *testState) registerWithExternalRouteService(appBackend, routeServiceServer *httptest.Server, routeServiceHostname string, routeURI string) {
_, routeServicePort := hostnameAndPort(routeServiceServer.Listener.Addr().String())
_, appBackendPort := hostnameAndPort(appBackend.Listener.Addr().String())
rm := mbus.RegistryMessage{
Host: "127.0.0.1",
Port: uint16(appBackendPort),
Uris: []route.Uri{route.Uri(routeURI)},
StaleThresholdInSeconds: 10,
RouteServiceURL: fmt.Sprintf("https://%s:%d", routeServiceHostname, routeServicePort),
PrivateInstanceID: fmt.Sprintf("%x", rand.Int31()),
}
s.registerAndWait(rm)
}
func (s *testState) registerWithInternalRouteService(appBackend, routeServiceServer *httptest.Server, routeURI string, gorouterPort uint16) {
_, serverPort := hostnameAndPort(routeServiceServer.Listener.Addr().String())
internalRouteServiceHostname := fmt.Sprintf("internal-route-service-%d.localhost.routing.cf-app.com", serverPort)
s.register(routeServiceServer, internalRouteServiceHostname) // the route service is just an app registered normally
_, appBackendPort := hostnameAndPort(appBackend.Listener.Addr().String())
rm := mbus.RegistryMessage{
Host: "127.0.0.1",
Port: uint16(appBackendPort),
Uris: []route.Uri{route.Uri(routeURI)},
StaleThresholdInSeconds: 10,
RouteServiceURL: fmt.Sprintf("https://%s:%d", internalRouteServiceHostname, gorouterPort),
PrivateInstanceID: fmt.Sprintf("%x", rand.Int31()),
}
s.registerAndWait(rm)
}
func (s *testState) registerAndWait(rm mbus.RegistryMessage) {
b, _ := json.Marshal(rm)
s.mbusClient.Publish("router.register", b)
routesUri := fmt.Sprintf("http://%s:%[email protected]:%d/routes", s.cfg.Status.User, s.cfg.Status.Pass, s.cfg.Status.Routes.Port)
Eventually(func() (bool, error) {
return routeExists(routesUri, string(rm.Uris[0]))
}).Should(BeTrue())
}
func (s *testState) StartGorouter() *Session {
Expect(s.cfg).NotTo(BeNil(), "set up test cfg before calling this function")
s.natsRunner = test_util.NewNATSRunner(int(s.cfg.Nats.Hosts[0].Port))
s.natsRunner.Start()
var err error
s.tmpdir, err = os.MkdirTemp("", "gorouter")
Expect(err).ToNot(HaveOccurred())
cfgFile := filepath.Join(s.tmpdir, "config.yml")
cfgBytes, err := yaml.Marshal(s.cfg)
Expect(err).ToNot(HaveOccurred())
Expect(os.WriteFile(cfgFile, cfgBytes, 0644)).To(Succeed())
cmd := exec.Command(gorouterPath, "-c", cfgFile)
s.gorouterSession, err = Start(cmd, GinkgoWriter, GinkgoWriter)
Expect(err).ToNot(HaveOccurred())
return s.gorouterSession
}
func (s *testState) StartGorouterOrFail() {
s.StartGorouter()
Eventually(func() *Session {
if s.gorouterSession.ExitCode() >= 0 {
Fail("gorouter quit early!")
}
return s.gorouterSession
}, 1*time.Minute).Should(Say("starting"))
Eventually(s.gorouterSession, 1*time.Minute).Should(Say(`Successfully-connected-to-nats.*localhost:\d+`))
Eventually(s.gorouterSession, 1*time.Minute).Should(Say(`gorouter.started`))
var err error
s.mbusClient, err = newMessageBus(s.cfg)
Expect(err).ToNot(HaveOccurred())
}
func (s *testState) StopAndCleanup() {
if s.natsRunner != nil {
s.natsRunner.Stop()
}
if s.AccessLogFilePath() != "" {
err := os.Remove(s.AccessLogFilePath())
Expect(err).NotTo(HaveOccurred())
}
os.RemoveAll(s.tmpdir)
if s.gorouterSession != nil && s.gorouterSession.ExitCode() == -1 {
Eventually(s.gorouterSession.Terminate(), 5).Should(Exit(0))
}
if s.fakeMetron != nil {
s.StopMetron()
}
}
func (s *testState) EnableMetron() {
s.fakeMetron = test_util.NewFakeMetron()
s.cfg.Logging = config.LoggingConfig{
MetronAddress: s.fakeMetron.Address(),
RedactQueryParams: "none",
Level: "debug",
JobName: "router_test_z1_0",
LoggregatorEnabled: true,
}
}
func (s *testState) StopMetron() {
Expect(s.fakeMetron.Close()).To(Succeed())
}
func (s *testState) MetronEvents() []test_util.Event {
return s.fakeMetron.AllEvents()
}
func (s *testState) EnableAccessLog() {
file, err := os.CreateTemp("", "RTR-ACCESS-LOG")
Expect(err).NotTo(HaveOccurred())
s.cfg.AccessLog = config.AccessLog{File: file.Name()}
}
func (s *testState) AccessLogFilePath() string {
return s.cfg.AccessLog.File
}
func assertRequestSucceeds(client *http.Client, req *http.Request) {
resp, err := client.Do(req)
Expect(err).NotTo(HaveOccurred())
Expect(resp.StatusCode).To(Equal(200))
_, err = io.ReadAll(resp.Body)
Expect(err).NotTo(HaveOccurred())
resp.Body.Close()
}