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

[Bug] Parse duration #1169

Closed
X2Style opened this issue May 7, 2024 · 2 comments · Fixed by #1180
Closed

[Bug] Parse duration #1169

X2Style opened this issue May 7, 2024 · 2 comments · Fixed by #1180
Labels
bug Something isn't working type:bug A broken experience
Milestone

Comments

@X2Style
Copy link
Contributor

X2Style commented May 7, 2024

Response of the GET booking business has duration stored as P365D (schedulingPolicy.maximumAdvance)
It is parsed by tinyduration as {days: 365}
Then it fails with the error - https://github.com/microsoft/kiota-typescript/blob/main/packages/abstractions/src/duration.ts#L41

@github-project-automation github-project-automation bot moved this to Todo 📃 in Kiota May 7, 2024
@baywet
Copy link
Member

baywet commented May 7, 2024

Hi @X2Style
Thanks for using the Microsoft Graph SDK, and for reporting this.

I'm not sure why we have this validation rule here since the RFC3339 duration format is specified as following:

   dur-second        = 1*DIGIT "S"
   dur-minute        = 1*DIGIT "M" [dur-second]
   dur-hour          = 1*DIGIT "H" [dur-minute]
   dur-time          = "T" (dur-hour / dur-minute / dur-second)
   dur-day           = 1*DIGIT "D"
   dur-week          = 1*DIGIT "W"
   dur-month         = 1*DIGIT "M" [dur-day]
   dur-year          = 1*DIGIT "Y" [dur-month]
   dur-date          = (dur-day / dur-month / dur-year) [dur-time]

   duration          = "P" (dur-date / dur-time / dur-week)

Which in human language would read "one or more digit", nothing limits the day element to 7, especially when you consider you can't use it in combination with the week element.

So this rule should be removed IMHO, so should be the ones limiting the values of years, months, hours, and seconds.
Additionally, rules limiting the combined use of day-week, week-hour/second/minute should be added.

Is this something you'd be interested in submitting a pull request for?

@baywet baywet added bug Something isn't working type:bug A broken experience labels May 7, 2024
@baywet baywet added this to the Backlog milestone May 7, 2024
@X2Style
Copy link
Contributor Author

X2Style commented May 10, 2024

Hi @baywet I've created PR, could you please take a look? #1180

@github-project-automation github-project-automation bot moved this from Todo 📃 to Done ✔️ in Kiota May 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working type:bug A broken experience
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

2 participants