* Add --repo flag to commands * Example of using common args * Add -r to stop * Add validation to the add helper * Skip prompt for single option * Migrate (mostly) everything to addGetOrChooseCodespaceCommandArgs * Fix typo in logsCmd * Use R instead of r * Update a couple -r usages * Refactor to codespace_selector * Clean up selector, apply it in a couple examples * Use apiClient instead in constructor * Restore addDeprecatedRepoShorthand * Finish implementing the commands * Update existing tests to use the selector * Add tests for selector * linter * Catch case where there's no conflict * Make the flag persistent for ports * Add support to stop
37 lines
960 B
Go
37 lines
960 B
Go
package codespace
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/cli/cli/v2/internal/codespaces/api"
|
|
"github.com/cli/cli/v2/pkg/iostreams"
|
|
)
|
|
|
|
func TestAlreadyRebuildingCodespace(t *testing.T) {
|
|
rebuildingCodespace := &api.Codespace{
|
|
Name: "rebuildingCodespace",
|
|
State: api.CodespaceStateRebuilding,
|
|
}
|
|
app := testingRebuildApp(*rebuildingCodespace)
|
|
selector := &CodespaceSelector{api: app.apiClient, codespaceName: "rebuildingCodespace"}
|
|
|
|
err := app.Rebuild(context.Background(), selector, false)
|
|
if err != nil {
|
|
t.Errorf("rebuilding a codespace that was already rebuilding: %v", err)
|
|
}
|
|
}
|
|
|
|
func testingRebuildApp(mockCodespace api.Codespace) *App {
|
|
apiMock := &apiClientMock{
|
|
GetCodespaceFunc: func(_ context.Context, name string, _ bool) (*api.Codespace, error) {
|
|
if name == mockCodespace.Name {
|
|
return &mockCodespace, nil
|
|
}
|
|
return nil, nil
|
|
},
|
|
}
|
|
|
|
ios, _, _, _ := iostreams.Test()
|
|
return NewApp(ios, nil, apiMock, nil, nil)
|
|
}
|