-
Notifications
You must be signed in to change notification settings - Fork 537
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
25 additions
and
19 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 |
---|---|---|
|
@@ -128,6 +128,7 @@ public void testActiveUserIsRemovedAfterLinkingAccounts() throws Exception { | |
{ | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
@@ -173,6 +174,7 @@ public void testActiveUserIsRemovedAfterLinkingAccounts() throws Exception { | |
{ | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
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 |
---|---|---|
|
@@ -236,6 +236,7 @@ public void testThirdPartySignInUp() throws Exception { | |
{ | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
@@ -255,6 +256,7 @@ public void testThirdPartySignInUp() throws Exception { | |
// Without account linking | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
@@ -279,6 +281,7 @@ public void testThirdPartySignInUp() throws Exception { | |
// After account linking | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
@@ -300,6 +303,7 @@ public void testThirdPartySignInUp() throws Exception { | |
// After account linking | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
@@ -317,6 +321,7 @@ public void testThirdPartySignInUp() throws Exception { | |
// After account linking | ||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "facebook"); | ||
|
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 |
---|---|---|
|
@@ -72,6 +72,7 @@ public void testGoodInput() throws Exception { | |
|
||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|
@@ -142,6 +143,7 @@ public void testNotAllowedUpdateOfEmail() throws Exception { | |
|
||
JsonObject emailObject = new JsonObject(); | ||
emailObject.addProperty("id", "[email protected]"); | ||
emailObject.addProperty("isVerified", false); | ||
|
||
JsonObject signUpRequestBody = new JsonObject(); | ||
signUpRequestBody.addProperty("thirdPartyId", "google"); | ||
|