-
Notifications
You must be signed in to change notification settings - Fork 918
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
Emulator Idempotency: Auth #8750
Conversation
🦋 Changeset detectedLatest commit: c829d99 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Vertex AI Mock Responses Check
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1This report is too large (639,879 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
host, | ||
port, | ||
protocol: protocol.replace(':', ''), | ||
options: Object.freeze({ disableWarnings }) | ||
}); | ||
|
||
if (!authInternal._canInitEmulator) { |
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.
I think this technically works but it doesn't make the logic clear. There's two reasons to throw here, one is if they're calling this for the first time too late (after a network call has been made, that's the purpose of authInternal._canInitEmulator
), and the second reason is if they're calling it for a second time with different args. This makes it look like we're only targeting the second case. It will actually work on the first case, of course, because the local vars emulator
and emulatorConfig
will have some properties, and won't match {}
, but I guess the fact it's nested inside a deepEqual
doesn't make it clear that's a case we're trying to block on.
I know it's more verbose, but instead of the || {}
maybe a separate _assert
before this one that just tests for the existence of authInternal.config.emulator
and authInternal.emulatorConfig
would make it clearer that we're covering 2 different cases?
Fixed typo in `multiple`
Discussion
Update the
connectAuthEmulator
function to support its invocation more than once. If the Auth instance is already in use, andconnectAuthEmulator
is invoked with the same configuration, then the invocation will now succeed instead of assert.This unlocks support for web frameworks which may render the page numerous times with the same instances of auth. Before this PR customers needed to add extra code to guard against calling
connectAuthEmulator
in their SSR logic. Now we do that guarding logic on their behalf which should simplify our customer's apps.Fixes #6824.
Testing
CI, new tests added to
packages/auth/src/core/auth/emulator.test.ts
.API Changes
N/A