Add test to ensure full mapping of types in AbstractStorageBasedProvider (#4318)

Signed-off-by: Jan N. Klug <github@klug.nrw>
This commit is contained in:
J-N-K 2024-07-22 15:07:28 +02:00 committed by GitHub
parent 0a5886c7e7
commit 8557666f0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,9 +19,14 @@ import java.net.URI;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Stream;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import org.openhab.core.internal.types.StateDescriptionFragmentImpl;
import org.openhab.core.thing.ThingTypeUID;
import org.openhab.core.thing.type.AutoUpdatePolicy;
import org.openhab.core.thing.type.ChannelDefinition;
@ -158,6 +163,37 @@ public class AbstractStorageBasedTypeProviderTest {
}
}
@MethodSource
@ParameterizedTest
public void testMapToEntityIsComplete(Class<?> originalType, Class<?> mappedType, int allowedDelta) {
Class<?> clazz = originalType;
int originalTypeFieldCount = 0;
while (clazz != Object.class) {
originalTypeFieldCount += clazz.getDeclaredFields().length;
clazz = clazz.getSuperclass();
}
int mappedEntityFieldCount = mappedType.getDeclaredFields().length;
assertThat(originalType.getName() + " not properly mapped", mappedEntityFieldCount,
is(originalTypeFieldCount + allowedDelta));
}
private static Stream<Arguments> testMapToEntityIsComplete() {
return Stream.of( //
// isBridge is an extra field for storage and not present in ThingType
Arguments.of(ThingType.class, AbstractStorageBasedTypeProvider.ThingTypeEntity.class, 1),
Arguments.of(ChannelType.class, AbstractStorageBasedTypeProvider.ChannelTypeEntity.class, 0),
Arguments.of(ChannelDefinition.class, AbstractStorageBasedTypeProvider.ChannelDefinitionEntity.class,
0),
// configDescriptionURI is not available for ChannelGroupType
Arguments.of(ChannelGroupType.class, AbstractStorageBasedTypeProvider.ChannelGroupTypeEntity.class, -1),
Arguments.of(ChannelGroupDefinition.class,
AbstractStorageBasedTypeProvider.ChannelGroupDefinitionEntity.class, 0),
Arguments.of(StateDescriptionFragmentImpl.class,
AbstractStorageBasedTypeProvider.StateDescriptionFragmentEntity.class, 0));
}
private void assertChannelDefinition(ChannelDefinition actual, ChannelDefinition expected) {
assertThat(actual.getId(), is(expected.getId()));
assertThat(actual.getChannelTypeUID(), is(expected.getChannelTypeUID()));