-
Notifications
You must be signed in to change notification settings - Fork 233
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: expiration time of the ImpersonatedCredentials token depending on the current host's timezone #932
fix: expiration time of the ImpersonatedCredentials token depending on the current host's timezone #932
Conversation
🤖 I detect that the PR title and the commit message differ and there's only one commit. To use the PR title for the commit history, you can use Github's automerge feature with squashing, or use -- conventional-commit-lint bot |
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
@lsirac can't you please take a look, possibly something applicable to other languages |
be67ac7
to
43aede8
Compare
oauth2_http/javatests/com/google/auth/oauth2/ImpersonatedCredentialsTest.java
Outdated
Show resolved
Hide resolved
oauth2_http/javatests/com/google/auth/oauth2/ImpersonatedCredentialsTest.java
Outdated
Show resolved
Hide resolved
oauth2_http/javatests/com/google/auth/oauth2/ImpersonatedCredentialsTest.java
Outdated
Show resolved
Hide resolved
oauth2_http/javatests/com/google/auth/oauth2/ImpersonatedCredentialsTest.java
Show resolved
Hide resolved
|
||
mockTransportFactory.transport.setTargetPrincipal(IMPERSONATED_CLIENT_EMAIL); | ||
mockTransportFactory.transport.setAccessToken(ACCESS_TOKEN); | ||
mockTransportFactory.transport.setExpireTime(getFormattedTime(c.getTime())); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this just be getDefaultExpireTime() now since the time zone isn't get set differently?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It can't because we need the exact Date
instance used to generate the date string to later assert it was parsed correctly
oauth2_http/javatests/com/google/auth/oauth2/ImpersonatedCredentialsTest.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
credential should stay immutable
oauth2_http/javatests/com/google/auth/oauth2/ImpersonatedCredentialsTest.java
Outdated
Show resolved
Hide resolved
@@ -110,6 +111,8 @@ public class ImpersonatedCredentials extends GoogleCredentials | |||
|
|||
private transient HttpTransportFactory transportFactory; | |||
|
|||
@VisibleForTesting transient Calendar calendar = Calendar.getInstance(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be private and implemented via builder.
Maybe you can use the same approach as custom lifetime in ServiceAccountCredentials:
google-auth-library-java/oauth2_http/java/com/google/auth/oauth2/ServiceAccountCredentials.java
Line 666 in c21ec6c
public ServiceAccountCredentials createWithCustomLifetime(int lifetime) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
93c9f85
to
a3a3138
Compare
Warning: This pull request is touching the following templated files:
|
…btains the given expiration time date's timezone correctly instead of using local timezone
…xpirationTime was being incorrectly parsed, assuming the date was in the default JVM timezone instead of reading from the date string what timezone it was.
… the date instead of returning dates in different timezones Expose to tests the calendar object used by the SimpleDateFormat object of the refreshAccessToken method in the ImpersonatedCredentials class That way we stop relying on returning dates in different timezones in the expireTime returned by the mockTransportFactory
a3a3138
to
62d7b08
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
@ivan-f-n thanks for your contribution, please also sign Google cla, it is a quick process: https://cla.developers.google.com/ |
Hi @TimurSadykov, the CLA is currently being sorted out by my company, should have an update later this week. Thanks for the patience! 🙏 |
Hello @lsirac, @TimurSadykov |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fix bug in
ImpersonatedCredentials
class where the date received asexpirationTime
was being incorrectly parsed, assuming the date was in the host's timezone instead of reading from the date string what timezone it was.Fixes #931 ☕️