Skip to content
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

Closes #858. #861

Merged
merged 1 commit into from
Oct 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/src/main/java/io/jsonwebtoken/lang/Objects.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static boolean isArray(Object obj) {
* Returns {@code true} if the specified argument:
* <ol>
* <li>is {@code null}, or</li>
* <li>is a String and {@link Strings#hasText(String)} is {@code false}, or</li>
* <li>is a CharSequence and {@link Strings#hasText(CharSequence)} is {@code false}, or</li>
* <li>is a Collection or Map with zero size, or</li>
* <li>is an empty array</li>
* </ol>
Expand All @@ -106,7 +106,7 @@ public static boolean isArray(Object obj) {
*/
public static boolean isEmpty(Object v) {
return v == null ||
(v instanceof String && !Strings.hasText((String) v)) ||
(v instanceof CharSequence && !Strings.hasText((CharSequence) v)) ||
(v instanceof Collection && Collections.isEmpty((Collection<?>) v)) ||
(v instanceof Map && Collections.isEmpty((Map<?, ?>) v)) ||
(v.getClass().isArray() && Array.getLength(v) == 0);
Expand Down
16 changes: 4 additions & 12 deletions impl/src/main/java/io/jsonwebtoken/impl/ParameterMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,6 @@ public Object get(Object o) {
return values.get(o);
}

private static Object clean(Object o) {
if (o instanceof String) {
o = Strings.clean((String) o);
}
return o;
}

/**
* Convenience method to put a value for an idiomatic param.
*
Expand All @@ -143,7 +136,7 @@ protected final <T> Object put(Parameter<T> param, Object value) {
assertMutable();
Assert.notNull(param, "Parameter cannot be null.");
Assert.hasText(param.getId(), "Parameter id cannot be null or empty.");
return apply(param, clean(value));
return apply(param, value);
}

@Override
Expand All @@ -156,12 +149,12 @@ public final Object put(String name, Object value) {
return put(param, value);
} else {
// non-standard or custom property, just apply directly:
return nullSafePut(name, clean(value));
return nullSafePut(name, value);
}
}

private Object nullSafePut(String name, Object value) {
if (Objects.isEmpty(value)) {
if (value == null) {
return remove(name);
} else {
this.idiomaticValues.put(name, value);
Expand Down Expand Up @@ -199,9 +192,8 @@ private <T> Object apply(Parameter<T> param, Object rawValue) {
String msg = sb.toString();
throw new IllegalArgumentException(msg, e);
}
Object retval = nullSafePut(id, canonicalValue);
this.idiomaticValues.put(id, idiomaticValue);
return retval;
return this.values.put(id, canonicalValue);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,13 +219,6 @@ class DefaultJwtBuilderTest {
assertEquals b.claimsBuilder.foo, 'bar'
}

@Test
void testClaimEmptyString() {
String value = ' '
builder.claim('foo', value)
assertTrue builder.claimsBuilder.isEmpty() // shouldn't populate claims instance
}

@Test
void testExistingClaimsAndSetClaim() {
Claims c = Jwts.claims().add('foo', 'bar').build()
Expand Down
42 changes: 42 additions & 0 deletions impl/src/test/groovy/io/jsonwebtoken/issues/Issue858Test.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* Copyright © 2023 jsonwebtoken.io
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.jsonwebtoken.issues

import io.jsonwebtoken.Jwts
import org.junit.Test

import static org.junit.Assert.assertEquals

class Issue858Test {

@Test
void testEmptyAndNullEntries() {
def jwt = Jwts.builder()
.subject('Joe')
.claim('foo', '') // empty allowed
.claim('list', []) // empty allowed
.claim('map', [:]) // empty map allowed
.claim('another', null) // null not allowed (same behavior since <= 0.11.5), won't be added
.compact()

def claims = Jwts.parser().unsecured().build().parseUnsecuredClaims(jwt).getPayload()
assertEquals 4, claims.size()
assertEquals 'Joe', claims.getSubject()
assertEquals '', claims.get('foo')
assertEquals([], claims.get('list'))
assertEquals([:], claims.get('map'))
}
}