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

Fix and test use of dates. fecha.parse usage is too strict and fails to parse dates without milliseconds given #200

Open
Connoropolous opened this issue Feb 25, 2022 · 4 comments
Labels
bug Something isn't working graphql-api Something at the layer of what is and isn't implemented that affects the graphql api test-writing Issues related to unit or integration tests

Comments

@Connoropolous
Copy link
Contributor

Connoropolous commented Feb 25, 2022

It seems the issue doesn't occur if you pass a decimal after the seconds, for milliseconds

This input:
hasPointInTime: "2022-02-20T01:30:15.01-08:00"

Became this:
hasPointInTime: "2022-02-20T09:30:15.010Z"

without passing milliseconds you get back null. However, we know the values are saved to the db so its just an issue with client side decoding of fields.

an issue with fecha.parse in connection.ts and happening at the JS layer.

Screen Shot 2022-02-24 at 9 56 04 PM

@pospi also said:
Add tests to ensure all necessary date formats are valid for DateTime fields in search fields (dates, date + time, date + time + seconds, date + time + seconds + millis).

May want to swap out the URI and DateTime GraphQL scalar resolvers; consider using https://github.com/Urigo/graphql-scalars.

@Connoropolous Connoropolous added the bug Something isn't working label Feb 25, 2022
@pospi

This comment was marked as duplicate.

@Connoropolous

This comment was marked as duplicate.

@Connoropolous Connoropolous added question Further information is requested and removed bug Something isn't working labels Feb 25, 2022
@Connoropolous Connoropolous changed the title hasPointInTime comes back null after being given without a decimal place on seconds, hasPointInTime comes back null after being given Feb 25, 2022
@pospi
Copy link
Member

pospi commented Feb 26, 2022

Interesting. Those fields are using chrono::datetime::DateTime<FixedOffset> in the backend, which I think accepts either format.

My tests are showing (checking the DHT through Playground)-

  • 2019-11-19T04:29:45.000Z is stored as 2019-11-19T04:29:45+10:00 (picking up my system TZ), returned as null
  • 2022-02-20T01:30:15.000-08:00 is stored as 2022-02-20T19:13:15+10:00 (timezone being coerced, uh-oh), returned as null
  • 2022-01-10T01:30:15Z is stored as 2022-01-10T11:30:15+10:00 (UTC being converted to local time), returned as null

Not sure how you managed to get a value returned from the backend. There may also be other conversions happening in the fecha parsing behaviour because I just did 4e1255d and can now get 2022-01-10T01:30:15Z returned in the same format it was passed in as.

So, definitely some weird stuff with the chrono crate going on that needs to be investigated. I guess converting from a DateTime<FixedOffset> .into() another DateTime<FixedOffset> causes some timezone conversion to happen?

@pospi pospi changed the title without a decimal place on seconds, hasPointInTime comes back null after being given DateTime conversion / parsing behaviours doing strange things with timezones Feb 26, 2022
@pospi

This comment was marked as outdated.

@Connoropolous Connoropolous added the graphql-api Something at the layer of what is and isn't implemented that affects the graphql api label Mar 4, 2022
@Connoropolous Connoropolous changed the title DateTime conversion / parsing behaviours doing strange things with timezones fecha.parse usage is too strict and fails to parse dates without milliseconds given Mar 11, 2022
@Connoropolous Connoropolous changed the title fecha.parse usage is too strict and fails to parse dates without milliseconds given Fix and test use of dates. fecha.parse usage is too strict and fails to parse dates without milliseconds given Mar 11, 2022
@Connoropolous Connoropolous added bug Something isn't working test-writing Issues related to unit or integration tests and removed question Further information is requested labels Mar 11, 2022
@Connoropolous Connoropolous removed this from MMR Sep 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working graphql-api Something at the layer of what is and isn't implemented that affects the graphql api test-writing Issues related to unit or integration tests
Projects
None yet
Development

No branches or pull requests

2 participants