1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
// Copyright 2023 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 watch
import (
"fmt"
"testing"
. "golang.org/x/tools/gopls/internal/test/integration"
)
func TestSubdirWatchPatterns(t *testing.T) {
const files = `
-- go.mod --
module mod.test
go 1.18
-- subdir/subdir.go --
package subdir
`
tests := []struct {
clientName string
subdirWatchPatterns string
wantWatched bool
}{
{"other client", "on", true},
{"other client", "off", false},
{"other client", "auto", false},
{"Visual Studio Code", "auto", true},
}
for _, test := range tests {
t.Run(fmt.Sprintf("%s_%s", test.clientName, test.subdirWatchPatterns), func(t *testing.T) {
WithOptions(
ClientName(test.clientName),
Settings{
"subdirWatchPatterns": test.subdirWatchPatterns,
},
).Run(t, files, func(t *testing.T, env *Env) {
var expectation Expectation
if test.wantWatched {
expectation = FileWatchMatching("subdir")
} else {
expectation = NoFileWatchMatching("subdir")
}
env.OnceMet(
InitialWorkspaceLoad,
expectation,
)
})
})
}
}
// This test checks that we surface errors for invalid subdir watch patterns,
// as the triple of ("off"|"on"|"auto") may be confusing to users inclined to
// use (true|false) or some other truthy value.
func TestSubdirWatchPatterns_BadValues(t *testing.T) {
tests := []struct {
badValue interface{}
wantMessage string
}{
{true, "invalid type bool (want string)"},
{false, "invalid type bool (want string)"},
{"yes", `invalid option "yes"`},
}
for _, test := range tests {
t.Run(fmt.Sprint(test.badValue), func(t *testing.T) {
WithOptions(
Settings{
"subdirWatchPatterns": test.badValue,
},
).Run(t, "", func(t *testing.T, env *Env) {
env.OnceMet(
InitialWorkspaceLoad,
ShownMessage(test.wantMessage),
)
})
})
}
}
|