-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LPD-33798 Using JSONUtil and JSONObject for the input value
- Loading branch information
Showing
1 changed file
with
19 additions
and
5 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 |
---|---|---|
|
@@ -6,6 +6,8 @@ | |
package com.liferay.portal.security.sso.openid.connect.internal; | ||
|
||
import com.liferay.petra.function.UnsafeConsumer; | ||
import com.liferay.portal.kernel.json.JSONObject; | ||
import com.liferay.portal.kernel.json.JSONUtil; | ||
import com.liferay.portal.test.rule.LiferayUnitTestRule; | ||
|
||
import com.nimbusds.jwt.JWT; | ||
|
@@ -53,17 +55,28 @@ public void accept(Long aLong) { | |
|
||
@Test | ||
public void testWhenEmailIsInJWTClaimSet() throws Exception { | ||
Map<String, Object> claims = _processClaimSet( | ||
"{\"sub\":\"subject\",\"name\": \"test_account\",\"email\": " + | ||
"\"[email protected]\"}"); | ||
_jsonObject = JSONUtil.put( | ||
"email", "[email protected]" | ||
).put( | ||
"name", "test_account" | ||
).put( | ||
"sub", "subject" | ||
); | ||
|
||
Map<String, Object> claims = _processClaimSet(_jsonObject.toString()); | ||
|
||
Assert.assertEquals("[email protected]", claims.get("email")); | ||
} | ||
|
||
@Test | ||
public void testWhenEmailIsNotInJWTClaimSet() throws Exception { | ||
Map<String, Object> claims = _processClaimSet( | ||
"{\"sub\":\"subject\",\"name\": \"test_account\"}"); | ||
_jsonObject = JSONUtil.put( | ||
"name", "test_account" | ||
).put( | ||
"sub", "subject" | ||
); | ||
|
||
Map<String, Object> claims = _processClaimSet(_jsonObject.toString()); | ||
|
||
Assert.assertNull(claims.get("email")); | ||
} | ||
|
@@ -83,6 +96,7 @@ private Map<String, Object> _processClaimSet(String claimSetJSON) | |
mockJWT); | ||
} | ||
|
||
private JSONObject _jsonObject; | ||
private MockHttpServletRequest _mockHttpServletRequest; | ||
private MockHttpServletResponse _mockHttpServletResponse; | ||
private MockHttpSession _mockHttpSession; | ||
|