Polishing.

Replace qualified class name access of inner classes with simple names and imports.

Remove Java 8 guards. Extend supported temporal types in Jsr310Converters. Remove superfluous converter annotations.

Simplify tests.

See #2677
Original pull request: #2681
This commit is contained in:
Mark Paluch
2023-08-17 08:58:50 +02:00
parent eadd3f010c
commit 7fa03a1369
5 changed files with 105 additions and 101 deletions

View File

@@ -0,0 +1,61 @@
/*
* Copyright 2023 the original author or authors.
*
* 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
*
* https://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 org.springframework.data.redis.core.convert;
import static org.assertj.core.api.Assertions.*;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
import java.time.Period;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.util.Date;
import org.junit.jupiter.api.Test;
/**
* Unit test for {@link Jsr310Converters}.
*
* @author Mark Paluch
*/
class Jsr310ConvertersTest {
@Test // GH-2677
void shouldReportSupportedTemporalTypes() {
assertThat(Jsr310Converters.supports(Object.class)).isFalse();
assertThat(Jsr310Converters.supports(Date.class)).isFalse();
assertThat(Jsr310Converters.supports(Instant.class)).isTrue();
assertThat(Jsr310Converters.supports(ZoneId.class)).isTrue();
assertThat(Jsr310Converters.supports(ZonedDateTime.class)).isTrue();
assertThat(Jsr310Converters.supports(LocalDateTime.class)).isTrue();
assertThat(Jsr310Converters.supports(LocalDate.class)).isTrue();
assertThat(Jsr310Converters.supports(LocalTime.class)).isTrue();
assertThat(Jsr310Converters.supports(Duration.class)).isTrue();
assertThat(Jsr310Converters.supports(Period.class)).isTrue();
assertThat(Jsr310Converters.supports(OffsetTime.class)).isTrue();
assertThat(Jsr310Converters.supports(OffsetDateTime.class)).isTrue();
}
}

View File

@@ -30,7 +30,6 @@ import java.util.Optional;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.Reference;
@@ -53,9 +52,7 @@ import org.springframework.data.redis.core.index.SimpleIndexDefinition;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.PagingAndSortingRepository;
import org.springframework.data.repository.query.QueryByExampleExecutor;
import org.springframework.lang.NonNull;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* Base for testing Redis repository support in different configurations.
@@ -483,9 +480,7 @@ public abstract class RedisRepositoryIntegrationTestBase {
@Test // GH-2677
void shouldProperlyHandleEntityWithOffsetJavaTimeTypes() {
User jonDoe = User.as("Jon Doe")
.expires(OffsetTime.now().plusMinutes(5))
.lastAccess(OffsetDateTime.now());
User jonDoe = User.of("Jon Doe").expires(OffsetTime.now().plusMinutes(5)).lastAccess(OffsetDateTime.now());
this.userRepository.save(jonDoe);
@@ -498,9 +493,8 @@ public abstract class RedisRepositoryIntegrationTestBase {
assertThat(loadedJonDoe.getExpiration()).isEqualTo(jonDoe.getExpiration());
}
public static interface PersonRepository
extends PagingAndSortingRepository<Person, String>, CrudRepository<Person, String>,
QueryByExampleExecutor<Person> {
public static interface PersonRepository extends PagingAndSortingRepository<Person, String>,
CrudRepository<Person, String>, QueryByExampleExecutor<Person> {
List<Person> findByFirstname(String firstname);
@@ -543,7 +537,7 @@ public abstract class RedisRepositoryIntegrationTestBase {
public interface ImmutableObjectRepository extends CrudRepository<Immutable, String> {}
public interface UserRepository extends CrudRepository<User, String> { }
public interface UserRepository extends CrudRepository<User, String> {}
/**
* Custom Redis {@link IndexConfiguration} forcing index of {@link Person#lastname}.
@@ -613,22 +607,20 @@ public abstract class RedisRepositoryIntegrationTestBase {
@RedisHash("Users")
static class User {
static User as(@NonNull String name) {
Assert.hasText(name, () -> String.format("Name [%s] of User is required", name));
return new User(name);
}
@Id private final String name;
private OffsetDateTime lastAccessed;
private OffsetTime expiration;
@Id
private final String name;
private User(@NonNull String name) {
private User(String name) {
this.name = name;
}
static User of(String name) {
return new User(name);
}
@Nullable
public OffsetTime getExpiration() {
return this.expiration;
@@ -643,38 +635,15 @@ public abstract class RedisRepositoryIntegrationTestBase {
return this.name;
}
public User lastAccess(@Nullable OffsetDateTime dateTime) {
public User lastAccess(OffsetDateTime dateTime) {
this.lastAccessed = dateTime;
return this;
}
public User expires(@Nullable OffsetTime time) {
public User expires(OffsetTime time) {
this.expiration = time;
return this;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof User that)) {
return false;
}
return this.getName().equals(that.getName());
}
@Override
public int hashCode() {
return Objects.hash(getName());
}
@Override
public String toString() {
return getName();
}
}
}