Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: demo offset parsing tests in java-core + java.time #3345

Draft
wants to merge 18 commits into
base: main
Choose a base branch
from

Conversation

diegomarquezp
Copy link
Contributor

No description provided.

@diegomarquezp diegomarquezp added the do not merge Indicates a pull request not ready for merge, due to either quality or timing. label Nov 7, 2024
@product-auto-label product-auto-label bot added the size: l Pull request size is large. label Nov 7, 2024
Comment on lines +291 to +300
void demoAssertion1() {
assertThat(Timestamp.parseTimestampDuration("2020-07-10T14:03:00.123-07:00"))
.isEqualTo(Timestamp.ofTimeSecondsAndNanos(1594414980, 123000000));
}

@Test
void demoAssertion2() {
assertThat(Timestamp.parseTimestampDuration("2020-12-06T19:21:12.123+05:30"))
.isEqualTo(Timestamp.ofTimeSecondsAndNanos(1607262672, 123000000));
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added these two tests to separately confirm that both offset conversion test cases are failing when using appendOffsetId() using java.time in java 8

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error:  Failures: 
Error:    TimestampTest.demoAssertion1:293 value of: parseTimestampDuration(...)
expected: 2020-07-10T21:03:00.123000000Z
but was : 2020-07-10T14:03:00.123000000Z
Error:    TimestampTest.demoAssertion2:299 value of: parseTimestampDuration(...)
expected: 2020-12-06T13:51:12.123000000Z
but was : 2020-12-06T19:21:12.123000000Z

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
do not merge Indicates a pull request not ready for merge, due to either quality or timing. size: l Pull request size is large.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant