-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
5 changed files
with
105 additions
and
101 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
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
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
61 changes: 61 additions & 0 deletions
61
src/test/java/org/springframework/data/redis/core/convert/Jsr310ConvertersTest.java
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 |
---|---|---|
@@ -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(); | ||
} | ||
} |
Oops, something went wrong.