Merge pull request #13 from daulet/master

Fix potential miss of file update
This commit is contained in:
Umputun
2021-04-10 14:18:53 -05:00
committed by GitHub
2 changed files with 54 additions and 3 deletions

View File

@@ -26,10 +26,12 @@ func (d *File) Events(ctx context.Context) <-chan struct{} {
res := make(chan struct{})
// no need to queue multiple events
trySubmit := func(ch chan struct{}) {
trySubmit := func(ch chan struct{}) bool {
select {
case ch <- struct{}{}:
return true
default:
return false
}
}
@@ -50,8 +52,9 @@ func (d *File) Events(ctx context.Context) <-chan struct{} {
}
log.Printf("[DEBUG] file %s changed, %s -> %s", d.FileName,
lastModif.Format(time.RFC3339Nano), fi.ModTime().Format(time.RFC3339Nano))
lastModif = fi.ModTime()
trySubmit(res)
if trySubmit(res) {
lastModif = fi.ModTime()
}
}
case <-ctx.Done():
close(res)

View File

@@ -4,6 +4,7 @@ import (
"context"
"io/ioutil"
"os"
"sync"
"testing"
"time"
@@ -48,9 +49,56 @@ func TestFile_Events(t *testing.T) {
t.Log("event")
events++
}
// expecting events from creation + 3 writes
assert.Equal(t, 4, events)
}
func TestFile_Events_BusyListener(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 200*time.Millisecond)
defer cancel()
tmp, err := ioutil.TempFile(os.TempDir(), "reproxy-events-busy")
require.NoError(t, err)
_ = tmp.Close()
defer os.Remove(tmp.Name())
f := File{
FileName: tmp.Name(),
CheckInterval: 10 * time.Millisecond,
Delay: 20 * time.Millisecond,
}
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
for i := 0; i < 2; i++ {
time.Sleep(30 * time.Millisecond)
assert.NoError(t, ioutil.WriteFile(tmp.Name(), []byte("something"), 0600))
}
}()
ch := f.Events(ctx)
// exhaust creation and one write event
for i := 0; i < 2; i++ {
t.Log("event")
<- ch
}
// wait until last write definitely has happened
wg.Wait()
// stay busy for CheckInterval before accepting from channel
time.Sleep(10 * time.Millisecond)
events := 0
for range ch {
t.Log("event")
events++
}
assert.Equal(t, 1, events)
}
func TestFile_List(t *testing.T) {
f := File{FileName: "testdata/config.yml"}