cmd: add whoami environment output + tests (1360)#1439
Closed
RoryGlenn wants to merge 1 commit intostripe:masterfrom
Closed
cmd: add whoami environment output + tests (1360)#1439RoryGlenn wants to merge 1 commit intostripe:masterfrom
RoryGlenn wants to merge 1 commit intostripe:masterfrom
Conversation
Collaborator
|
closing in favor of #1508 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reviewers
r @tomer-stripe
cc @stripe/developer-products
Title
Add stripe whoami + tests (issue #1360)
PR Description
This PR adds a stripe whoami command to make it easy to confirm which Stripe CLI profile/environment a terminal is currently using (requested in #1360). This helps when running multiple terminals against different sandboxes/accounts and you need to verify you’re listening/triggering in the right place.
Changes:
stripe whoami outputs current profile/project name, account_id, display_name, device_name, color, and API key presence.
Adds JSON output (--json) for easy diffing across terminals.
Adds optional redacted key output (--show-keys) to confirm which key is in use without exposing secrets.
Fix: populate live_mode_key_expires_at (previously printed/serialized but never set).
UX: JSON output now ends with a newline (avoids zsh showing a trailing %).
Tests:
Added unit tests covering JSON + human output and --show-keys redaction.
Made resource tests hermetic by clearing STRIPE_API_KEY to avoid developer env leakage.
How to test:
go test repos.
go test ./pkg/cmd -run TestWhoami
Fixes #1360