Skip to content

Commit bde6e00

Browse files
ewollesenonsi
authored andcommittedMay 7, 2024·
ignore hidden files
Hidden files are defined here as those beginning with '.' or '_'. This is a departure from previous behavior, where hidden source and test files were evaluated via watch. Evaluating hidden files is undesirable because some editors create hidden temporary files, and these files shouldn't trigger test runs. No flag is added to restore the original behavior at this time as the new behavior is the same as "go test", and it is not expected that it will cause problems. If this change affects you, consider opening a PR to add a CLI flag to restore the previous behavior.
1 parent 7836496 commit bde6e00

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
 

‎ginkgo/watch/package_hash.go

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"fmt"
55
"os"
66
"regexp"
7+
"strings"
78
"time"
89
)
910

@@ -79,6 +80,10 @@ func (p *PackageHash) computeHashes() (codeHash string, codeModifiedTime time.Ti
7980
continue
8081
}
8182

83+
if isHiddenFile(info) {
84+
continue
85+
}
86+
8287
if goTestRegExp.MatchString(info.Name()) {
8388
testHash += p.hashForFileInfo(info)
8489
if info.ModTime().After(testModifiedTime) {
@@ -103,6 +108,10 @@ func (p *PackageHash) computeHashes() (codeHash string, codeModifiedTime time.Ti
103108
return
104109
}
105110

111+
func isHiddenFile(info os.FileInfo) bool {
112+
return strings.HasPrefix(info.Name(), ".") || strings.HasPrefix(info.Name(), "_")
113+
}
114+
106115
func (p *PackageHash) hashForFileInfo(info os.FileInfo) string {
107116
return fmt.Sprintf("%s_%d_%d", info.Name(), info.Size(), info.ModTime().UnixNano())
108117
}

‎integration/watch_test.go

+25
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ var _ = Describe("Watch", Label("SLOW"), func() {
2020
fm.MountFixture("watch", "C")
2121
})
2222

23+
createFile := func(path string, contents []byte) {
24+
time.Sleep(time.Second)
25+
err := os.WriteFile(path, contents, 0666)
26+
Ω(err).ShouldNot(HaveOccurred())
27+
}
28+
29+
createHiddenTest := func(pkgToModify string) {
30+
path := filepath.Join(pkgToModify, ".#"+pkgToModify+"_test.go")
31+
fm.MkEmpty(filepath.Join("watch", pkgToModify))
32+
createFile(fm.PathTo("watch", path), []byte("//"))
33+
}
34+
2335
modifyFile := func(path string) {
2436
time.Sleep(time.Second)
2537
content, err := os.ReadFile(path)
@@ -185,6 +197,19 @@ var _ = Describe("Watch", Label("SLOW"), func() {
185197
Eventually(session).Should(gbytes.Say("C Suite"))
186198
Consistently(session).ShouldNot(gbytes.Say("A Suite|B Suite"))
187199
})
200+
201+
Context("when a hidden test file is created", func() {
202+
It("shouldn't trigger the test suite", func() {
203+
session = startGinkgo(fm.PathTo("watch"), "watch", "-r")
204+
Eventually(session).Should(gbytes.Say("Identified 3 test suites"))
205+
Eventually(session).Should(gbytes.Say(`A \[`))
206+
Eventually(session).Should(gbytes.Say(`B \[`))
207+
Eventually(session).Should(gbytes.Say(`C \[`))
208+
209+
createHiddenTest("A")
210+
Consistently(session).ShouldNot(gbytes.Say("Detected changes in"))
211+
})
212+
})
188213
})
189214

190215
Describe("adjusting the watch regular expression", func() {

0 commit comments

Comments
 (0)
Please sign in to comment.