Skip to content

Commit

Permalink
Add failing test for #172
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 5, 2024
1 parent 622f5e4 commit 93a30dc
Showing 1 changed file with 35 additions and 0 deletions.
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);
}
}

0 comments on commit 93a30dc

Please sign in to comment.