ca.uhn.test.util.HasGetterOrSetterForAllJsonFieldsAssert Maven / Gradle / Ivy
/*-
* #%L
* HAPI FHIR Test Utilities
* %%
* Copyright (C) 2014 - 2024 Smile CDR, Inc.
* %%
* 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.
* #L%
*/
package ca.uhn.test.util;
import ca.uhn.fhir.model.api.IModelJson;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.annotation.Nonnull;
import org.assertj.core.api.AbstractAssert;
import org.assertj.core.api.Assertions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.beans.BeanInfo;
import java.beans.FeatureDescriptor;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class HasGetterOrSetterForAllJsonFieldsAssert extends AbstractAssert> {
private static final Logger ourLog = LoggerFactory.getLogger(HasGetterOrSetterForAllJsonFieldsAssert.class);
public HasGetterOrSetterForAllJsonFieldsAssert(Class extends IModelJson> actual) {
super(actual, HasGetterOrSetterForAllJsonFieldsAssert.class);
}
public static HasGetterOrSetterForAllJsonFieldsAssert assertThat(Class extends IModelJson> actual) {
return new HasGetterOrSetterForAllJsonFieldsAssert(actual);
}
public HasGetterOrSetterForAllJsonFieldsAssert hasGetterOrSetterForAllJsonFields() {
isNotNull();
List jsonPropertyFields = getJsonPropertyFields(actual);
List properties = getProperties(actual);
ourLog.info("{}: testing {} @JsonProperty fields", actual.getSimpleName(), jsonPropertyFields.size());
Assertions.assertThat(properties).containsAll(jsonPropertyFields);
return this;
}
@Nonnull
private List getJsonPropertyFields(Class extends IModelJson> item) {
List fields = new ArrayList<>();
populateFields(fields, item);
return fields.stream()
.filter(this::isJsonProperty)
.filter(this::isNotCollection)
.filter(this::isNotMap)
.map(Field::getName)
.map(this::stripPrefix)
.map(this::stripUnderscoreSuffix)
.sorted()
.collect(Collectors.toList());
}
private boolean isNotCollection(Field theField) {
return !Collection.class.isAssignableFrom(theField.getType());
}
private boolean isNotMap(Field theField) {
return !Map.class.isAssignableFrom(theField.getType());
}
private boolean isJsonProperty(Field theField) {
if (!theField.isAnnotationPresent(JsonProperty.class)) {
return false;
}
Schema apiModelProperty = theField.getAnnotation(Schema.class);
if (apiModelProperty != null && apiModelProperty.accessMode() == Schema.AccessMode.READ_ONLY) {
return false;
}
return apiModelProperty == null || !apiModelProperty.hidden();
}
private String stripPrefix(String theFieldName) {
if (theFieldName.startsWith("my")) {
return theFieldName.substring(2, 3).toLowerCase() + theFieldName.substring(3);
}
return theFieldName;
}
private String stripUnderscoreSuffix(String theFieldName) {
if (theFieldName.endsWith("_")) {
return theFieldName.substring(0, theFieldName.length() - 1);
}
return theFieldName;
}
private List getProperties(Class extends IModelJson> item) {
try {
BeanInfo beanInfo = Introspector.getBeanInfo(item);
return Arrays.stream(beanInfo.getPropertyDescriptors())
.map(FeatureDescriptor::getName)
.filter(name -> !"class".equals(name))
.map(this::lowerCaseFirstLetter)
.sorted()
.collect(Collectors.toList());
} catch (IntrospectionException e) {
throw new AssertionError("Unable to introspect " + item.getName(), e);
}
}
private String lowerCaseFirstLetter(String thePropertyName) {
return thePropertyName.substring(0, 1).toLowerCase() + thePropertyName.substring(1);
}
private static void populateFields(List theFields, Class> theItem) {
theFields.addAll(Arrays.asList(theItem.getDeclaredFields()));
if (theItem.getSuperclass() != null) {
populateFields(theFields, theItem.getSuperclass());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy