-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
622f5e4
commit 93a30dc
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
jr-record-test/src/test-jdk17/java/jr/failing/RecordDeser172Test.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,35 @@ | ||
package jr.failing; | ||
|
||
import java.time.Instant; | ||
import java.time.ZoneId; | ||
|
||
import junit.framework.TestCase; | ||
|
||
import com.fasterxml.jackson.jr.ob.JSON; | ||
|
||
public class RecordDeser172Test extends TestCase | ||
{ | ||
record FoundDependency(String id, String g, String a, String v, long timestamp) { | ||
public String getDateTime() { | ||
return Instant.ofEpochMilli(timestamp).atZone(ZoneId.systemDefault()).toLocalDate() | ||
.toString(); | ||
} | ||
} | ||
|
||
public void testRecordDeser172() throws Exception | ||
{ | ||
final String input = """ | ||
{ | ||
"id": "org.apache.maven:maven-core:3.9.8", | ||
"g": "org.apache.maven", | ||
"a": "maven-core", | ||
"v": "3.9.8", | ||
"p": "jar", | ||
"timestamp": 1718267050000 | ||
} | ||
"""; | ||
final var expected = new FoundDependency("org.apache.maven:maven-core:3.9.8", "org.apache.maven", "maven-core", "3.9.8", 1718267050000L); | ||
final var actual = JSON.std.beanFrom(FoundDependency.class, input); | ||
assertEquals(expected, actual); | ||
} | ||
} |