mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-10 18:56:34 +00:00

To help accommodate web browser interactions with websockets, when a streaming logs session is requested for the same actor while already serving a session for that user in a separate request, the original request will be closed and the new request start streaming logs instead. This should help with rogue sessions holding on for too long with no client on the other side (before idle timeout or connection close).
72 lines
1.9 KiB
Go
72 lines
1.9 KiB
Go
package management
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestValidateAccessTokenQueryMiddleware(t *testing.T) {
|
|
r := chi.NewRouter()
|
|
r.Use(ValidateAccessTokenQueryMiddleware)
|
|
r.Get("/valid", func(w http.ResponseWriter, r *http.Request) {
|
|
claims, ok := r.Context().Value(accessClaimsCtxKey).(*managementTokenClaims)
|
|
assert.True(t, ok)
|
|
assert.True(t, claims.verify())
|
|
w.WriteHeader(http.StatusOK)
|
|
})
|
|
r.Get("/invalid", func(w http.ResponseWriter, r *http.Request) {
|
|
_, ok := r.Context().Value(accessClaimsCtxKey).(*managementTokenClaims)
|
|
assert.False(t, ok)
|
|
w.WriteHeader(http.StatusOK)
|
|
})
|
|
|
|
ts := httptest.NewServer(r)
|
|
defer ts.Close()
|
|
|
|
// valid: with access_token query param
|
|
path := "/valid?access_token=" + validToken
|
|
resp, _ := testRequest(t, ts, "GET", path, nil)
|
|
assert.Equal(t, http.StatusOK, resp.StatusCode)
|
|
|
|
// invalid: unset token
|
|
path = "/invalid"
|
|
resp, err := testRequest(t, ts, "GET", path, nil)
|
|
assert.Equal(t, http.StatusBadRequest, resp.StatusCode)
|
|
assert.NotNil(t, err)
|
|
assert.Equal(t, errMissingAccessToken, err.Errors[0])
|
|
|
|
// invalid: invalid token
|
|
path = "/invalid?access_token=eyJ"
|
|
resp, err = testRequest(t, ts, "GET", path, nil)
|
|
assert.Equal(t, http.StatusBadRequest, resp.StatusCode)
|
|
assert.NotNil(t, err)
|
|
assert.Equal(t, errMissingAccessToken, err.Errors[0])
|
|
}
|
|
|
|
func testRequest(t *testing.T, ts *httptest.Server, method, path string, body io.Reader) (*http.Response, *managementErrorResponse) {
|
|
req, err := http.NewRequest(method, ts.URL+path, body)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return nil, nil
|
|
}
|
|
|
|
resp, err := ts.Client().Do(req)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return nil, nil
|
|
}
|
|
var claims managementErrorResponse
|
|
err = json.NewDecoder(resp.Body).Decode(&claims)
|
|
if err != nil {
|
|
return resp, nil
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
return resp, &claims
|
|
}
|