diff options
author | Michael Muré <batolettre@gmail.com> | 2022-12-27 19:48:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-27 19:48:19 +0100 |
commit | d11ea5c2adec0fd92be30d3e3bdd1b5679d4118c (patch) | |
tree | bd77aa36941db325dcefd6440e4fe913e88708fa /commands/bug | |
parent | b11f60f5c02bd1c86cf14e58e90de4fe5e454e7c (diff) | |
parent | e920987860dd9392fefc4b222aa4d2446b74f3d8 (diff) | |
download | git-bug-d11ea5c2adec0fd92be30d3e3bdd1b5679d4118c.tar.gz |
Merge pull request #962 from MichaelMure/select-completion
commands: generic "select" code, move bug completion in bugcmd
Diffstat (limited to 'commands/bug')
-rw-r--r-- | commands/bug/bug_comment.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_comment_add.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_deselect.go | 5 | ||||
-rw-r--r-- | commands/bug/bug_label.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_label_new.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_label_rm.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_rm.go | 3 | ||||
-rw-r--r-- | commands/bug/bug_select.go | 13 | ||||
-rw-r--r-- | commands/bug/bug_show.go | 5 | ||||
-rw-r--r-- | commands/bug/bug_status.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_status_close.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_status_open.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_title.go | 6 | ||||
-rw-r--r-- | commands/bug/bug_title_edit.go | 6 | ||||
-rw-r--r-- | commands/bug/completion.go | 98 | ||||
-rw-r--r-- | commands/bug/select/select.go | 128 | ||||
-rw-r--r-- | commands/bug/select/select_test.go | 79 |
17 files changed, 133 insertions, 258 deletions
diff --git a/commands/bug/bug_comment.go b/commands/bug/bug_comment.go index bc665f0d..4dc8dc1f 100644 --- a/commands/bug/bug_comment.go +++ b/commands/bug/bug_comment.go @@ -4,8 +4,6 @@ import ( text "github.com/MichaelMure/go-term-text" "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" "github.com/MichaelMure/git-bug/util/colors" ) @@ -20,7 +18,7 @@ func newBugCommentCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugComment(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } cmd.AddCommand(newBugCommentNewCommand()) @@ -30,7 +28,7 @@ func newBugCommentCommand() *cobra.Command { } func runBugComment(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_comment_add.go b/commands/bug/bug_comment_add.go index b445ffad..ff406b4f 100644 --- a/commands/bug/bug_comment_add.go +++ b/commands/bug/bug_comment_add.go @@ -4,8 +4,6 @@ import ( "github.com/spf13/cobra" buginput "github.com/MichaelMure/git-bug/commands/bug/input" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" "github.com/MichaelMure/git-bug/util/text" ) @@ -27,7 +25,7 @@ func newBugCommentNewCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugCommentNew(env, options, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } flags := cmd.Flags() @@ -44,7 +42,7 @@ func newBugCommentNewCommand() *cobra.Command { } func runBugCommentNew(env *execenv.Env, opts bugCommentNewOptions, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_deselect.go b/commands/bug/bug_deselect.go index 7e2a86c9..090a7bf2 100644 --- a/commands/bug/bug_deselect.go +++ b/commands/bug/bug_deselect.go @@ -3,8 +3,9 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" "github.com/MichaelMure/git-bug/commands/execenv" + _select "github.com/MichaelMure/git-bug/commands/select" + "github.com/MichaelMure/git-bug/entities/bug" ) func newBugDeselectCommand() *cobra.Command { @@ -28,7 +29,7 @@ git bug deselect } func runBugDeselect(env *execenv.Env) error { - err := _select.Clear(env.Backend) + err := _select.Clear(env.Backend, bug.Namespace) if err != nil { return err } diff --git a/commands/bug/bug_label.go b/commands/bug/bug_label.go index 657fa2ca..e6d0e603 100644 --- a/commands/bug/bug_label.go +++ b/commands/bug/bug_label.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -18,7 +16,7 @@ func newBugLabelCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugLabel(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } cmd.AddCommand(newBugLabelNewCommand()) @@ -28,7 +26,7 @@ func newBugLabelCommand() *cobra.Command { } func runBugLabel(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_label_new.go b/commands/bug/bug_label_new.go index f94d3dc8..aa4f9463 100644 --- a/commands/bug/bug_label_new.go +++ b/commands/bug/bug_label_new.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" "github.com/MichaelMure/git-bug/util/text" ) @@ -19,14 +17,14 @@ func newBugLabelNewCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugLabelNew(env, args) }), - ValidArgsFunction: completion.BugAndLabels(env, true), + ValidArgsFunction: BugAndLabelsCompletion(env, true), } return cmd } func runBugLabelNew(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_label_rm.go b/commands/bug/bug_label_rm.go index 13ce4b81..18510bbd 100644 --- a/commands/bug/bug_label_rm.go +++ b/commands/bug/bug_label_rm.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" "github.com/MichaelMure/git-bug/util/text" ) @@ -19,14 +17,14 @@ func newBugLabelRmCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugLabelRm(env, args) }), - ValidArgsFunction: completion.BugAndLabels(env, false), + ValidArgsFunction: BugAndLabelsCompletion(env, false), } return cmd } func runBugLabelRm(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_rm.go b/commands/bug/bug_rm.go index 04881d54..386c57ec 100644 --- a/commands/bug/bug_rm.go +++ b/commands/bug/bug_rm.go @@ -5,7 +5,6 @@ import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -20,7 +19,7 @@ func newBugRmCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugRm(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } flags := cmd.Flags() diff --git a/commands/bug/bug_select.go b/commands/bug/bug_select.go index 2a4d1201..bfad899d 100644 --- a/commands/bug/bug_select.go +++ b/commands/bug/bug_select.go @@ -5,11 +5,16 @@ import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" + "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/commands/execenv" + _select "github.com/MichaelMure/git-bug/commands/select" + "github.com/MichaelMure/git-bug/entities/bug" ) +func ResolveSelected(repo *cache.RepoCache, args []string) (*cache.BugCache, []string, error) { + return _select.Resolve[*cache.BugCache](repo, bug.Typename, bug.Namespace, repo.Bugs(), args) +} + func newBugSelectCommand() *cobra.Command { env := execenv.NewEnv() @@ -33,7 +38,7 @@ The complementary command is "git bug deselect" performing the opposite operatio RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugSelect(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } return cmd @@ -51,7 +56,7 @@ func runBugSelect(env *execenv.Env, args []string) error { return err } - err = _select.Select(env.Backend, b.Id()) + err = _select.Select(env.Backend, bug.Namespace, b.Id()) if err != nil { return err } diff --git a/commands/bug/bug_show.go b/commands/bug/bug_show.go index 105b1150..6cf50015 100644 --- a/commands/bug/bug_show.go +++ b/commands/bug/bug_show.go @@ -8,7 +8,6 @@ import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" "github.com/MichaelMure/git-bug/commands/cmdjson" "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" @@ -32,7 +31,7 @@ func newBugShowCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugShow(env, options, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } flags := cmd.Flags() @@ -50,7 +49,7 @@ func newBugShowCommand() *cobra.Command { } func runBugShow(env *execenv.Env, opts bugShowOptions, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_status.go b/commands/bug/bug_status.go index b05f862c..807a9a60 100644 --- a/commands/bug/bug_status.go +++ b/commands/bug/bug_status.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -18,7 +16,7 @@ func newBugStatusCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugStatus(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } cmd.AddCommand(newBugStatusCloseCommand()) @@ -28,7 +26,7 @@ func newBugStatusCommand() *cobra.Command { } func runBugStatus(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_status_close.go b/commands/bug/bug_status_close.go index fcd47922..e52959b2 100644 --- a/commands/bug/bug_status_close.go +++ b/commands/bug/bug_status_close.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -18,14 +16,14 @@ func newBugStatusCloseCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugStatusClose(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } return cmd } func runBugStatusClose(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_status_open.go b/commands/bug/bug_status_open.go index e686add1..74177974 100644 --- a/commands/bug/bug_status_open.go +++ b/commands/bug/bug_status_open.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -18,14 +16,14 @@ func newBugStatusOpenCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugStatusOpen(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } return cmd } func runBugStatusOpen(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_title.go b/commands/bug/bug_title.go index 98809b60..e59a1fdc 100644 --- a/commands/bug/bug_title.go +++ b/commands/bug/bug_title.go @@ -3,8 +3,6 @@ package bugcmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" ) @@ -18,7 +16,7 @@ func newBugTitleCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugTitle(env, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } cmd.AddCommand(newBugTitleEditCommand()) @@ -27,7 +25,7 @@ func newBugTitleCommand() *cobra.Command { } func runBugTitle(env *execenv.Env, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/bug_title_edit.go b/commands/bug/bug_title_edit.go index bf9f6375..59898530 100644 --- a/commands/bug/bug_title_edit.go +++ b/commands/bug/bug_title_edit.go @@ -4,8 +4,6 @@ import ( "github.com/spf13/cobra" buginput "github.com/MichaelMure/git-bug/commands/bug/input" - "github.com/MichaelMure/git-bug/commands/bug/select" - "github.com/MichaelMure/git-bug/commands/completion" "github.com/MichaelMure/git-bug/commands/execenv" "github.com/MichaelMure/git-bug/util/text" ) @@ -26,7 +24,7 @@ func newBugTitleEditCommand() *cobra.Command { RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error { return runBugTitleEdit(env, options, args) }), - ValidArgsFunction: completion.Bug(env), + ValidArgsFunction: BugCompletion(env), } flags := cmd.Flags() @@ -41,7 +39,7 @@ func newBugTitleEditCommand() *cobra.Command { } func runBugTitleEdit(env *execenv.Env, opts bugTitleEditOptions, args []string) error { - b, args, err := _select.ResolveBug(env.Backend, args) + b, args, err := ResolveSelected(env.Backend, args) if err != nil { return err } diff --git a/commands/bug/completion.go b/commands/bug/completion.go new file mode 100644 index 00000000..4754f97d --- /dev/null +++ b/commands/bug/completion.go @@ -0,0 +1,98 @@ +package bugcmd + +import ( + "strings" + + "github.com/spf13/cobra" + + "github.com/MichaelMure/git-bug/cache" + "github.com/MichaelMure/git-bug/commands/completion" + "github.com/MichaelMure/git-bug/commands/execenv" + _select "github.com/MichaelMure/git-bug/commands/select" + "github.com/MichaelMure/git-bug/entities/bug" +) + +// BugCompletion complete a bug id +func BugCompletion(env *execenv.Env) completion.ValidArgsFunction { + return func(cmd *cobra.Command, args []string, toComplete string) (completions []string, directives cobra.ShellCompDirective) { + if err := execenv.LoadBackend(env)(cmd, args); err != nil { + return completion.HandleError(err) + } + defer func() { + _ = env.Backend.Close() + }() + + return bugWithBackend(env.Backend, toComplete) + } +} + +func bugWithBackend(backend *cache.RepoCache, toComplete string) (completions []string, directives cobra.ShellCompDirective) { + for _, id := range backend.Bugs().AllIds() { + if strings.Contains(id.String(), strings.TrimSpace(toComplete)) { + excerpt, err := backend.Bugs().ResolveExcerpt(id) + if err != nil { + return completion.HandleError(err) + } + completions = append(completions, id.Human()+"\t"+excerpt.Title) + } + } + + return completions, cobra.ShellCompDirectiveNoFileComp +} + +// BugAndLabelsCompletion complete either a bug ID or a label if we know about the bug +func BugAndLabelsCompletion(env *execenv.Env, addOrRemove bool) completion.ValidArgsFunction { + return func(cmd *cobra.Command, args []string, toComplete string) (completions []string, directives cobra.ShellCompDirective) { + if err := execenv.LoadBackend(env)(cmd, args); err != nil { + return completion.HandleError(err) + } + defer func() { + _ = env.Backend.Close() + }() + + b, args, err := ResolveSelected(env.Backend, args) + if _select.IsErrNoValidId(err) { + // we need a bug first to complete labels + return bugWithBackend(env.Backend, toComplete) + } + if err != nil { + return completion.HandleError(err) + } + + snap := b.Snapshot() + + seenLabels := map[bug.Label]bool{} + for _, label := range args { + seenLabels[bug.Label(label)] = addOrRemove + } + + var labels []bug.Label + if addOrRemove { + for _, label := range snap.Labels { + seenLabels[label] = true + } + + allLabels := env.Backend.Bugs().ValidLabels() + labels = make([]bug.Label, 0, len(allLabels)) + for _, label := range allLabels { + if !seenLabels[label] { + labels = append(labels, label) + } + } + } else { + labels = make([]bug.Label, 0, len(snap.Labels)) + for _, label := range snap.Labels { + if seenLabels[label] { + labels = append(labels, label) + } + } + } + + completions = make([]string, len(labels)) + for i, label := range labels { + completions[i] = string(label) + "\t" + "Label" + } + + return completions, cobra.ShellCompDirectiveNoFileComp + } +} diff --git a/commands/bug/select/select.go b/commands/bug/select/select.go deleted file mode 100644 index 7096dde4..00000000 --- a/commands/bug/select/select.go +++ /dev/null @@ -1,128 +0,0 @@ -package _select - -import ( - "fmt" - "io" - "io/ioutil" - "os" - - "github.com/pkg/errors" - - "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/entity" -) - -const selectFile = "select" - -var ErrNoValidId = errors.New("you must provide a bug id or use the \"select\" command first") - -// ResolveBug first try to resolve a bug using the first argument of the command -// line. If it fails, it falls back to the select mechanism. -// -// Returns: -// - the bug if any -// - the new list of command line arguments with the bug prefix removed if it -// has been used -// - an error if the process failed -func ResolveBug(repo *cache.RepoCache, args []string) (*cache.BugCache, []string, error) { - // At first, try to use the first argument as a bug prefix - if len(args) > 0 { - b, err := repo.Bugs().ResolvePrefix(args[0]) - - if err == nil { - return b, args[1:], nil - } - - if !entity.IsErrNotFound(err) { - return nil, nil, err - } - } - - // first arg is not a valid bug prefix, we can safely use the preselected bug if any - - b, err := selected(repo) - - // selected bug is invalid - if entity.IsErrNotFound(err) { - // we clear the selected bug - err = Clear(repo) - if err != nil { - return nil, nil, err - } - return nil, nil, ErrNoValidId - } - - // another error when reading the bug - if err != nil { - return nil, nil, err - } - - // bug is successfully retrieved - if b != nil { - return b, args, nil - } - - // no selected bug and no valid first argument - return nil, nil, ErrNoValidId -} - -// Select will select a bug for future use -func Select(repo *cache.RepoCache, id entity.Id) error { - f, err := repo.LocalStorage().OpenFile(selectFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666) - if err != nil { - return err - } - - _, err = f.Write([]byte(id.String())) - if err != nil { - return err - } - - return f.Close() -} - -// Clear will clear the selected bug, if any -func Clear(repo *cache.RepoCache) error { - return repo.LocalStorage().Remove(selectFile) -} - -func selected(repo *cache.RepoCache) (*cache.BugCache, error) { - f, err := repo.LocalStorage().Open(selectFile) - if err != nil { - if os.IsNotExist(err) { - return nil, nil - } else { - return nil, err - } - } - - buf, err := ioutil.ReadAll(io.LimitReader(f, 100)) - if err != nil { - return nil, err - } - if len(buf) == 100 { - return nil, fmt.Errorf("the select file should be < 100 bytes") - } - - id := entity.Id(buf) - if err := id.Validate(); err != nil { - err = repo.LocalStorage().Remove(selectFile) - if err != nil { - return nil, errors.Wrap(err, "error while removing invalid select file") - } - - return nil, fmt.Errorf("select file in invalid, removing it") - } - - b, err := repo.Bugs().Resolve(id) - if err != nil { - return nil, err - } - - err = f.Close() - if err != nil { - return nil, err - } - - return b, nil -} diff --git a/commands/bug/select/select_test.go b/commands/bug/select/select_test.go deleted file mode 100644 index 83ca6643..00000000 --- a/commands/bug/select/select_test.go +++ /dev/null @@ -1,79 +0,0 @@ -package _select - -import ( - "testing" - "time" - - "github.com/stretchr/testify/require" - - "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/repository" -) - -func TestSelect(t *testing.T) { - repo := repository.CreateGoGitTestRepo(t, false) - - repoCache, err := cache.NewRepoCacheNoEvents(repo) - require.NoError(t, err) - - _, _, err = ResolveBug(repoCache, []string{}) - require.Equal(t, ErrNoValidId, err) - - err = Select(repoCache, "invalid") - require.NoError(t, err) - - // Resolve without a pattern should fail when no bug is selected - _, _, err = ResolveBug(repoCache, []string{}) - require.Error(t, err) - - // generate a bunch of bugs - - rene, err := repoCache.Identities().New("René Descartes", "rene@descartes.fr") - require.NoError(t, err) - - for i := 0; i < 10; i++ { - _, _, err := repoCache.Bugs().NewRaw(rene, time.Now().Unix(), "title", "message", nil, nil) - require.NoError(t, err) - } - - // and two more for testing - b1, _, err := repoCache.Bugs().NewRaw(rene, time.Now().Unix(), "title", "message", nil, nil) - require.NoError(t, err) - b2, _, err := repoCache.Bugs().NewRaw(rene, time.Now().Unix(), "title", "message", nil, nil) - require.NoError(t, err) - - err = Select(repoCache, b1.Id()) - require.NoError(t, err) - - // normal select without args - b3, _, err := ResolveBug(repoCache, []string{}) - require.NoError(t, err) - require.Equal(t, b1.Id(), b3.Id()) - - // override selection with same id - b4, _, err := ResolveBug(repoCache, []string{b1.Id().String()}) - require.NoError(t, err) - require.Equal(t, b1.Id(), b4.Id()) - - // override selection with a prefix - b5, _, err := ResolveBug(repoCache, []string{b1.Id().Human()}) - require.NoError(t, err) - require.Equal(t, b1.Id(), b5.Id()) - - // args that shouldn't override - b6, _, err := ResolveBug(repoCache, []string{"arg"}) - require.NoError(t, err) - require.Equal(t, b1.Id(), b6.Id()) - - // override with a different id - b7, _, err := ResolveBug(repoCache, []string{b2.Id().String()}) - require.NoError(t, err) - require.Equal(t, b2.Id(), b7.Id()) - - err = Clear(repoCache) - require.NoError(t, err) - - // Resolve without a pattern should error again after clearing the selected bug - _, _, err = ResolveBug(repoCache, []string{}) - require.Error(t, err) -} |