b24ea2ead5
this adds a test framework with fake implementations of a filesystem so that unit tests can be written asserting the output of different command invocations as well as the effects they have on a hypothetical filesystem and storj network. it also implements the mb command lol Change-Id: I134c7ea6bf34f46192956c274a96cb5df7632ac0
33 lines
600 B
Go
33 lines
600 B
Go
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/zeebo/clingy"
|
|
"github.com/zeebo/errs"
|
|
)
|
|
|
|
type cmdMb struct {
|
|
projectProvider
|
|
|
|
name string
|
|
}
|
|
|
|
func (c *cmdMb) Setup(a clingy.Arguments, f clingy.Flags) {
|
|
c.projectProvider.Setup(a, f)
|
|
|
|
c.name = a.New("name", "Bucket name (sj://BUCKET)").(string)
|
|
}
|
|
|
|
func (c *cmdMb) Execute(ctx clingy.Context) error {
|
|
project, err := c.OpenProject(ctx)
|
|
if err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
defer func() { _ = project.Close() }()
|
|
|
|
_, err = project.CreateBucket(ctx, c.name)
|
|
return err
|
|
}
|