-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
⚠ (feat) Introduce new feature-gated metas endpoint #1643
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
498d88f
add a new feature-gated api/v1/query endpoint
joelanford 6aad08a
add singleflight for shared index access for concurrent requests
joelanford 10c3634
a few improvements and optimizations
joelanford 82dac60
another round of refactoring improvement
joelanford ab587bc
Tests
anik120 044d6cd
use io.MultiReader instead of manual implementation
anik120 625abb5
include checkPrecoditions check
anik120 cb0fc73
add comments
anik120 eed3c39
code cleanup
anik120 ee38cbe
cleanup index.Get's signature
anik120 f8b7a64
only allow GET/HEAD methods
anik120 55333ba
refractor serverJSONLines
anik120 6ae66cd
replace static test variable
anik120 870f38f
fix unit test
anik120 5b46ad1
refractor getIndex() (and other lint issues)
anik120 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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,128 @@ | ||
package serverutil | ||
|
||
import ( | ||
"compress/gzip" | ||
"context" | ||
"io" | ||
"io/fs" | ||
"net/http" | ||
"net/http/httptest" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/go-logr/logr" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestStorageServerHandlerWrapped_Gzip(t *testing.T) { | ||
var generatedJSON = func(size int) string { | ||
return "{\"data\":\"" + strings.Repeat("test data ", size) + "\"}" | ||
} | ||
tests := []struct { | ||
name string | ||
acceptEncoding string | ||
responseContent string | ||
expectCompressed bool | ||
expectedStatus int | ||
}{ | ||
{ | ||
name: "compresses large response when client accepts gzip", | ||
acceptEncoding: "gzip", | ||
responseContent: generatedJSON(1000), | ||
expectCompressed: true, | ||
expectedStatus: http.StatusOK, | ||
}, | ||
{ | ||
name: "does not compress small response even when client accepts gzip", | ||
acceptEncoding: "gzip", | ||
responseContent: `{"foo":"bar"}`, | ||
expectCompressed: false, | ||
expectedStatus: http.StatusOK, | ||
}, | ||
{ | ||
name: "does not compress when client doesn't accept gzip", | ||
acceptEncoding: "", | ||
responseContent: generatedJSON(1000), | ||
expectCompressed: false, | ||
expectedStatus: http.StatusOK, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
// Create a mock storage instance that returns our test content | ||
mockStorage := &mockStorageInstance{ | ||
content: tt.responseContent, | ||
} | ||
|
||
cfg := CatalogServerConfig{ | ||
LocalStorage: mockStorage, | ||
} | ||
handler := storageServerHandlerWrapped(logr.Logger{}, cfg) | ||
|
||
// Create test request | ||
req := httptest.NewRequest("GET", "/test", nil) | ||
if tt.acceptEncoding != "" { | ||
req.Header.Set("Accept-Encoding", tt.acceptEncoding) | ||
} | ||
|
||
// Create response recorder | ||
rec := httptest.NewRecorder() | ||
|
||
// Handle the request | ||
handler.ServeHTTP(rec, req) | ||
|
||
// Check status code | ||
require.Equal(t, tt.expectedStatus, rec.Code) | ||
|
||
// Check if response was compressed | ||
wasCompressed := rec.Header().Get("Content-Encoding") == "gzip" | ||
require.Equal(t, tt.expectCompressed, wasCompressed) | ||
|
||
// Get the response body | ||
var responseBody []byte | ||
if wasCompressed { | ||
// Decompress the response | ||
gzipReader, err := gzip.NewReader(rec.Body) | ||
require.NoError(t, err) | ||
responseBody, err = io.ReadAll(gzipReader) | ||
require.NoError(t, err) | ||
require.NoError(t, gzipReader.Close()) | ||
} else { | ||
responseBody = rec.Body.Bytes() | ||
} | ||
|
||
// Verify the response content | ||
require.Equal(t, tt.responseContent, string(responseBody)) | ||
}) | ||
} | ||
} | ||
|
||
// mockStorageInstance implements storage.Instance interface for testing | ||
type mockStorageInstance struct { | ||
content string | ||
} | ||
|
||
func (m *mockStorageInstance) StorageServerHandler() http.Handler { | ||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
_, err := w.Write([]byte(m.content)) | ||
if err != nil { | ||
http.Error(w, err.Error(), http.StatusInternalServerError) | ||
} | ||
}) | ||
} | ||
|
||
func (m *mockStorageInstance) Store(ctx context.Context, catalogName string, fs fs.FS) error { | ||
return nil | ||
} | ||
|
||
func (m *mockStorageInstance) Delete(catalogName string) error { | ||
return nil | ||
} | ||
|
||
func (m *mockStorageInstance) ContentExists(catalog string) bool { | ||
return true | ||
} | ||
func (m *mockStorageInstance) BaseURL(catalog string) string { | ||
return "" | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit (follow-up): We could probably change
CatalogServerConfig
to have anhttp.Handler
field instead of the entireLocalStorage
field?