-
Notifications
You must be signed in to change notification settings - Fork 6
perf: [do not deserialize json objects or update local cache if remote response has not changed from the previous one] (FF-2576) #56
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
Open
leoromanovsky
wants to merge
7
commits into
main
Choose a base branch
from
lr/ff-2576/cache
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3bf13d7
perf: [do not deserialize json objects or update local cache if remot…
leoromanovsky 2dff525
remove debug
leoromanovsky af3484f
remove debug2
leoromanovsky 9a73b70
switch to checking etag + make the behavior configurable
leoromanovsky 7f62ae0
Merge branch 'main' into lr/ff-2576/cache
leoromanovsky a166cd9
Fix compilation
leoromanovsky b6a2a76
implementation
leoromanovsky 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 hidden or 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 hidden or 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,106 @@ | ||
package eppoclient | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/mock" | ||
) | ||
|
||
type mockHttpClient struct { | ||
mock.Mock | ||
} | ||
|
||
func (m *mockHttpClient) get(url string) (string, error) { | ||
args := m.Called(url) | ||
return args.String(0), args.Error(1) | ||
} | ||
|
||
func Test_FetchAndStoreConfigurations_DoesNotDeserializeTwice(t *testing.T) { | ||
mockHttpClient := new(mockHttpClient) | ||
mockConfigStore := newConfigurationStore() | ||
configRequestor := newConfigurationRequestor(mockHttpClient, mockConfigStore) | ||
|
||
// Mock the HTTP client to return a fixed response | ||
mockResponse1 := ` | ||
{ | ||
"createdAt": "2024-04-17T19:40:53.716Z", | ||
"environment": { | ||
"name": "Test" | ||
}, | ||
"flags": { | ||
"empty_flag": { | ||
"key": "empty_flag", | ||
"enabled": true, | ||
"variationType": "STRING", | ||
"variations": {}, | ||
"allocations": [], | ||
"totalShards": 10000 | ||
} | ||
} | ||
} | ||
` | ||
mockCall := mockHttpClient.On("get", UFC_ENDPOINT).Return(mockResponse1, nil) | ||
|
||
// First fetch and store configurations | ||
configRequestor.FetchAndStoreConfigurations() | ||
|
||
// Store the current hash | ||
firstHash := configRequestor.storedFlagConfigsHash | ||
|
||
// Fetch and store configurations again | ||
configRequestor.FetchAndStoreConfigurations() | ||
|
||
// Store the hash after the second fetch | ||
secondHash := configRequestor.storedFlagConfigsHash | ||
|
||
// Assert that the hash has not changed | ||
assert.Equal(t, firstHash, secondHash) | ||
|
||
// Assert that the configurations were only deserialized once | ||
assert.Equal(t, 1, len(mockConfigStore.configs)) | ||
assert.Equal(t, "empty_flag", mockConfigStore.configs["empty_flag"].Key) | ||
mockHttpClient.AssertNumberOfCalls(t, "get", 2) | ||
mockCall.Unset() | ||
|
||
// change the remote config | ||
mockResponse2 := ` | ||
{ | ||
"createdAt": "2024-04-17T19:40:53.716Z", | ||
"environment": { | ||
"name": "Test" | ||
}, | ||
"flags": { | ||
"empty_flag_2": { | ||
"key": "empty_flag_2", | ||
"enabled": true, | ||
"variationType": "STRING", | ||
"variations": {}, | ||
"allocations": [], | ||
"totalShards": 10000 | ||
} | ||
} | ||
} | ||
` | ||
mockCall = mockHttpClient.On("get", UFC_ENDPOINT).Return(mockResponse2, nil) | ||
|
||
// fetch and store again | ||
configRequestor.FetchAndStoreConfigurations() | ||
|
||
// assert that the new config is stored | ||
assert.Equal(t, 1, len(mockConfigStore.configs)) | ||
assert.Equal(t, "empty_flag_2", mockConfigStore.configs["empty_flag_2"].Key) | ||
mockHttpClient.AssertNumberOfCalls(t, "get", 3) | ||
mockCall.Unset() | ||
|
||
// change remote config back to original | ||
mockCall = mockHttpClient.On("get", UFC_ENDPOINT).Return(mockResponse1, nil) | ||
|
||
// fetch and store again | ||
configRequestor.FetchAndStoreConfigurations() | ||
|
||
assert.Equal(t, 1, len(mockConfigStore.configs)) | ||
assert.Equal(t, "empty_flag", mockConfigStore.configs["empty_flag"].Key) | ||
mockHttpClient.AssertNumberOfCalls(t, "get", 4) | ||
mockCall.Unset() | ||
} |
This file contains hidden or 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 hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.