-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#472 Migrate buckets command to cobra style commands
Signed-off-by: tommy shem <[email protected]>
- Loading branch information
tommy shem
committed
Nov 21, 2024
1 parent
a28237b
commit 76ff28c
Showing
5 changed files
with
94 additions
and
89 deletions.
There are no files selected for viewing
This file contains 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,45 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
bolt "go.etcd.io/bbolt" | ||
) | ||
|
||
func newBucketsCommand() *cobra.Command { | ||
var bucketsCmd = &cobra.Command{ | ||
Use: "buckets <path>", | ||
Short: "print a list of buckets", | ||
Args: cobra.ExactArgs(1), | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
return bucketsFunc(cmd, args[0]) | ||
}, | ||
} | ||
return bucketsCmd | ||
} | ||
|
||
func bucketsFunc(cmd *cobra.Command, srcDBPath string) error { | ||
// Required database path. | ||
if srcDBPath == "" { | ||
return ErrPathRequired | ||
// Verify if the specified database file exists. | ||
} else if _, err := checkSourceDBPath(srcDBPath); err != nil { | ||
return err | ||
} | ||
|
||
// Open database. | ||
db, err := bolt.Open(srcDBPath, 0600, &bolt.Options{ReadOnly: true}) | ||
if err != nil { | ||
return err | ||
} | ||
defer db.Close() | ||
|
||
// Print the list of buckets in the database. | ||
return db.View(func(tx *bolt.Tx) error { | ||
return tx.ForEach(func(name []byte, _ *bolt.Bucket) error { | ||
fmt.Fprintln(cmd.OutOrStdout(), string(name)) | ||
return nil | ||
}) | ||
}) | ||
} |
This file contains 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,48 @@ | ||
package main_test | ||
|
||
import ( | ||
"bytes" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
bolt "go.etcd.io/bbolt" | ||
main "go.etcd.io/bbolt/cmd/bbolt" | ||
"go.etcd.io/bbolt/internal/btesting" | ||
) | ||
|
||
// Ensure the "buckets" command can print a list of buckets. | ||
func TestBuckets(t *testing.T) { | ||
// Create a test database and populate it with sample buckets. | ||
t.Log("Creating sample DB") | ||
db := btesting.MustCreateDB(t) | ||
t.Log("Creating sample Buckets") | ||
if err := db.Update(func(tx *bolt.Tx) error { | ||
for _, name := range []string{"foo", "bar", "baz"} { | ||
_, err := tx.CreateBucket([]byte(name)) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
return nil | ||
}); err != nil { | ||
t.Fatal(err) | ||
} | ||
db.Close() | ||
defer requireDBNoChange(t, dbData(t, db.Path()), db.Path()) | ||
|
||
// setup the buckets command. | ||
t.Log("Running buckets command") | ||
rootCmd := main.NewRootCommand() | ||
var args []string = []string{"buckets", db.Path()} | ||
outputBuf := bytes.NewBufferString("") | ||
rootCmd.SetOut(outputBuf) | ||
rootCmd.SetErr(outputBuf) | ||
rootCmd.SetArgs(args) | ||
_, err := rootCmd.ExecuteC() | ||
actualOutput := outputBuf.String() | ||
require.NoError(t, err) | ||
t.Log("Verify result") | ||
expected := "bar\nbaz\nfoo\n" | ||
require.EqualValues(t, expected, actualOutput) | ||
} |
This file contains 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 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 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