.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools / gopls@v0.6.9 / internal / regtest / env_test.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.6.9/internal/regtest/env_test.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools/gopls@v0.6.9/internal/regtest/env_test.go
new file mode 100644 (file)
index 0000000..e476be9
--- /dev/null
@@ -0,0 +1,67 @@
+// Copyright 2020 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package regtest
+
+import (
+       "context"
+       "encoding/json"
+       "testing"
+
+       "golang.org/x/tools/internal/lsp/protocol"
+)
+
+func TestProgressUpdating(t *testing.T) {
+       e := &Env{
+               state: State{
+                       outstandingWork: make(map[protocol.ProgressToken]*workProgress),
+                       completedWork:   make(map[string]uint64),
+               },
+       }
+       ctx := context.Background()
+       if err := e.onWorkDoneProgressCreate(ctx, &protocol.WorkDoneProgressCreateParams{
+               Token: "foo",
+       }); err != nil {
+               t.Fatal(err)
+       }
+       if err := e.onWorkDoneProgressCreate(ctx, &protocol.WorkDoneProgressCreateParams{
+               Token: "bar",
+       }); err != nil {
+               t.Fatal(err)
+       }
+       updates := []struct {
+               token string
+               value interface{}
+       }{
+               {"foo", protocol.WorkDoneProgressBegin{Kind: "begin", Title: "foo work"}},
+               {"bar", protocol.WorkDoneProgressBegin{Kind: "begin", Title: "bar work"}},
+               {"foo", protocol.WorkDoneProgressEnd{Kind: "end"}},
+               {"bar", protocol.WorkDoneProgressReport{Kind: "report", Percentage: 42}},
+       }
+       for _, update := range updates {
+               params := &protocol.ProgressParams{
+                       Token: update.token,
+                       Value: update.value,
+               }
+               data, err := json.Marshal(params)
+               if err != nil {
+                       t.Fatal(err)
+               }
+               var unmarshaled protocol.ProgressParams
+               if err := json.Unmarshal(data, &unmarshaled); err != nil {
+                       t.Fatal(err)
+               }
+               if err := e.onProgress(ctx, &unmarshaled); err != nil {
+                       t.Fatal(err)
+               }
+       }
+       if _, ok := e.state.outstandingWork["foo"]; ok {
+               t.Error("got work entry for \"foo\", want none")
+       }
+       got := *e.state.outstandingWork["bar"]
+       want := workProgress{title: "bar work", percent: 42}
+       if got != want {
+               t.Errorf("work progress for \"bar\": %v, want %v", got, want)
+       }
+}