Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a data race in TestFileWatcher (#24). #25

Merged
merged 1 commit into from
Nov 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions core/pkg/watch/file_watcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,50 @@ package watch

import (
"io/ioutil"
"os"
"testing"
"time"
)

func prepareTimeout() chan bool {
timeoutChan := make(chan bool, 1)
go func() {
time.Sleep(1 * time.Second)
timeoutChan <- true
}()
return timeoutChan
}

func TestFileWatcher(t *testing.T) {
file, err := ioutil.TempFile("", "fw")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
defer file.Close()
defer os.Remove(file.Name())
count := 0
events := make(chan bool, 10)
fw, err := NewFileWatcher(file.Name(), func() {
count++
if count != 1 {
t.Fatalf("expected 1 but returned %v", count)
}
events <- true
})
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
defer fw.Close()
if count != 0 {
t.Fatalf("expected 0 but returned %v", count)
timeoutChan := prepareTimeout()
select {
case <-events:
t.Fatalf("expected no events before writing a file")
case <-timeoutChan:
}
ioutil.WriteFile(file.Name(), []byte{}, 0644)
select {
case <-events:
case <-timeoutChan:
t.Fatalf("expected an event shortly after writing a file")
}
}