-
Notifications
You must be signed in to change notification settings - Fork 1k
[wrangler] Add --json flag to r2 bucket info command #9530
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
Merged
petebacondarwin
merged 6 commits into
cloudflare:main
from
Akshit222:wrangler-r2-info-json
Aug 2, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5ea58a2
Clean commit: Add --json flag to r2 bucket info
Akshit222 bb2e74a
Update packages/wrangler/src/r2/bucket.ts
Akshit222 323a1ea
test: simplify R2 bucket --json test per review suggestion
Akshit222 ea83be3
Update .changeset/happy-streets-leave.md
petebacondarwin da1b52a
fix formatting
petebacondarwin 9ec5cf8
skip remote unenv-preset tests on forks
petebacondarwin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "wrangler": minor | ||
| --- | ||
|
|
||
| Add --json flag to r2 bucket info command for machine-readable output. |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| import { beforeEach, describe, expect, it, vi } from "vitest"; | ||
| import { getR2Bucket, getR2BucketMetrics } from "../../r2/helpers"; | ||
| import { requireAuth } from "../../user"; | ||
| import { mockConsoleMethods } from "../helpers/mock-console"; | ||
| import { runWrangler } from "../helpers/run-wrangler"; | ||
|
|
||
| vi.unmock("../../wrangler-banner"); | ||
|
|
||
| vi.mock("../../r2/helpers"); | ||
| vi.mock("../../user"); | ||
|
|
||
| const logs = mockConsoleMethods(); | ||
|
|
||
| const mockRequireAuth = vi.mocked(requireAuth); | ||
| const mockGetR2Bucket = vi.mocked(getR2Bucket); | ||
| const mockGetR2BucketMetrics = vi.mocked(getR2BucketMetrics); | ||
|
|
||
| describe("r2 bucket info", () => { | ||
| beforeEach(() => { | ||
| vi.resetAllMocks(); | ||
|
|
||
| mockRequireAuth.mockResolvedValue("test-account-id"); | ||
| mockGetR2Bucket.mockResolvedValue({ | ||
| name: "my-bucket-name", | ||
| creation_date: "2025-06-07T15:55:22.222Z", | ||
| location: "APAC", | ||
| storage_class: "Standard", | ||
| }); | ||
| mockGetR2BucketMetrics.mockResolvedValue({ | ||
| objectCount: 0, | ||
| totalSize: "0 B", | ||
| }); | ||
| }); | ||
|
|
||
| it("should output valid JSON format when --json flag is used", async () => { | ||
| await runWrangler("r2 bucket info my-bucket-name --json"); | ||
| const json = JSON.parse(logs.out); | ||
| expect(json.name).toBe("my-bucket-name"); | ||
| }); | ||
| }); | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.