-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #356 from supertokens/feat/ratelimiting-8
refactor: Add handling for when Saas returns 429 because of rate limiting
- Loading branch information
Showing
10 changed files
with
455 additions
and
20 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,6 @@ git clone [email protected]:supertokens/supertokens-auth-react.git | |
cd supertokens-auth-react | ||
git checkout $2 | ||
npm run init | ||
(cd ./examples/for-tests && npm run link) # this is there because in linux machine, postinstall in npm doesn't work.. | ||
cd ./test/server/ | ||
npm i -d | ||
npm i git+https://github.com:supertokens/supertokens-node.git#$3 | ||
|
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 |
---|---|---|
|
@@ -20,4 +20,6 @@ gin/ | |
|
||
apiPassword | ||
releasePassword | ||
.vscode/ | ||
.vscode/ | ||
|
||
.idea/ |
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,285 @@ | ||
package session | ||
|
||
import ( | ||
"encoding/json" | ||
"errors" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/supertokens/supertokens-golang/supertokens" | ||
"net/http" | ||
"net/http/httptest" | ||
"strings" | ||
"sync" | ||
"testing" | ||
) | ||
|
||
func resetQuerier() { | ||
supertokens.SetQuerierApiVersionForTests("") | ||
} | ||
|
||
func TestThatNetworkCallIsRetried(t *testing.T) { | ||
resetAll() | ||
mux := http.NewServeMux() | ||
|
||
numberOfTimesCalled := 0 | ||
numberOfTimesSecondCalled := 0 | ||
numberOfTimesThirdCalled := 0 | ||
|
||
mux.HandleFunc("/testing", func(rw http.ResponseWriter, r *http.Request) { | ||
numberOfTimesCalled++ | ||
rw.WriteHeader(supertokens.RateLimitStatusCode) | ||
rw.Header().Set("Content-Type", "application/json") | ||
response, err := json.Marshal(map[string]interface{}{}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
rw.Write(response) | ||
}) | ||
|
||
mux.HandleFunc("/testing2", func(rw http.ResponseWriter, r *http.Request) { | ||
numberOfTimesSecondCalled++ | ||
rw.Header().Set("Content-Type", "application/json") | ||
|
||
if numberOfTimesSecondCalled == 3 { | ||
rw.WriteHeader(200) | ||
} else { | ||
rw.WriteHeader(supertokens.RateLimitStatusCode) | ||
} | ||
|
||
response, err := json.Marshal(map[string]interface{}{}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
rw.Write(response) | ||
}) | ||
|
||
mux.HandleFunc("/testing3", func(rw http.ResponseWriter, r *http.Request) { | ||
numberOfTimesThirdCalled++ | ||
rw.Header().Set("Content-Type", "application/json") | ||
rw.WriteHeader(200) | ||
response, err := json.Marshal(map[string]interface{}{}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
rw.Write(response) | ||
}) | ||
|
||
testServer := httptest.NewServer(mux) | ||
|
||
defer func() { | ||
testServer.Close() | ||
}() | ||
|
||
config := supertokens.TypeInput{ | ||
Supertokens: &supertokens.ConnectionInfo{ | ||
// We need the querier to call the test server and not the core | ||
ConnectionURI: testServer.URL, | ||
}, | ||
AppInfo: supertokens.AppInfo{ | ||
AppName: "SuperTokens", | ||
WebsiteDomain: "supertokens.io", | ||
APIDomain: "api.supertokens.io", | ||
}, | ||
RecipeList: []supertokens.Recipe{ | ||
Init(nil), | ||
}, | ||
} | ||
|
||
err := supertokens.Init(config) | ||
|
||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
q, err := supertokens.GetNewQuerierInstanceOrThrowError("") | ||
supertokens.SetQuerierApiVersionForTests("3.0") | ||
defer resetQuerier() | ||
|
||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
_, err = q.SendGetRequest("/testing", map[string]string{}) | ||
if err == nil { | ||
t.Error(errors.New("request should have failed but didnt").Error()) | ||
} else { | ||
if !strings.Contains(err.Error(), "with status code: 429") { | ||
t.Error(errors.New("request failed with an unexpected error").Error()) | ||
} | ||
} | ||
|
||
_, err = q.SendGetRequest("/testing2", map[string]string{}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
_, err = q.SendGetRequest("/testing3", map[string]string{}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
// One initial call + 5 retries | ||
assert.Equal(t, numberOfTimesCalled, 6) | ||
assert.Equal(t, numberOfTimesSecondCalled, 3) | ||
assert.Equal(t, numberOfTimesThirdCalled, 1) | ||
} | ||
|
||
func TestThatRateLimitErrorsAreThrownBackToTheUser(t *testing.T) { | ||
resetAll() | ||
mux := http.NewServeMux() | ||
|
||
mux.HandleFunc("/testing", func(rw http.ResponseWriter, r *http.Request) { | ||
rw.WriteHeader(supertokens.RateLimitStatusCode) | ||
rw.Header().Set("Content-Type", "application/json") | ||
response, err := json.Marshal(map[string]interface{}{ | ||
"status": "RATE_LIMIT_ERROR", | ||
}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
rw.Write(response) | ||
}) | ||
|
||
testServer := httptest.NewServer(mux) | ||
|
||
defer func() { | ||
testServer.Close() | ||
}() | ||
|
||
config := supertokens.TypeInput{ | ||
Supertokens: &supertokens.ConnectionInfo{ | ||
// We need the querier to call the test server and not the core | ||
ConnectionURI: testServer.URL, | ||
}, | ||
AppInfo: supertokens.AppInfo{ | ||
AppName: "SuperTokens", | ||
WebsiteDomain: "supertokens.io", | ||
APIDomain: "api.supertokens.io", | ||
}, | ||
RecipeList: []supertokens.Recipe{ | ||
Init(nil), | ||
}, | ||
} | ||
|
||
err := supertokens.Init(config) | ||
|
||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
q, err := supertokens.GetNewQuerierInstanceOrThrowError("") | ||
supertokens.SetQuerierApiVersionForTests("3.0") | ||
defer resetQuerier() | ||
|
||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
_, err = q.SendGetRequest("/testing", map[string]string{}) | ||
if err == nil { | ||
t.Error(errors.New("request should have failed but didnt").Error()) | ||
} else { | ||
if !strings.Contains(err.Error(), "with status code: 429") { | ||
t.Error(errors.New("request failed with an unexpected error").Error()) | ||
} | ||
|
||
assert.True(t, strings.Contains(err.Error(), "message: {\"status\":\"RATE_LIMIT_ERROR\"}")) | ||
} | ||
} | ||
|
||
func TestThatParallelCallsHaveIndependentRetryCounters(t *testing.T) { | ||
resetAll() | ||
mux := http.NewServeMux() | ||
|
||
numberOfTimesFirstCalled := 0 | ||
numberOfTimesSecondCalled := 0 | ||
|
||
mux.HandleFunc("/testing", func(rw http.ResponseWriter, r *http.Request) { | ||
if r.URL.Query().Get("id") == "1" { | ||
numberOfTimesFirstCalled++ | ||
} else { | ||
numberOfTimesSecondCalled++ | ||
} | ||
|
||
rw.WriteHeader(supertokens.RateLimitStatusCode) | ||
rw.Header().Set("Content-Type", "application/json") | ||
response, err := json.Marshal(map[string]interface{}{}) | ||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
rw.Write(response) | ||
}) | ||
|
||
testServer := httptest.NewServer(mux) | ||
|
||
defer func() { | ||
testServer.Close() | ||
}() | ||
|
||
config := supertokens.TypeInput{ | ||
Supertokens: &supertokens.ConnectionInfo{ | ||
// We need the querier to call the test server and not the core | ||
ConnectionURI: testServer.URL, | ||
}, | ||
AppInfo: supertokens.AppInfo{ | ||
AppName: "SuperTokens", | ||
WebsiteDomain: "supertokens.io", | ||
APIDomain: "api.supertokens.io", | ||
}, | ||
RecipeList: []supertokens.Recipe{ | ||
Init(nil), | ||
}, | ||
} | ||
|
||
err := supertokens.Init(config) | ||
|
||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
q, err := supertokens.GetNewQuerierInstanceOrThrowError("") | ||
supertokens.SetQuerierApiVersionForTests("3.0") | ||
defer resetQuerier() | ||
|
||
if err != nil { | ||
t.Error(err.Error()) | ||
} | ||
|
||
var wg sync.WaitGroup | ||
|
||
wg.Add(2) | ||
|
||
go func() { | ||
_, err = q.SendGetRequest("/testing", map[string]string{ | ||
"id": "1", | ||
}) | ||
if err == nil { | ||
t.Error(errors.New("request should have failed but didnt").Error()) | ||
} else { | ||
if !strings.Contains(err.Error(), "with status code: 429") { | ||
t.Error(errors.New("request failed with an unexpected error").Error()) | ||
} | ||
} | ||
|
||
wg.Done() | ||
}() | ||
|
||
go func() { | ||
_, err = q.SendGetRequest("/testing", map[string]string{ | ||
"id": "2", | ||
}) | ||
if err == nil { | ||
t.Error(errors.New("request should have failed but didnt").Error()) | ||
} else { | ||
if !strings.Contains(err.Error(), "with status code: 429") { | ||
t.Error(errors.New("request failed with an unexpected error").Error()) | ||
} | ||
} | ||
|
||
wg.Done() | ||
}() | ||
|
||
wg.Wait() | ||
|
||
assert.Equal(t, numberOfTimesFirstCalled, 6) | ||
assert.Equal(t, numberOfTimesSecondCalled, 6) | ||
} |
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
Oops, something went wrong.