-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: sms verify should update is_anonymous field (#1580)
## What kind of change does this PR introduce? * verifying the phone number of a user should update the `is_anonymous` field to false * add test to prevent any future regression --------- Co-authored-by: Joel Lee <[email protected]>
- Loading branch information
1 parent
ed2b490
commit e5f98cb
Showing
2 changed files
with
113 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ import ( | |
"github.com/stretchr/testify/require" | ||
"github.com/stretchr/testify/suite" | ||
"github.com/supabase/auth/internal/conf" | ||
mail "github.com/supabase/auth/internal/mailer" | ||
"github.com/supabase/auth/internal/models" | ||
) | ||
|
||
|
@@ -77,66 +78,112 @@ func (ts *AnonymousTestSuite) TestAnonymousLogins() { | |
|
||
func (ts *AnonymousTestSuite) TestConvertAnonymousUserToPermanent() { | ||
ts.Config.External.AnonymousUsers.Enabled = true | ||
// Request body | ||
var buffer bytes.Buffer | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(map[string]interface{}{})) | ||
|
||
req := httptest.NewRequest(http.MethodPost, "/signup", &buffer) | ||
req.Header.Set("Content-Type", "application/json") | ||
|
||
w := httptest.NewRecorder() | ||
|
||
ts.API.handler.ServeHTTP(w, req) | ||
require.Equal(ts.T(), http.StatusOK, w.Code) | ||
|
||
signupResponse := &AccessTokenResponse{} | ||
require.NoError(ts.T(), json.NewDecoder(w.Body).Decode(&signupResponse)) | ||
|
||
// Add email to anonymous user | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(map[string]interface{}{ | ||
"email": "[email protected]", | ||
})) | ||
|
||
req = httptest.NewRequest(http.MethodPut, "/user", &buffer) | ||
req.Header.Set("Content-Type", "application/json") | ||
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", signupResponse.Token)) | ||
|
||
w = httptest.NewRecorder() | ||
ts.API.handler.ServeHTTP(w, req) | ||
require.Equal(ts.T(), http.StatusOK, w.Code) | ||
|
||
// Check if anonymous user is still anonymous | ||
user, err := models.FindUserByID(ts.API.db, signupResponse.User.ID) | ||
require.NoError(ts.T(), err) | ||
require.NotEmpty(ts.T(), user) | ||
require.True(ts.T(), user.IsAnonymous) | ||
|
||
// Verify email change | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(map[string]interface{}{ | ||
"token_hash": user.EmailChangeTokenNew, | ||
"type": "email_change", | ||
})) | ||
|
||
req = httptest.NewRequest(http.MethodPost, "/verify", &buffer) | ||
req.Header.Set("Content-Type", "application/json") | ||
|
||
w = httptest.NewRecorder() | ||
ts.API.handler.ServeHTTP(w, req) | ||
require.Equal(ts.T(), http.StatusOK, w.Code) | ||
|
||
data := &AccessTokenResponse{} | ||
require.NoError(ts.T(), json.NewDecoder(w.Body).Decode(&data)) | ||
|
||
// User is a permanent user and not anonymous anymore | ||
assert.Equal(ts.T(), signupResponse.User.ID, data.User.ID) | ||
assert.Equal(ts.T(), ts.Config.JWT.Aud, data.User.Aud) | ||
assert.Equal(ts.T(), "[email protected]", data.User.GetEmail()) | ||
assert.Equal(ts.T(), models.JSONMap(models.JSONMap{"provider": "email", "providers": []interface{}{"email"}}), data.User.AppMetaData) | ||
assert.False(ts.T(), data.User.IsAnonymous) | ||
assert.NotEmpty(ts.T(), data.User.EmailConfirmedAt) | ||
ts.Config.Sms.TestOTP = map[string]string{"1234567890": "000000"} | ||
// test OTPs still require setting up an sms provider | ||
ts.Config.Sms.Provider = "twilio" | ||
ts.Config.Sms.Twilio.AccountSid = "fake-sid" | ||
ts.Config.Sms.Twilio.AuthToken = "fake-token" | ||
ts.Config.Sms.Twilio.MessageServiceSid = "fake-message-service-sid" | ||
|
||
cases := []struct { | ||
desc string | ||
body map[string]interface{} | ||
verificationType string | ||
}{ | ||
{ | ||
desc: "convert anonymous user to permanent user with email", | ||
body: map[string]interface{}{ | ||
"email": "[email protected]", | ||
}, | ||
verificationType: "email_change", | ||
}, | ||
{ | ||
desc: "convert anonymous user to permanent user with phone", | ||
body: map[string]interface{}{ | ||
"phone": "1234567890", | ||
}, | ||
verificationType: "phone_change", | ||
}, | ||
} | ||
|
||
// User should have an email identity | ||
assert.Len(ts.T(), data.User.Identities, 1) | ||
for _, c := range cases { | ||
ts.Run(c.desc, func() { | ||
// Request body | ||
var buffer bytes.Buffer | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(map[string]interface{}{})) | ||
|
||
req := httptest.NewRequest(http.MethodPost, "/signup", &buffer) | ||
req.Header.Set("Content-Type", "application/json") | ||
|
||
w := httptest.NewRecorder() | ||
|
||
ts.API.handler.ServeHTTP(w, req) | ||
require.Equal(ts.T(), http.StatusOK, w.Code) | ||
|
||
signupResponse := &AccessTokenResponse{} | ||
require.NoError(ts.T(), json.NewDecoder(w.Body).Decode(&signupResponse)) | ||
|
||
// Add email to anonymous user | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(c.body)) | ||
|
||
req = httptest.NewRequest(http.MethodPut, "/user", &buffer) | ||
req.Header.Set("Content-Type", "application/json") | ||
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", signupResponse.Token)) | ||
|
||
w = httptest.NewRecorder() | ||
ts.API.handler.ServeHTTP(w, req) | ||
require.Equal(ts.T(), http.StatusOK, w.Code) | ||
|
||
// Check if anonymous user is still anonymous | ||
user, err := models.FindUserByID(ts.API.db, signupResponse.User.ID) | ||
require.NoError(ts.T(), err) | ||
require.NotEmpty(ts.T(), user) | ||
require.True(ts.T(), user.IsAnonymous) | ||
|
||
switch c.verificationType { | ||
case mail.EmailChangeVerification: | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(map[string]interface{}{ | ||
"token_hash": user.EmailChangeTokenNew, | ||
"type": c.verificationType, | ||
})) | ||
case phoneChangeVerification: | ||
require.NoError(ts.T(), json.NewEncoder(&buffer).Encode(map[string]interface{}{ | ||
"phone": "1234567890", | ||
"token": "000000", | ||
"type": c.verificationType, | ||
})) | ||
} | ||
|
||
req = httptest.NewRequest(http.MethodPost, "/verify", &buffer) | ||
req.Header.Set("Content-Type", "application/json") | ||
|
||
w = httptest.NewRecorder() | ||
ts.API.handler.ServeHTTP(w, req) | ||
require.Equal(ts.T(), http.StatusOK, w.Code) | ||
|
||
data := &AccessTokenResponse{} | ||
require.NoError(ts.T(), json.NewDecoder(w.Body).Decode(&data)) | ||
|
||
// User is a permanent user and not anonymous anymore | ||
assert.Equal(ts.T(), signupResponse.User.ID, data.User.ID) | ||
assert.Equal(ts.T(), ts.Config.JWT.Aud, data.User.Aud) | ||
assert.False(ts.T(), data.User.IsAnonymous) | ||
|
||
// User should have an identity | ||
assert.Len(ts.T(), data.User.Identities, 1) | ||
|
||
switch c.verificationType { | ||
case mail.EmailChangeVerification: | ||
assert.Equal(ts.T(), "[email protected]", data.User.GetEmail()) | ||
assert.Equal(ts.T(), models.JSONMap(models.JSONMap{"provider": "email", "providers": []interface{}{"email"}}), data.User.AppMetaData) | ||
assert.NotEmpty(ts.T(), data.User.EmailConfirmedAt) | ||
case phoneChangeVerification: | ||
assert.Equal(ts.T(), "1234567890", data.User.GetPhone()) | ||
assert.Equal(ts.T(), models.JSONMap(models.JSONMap{"provider": "phone", "providers": []interface{}{"phone"}}), data.User.AppMetaData) | ||
assert.NotEmpty(ts.T(), data.User.PhoneConfirmedAt) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func (ts *AnonymousTestSuite) TestRateLimitAnonymousSignups() { | ||
|
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