mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-08 22:57:50 +08:00

For the rest of the packages in util, move them to thirdparty and update the references. util is gone! License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
79 lines
1.2 KiB
Go
79 lines
1.2 KiB
Go
package mfs
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
ci "github.com/ipfs/go-ipfs/thirdparty/testutil/ci"
|
|
|
|
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
|
|
)
|
|
|
|
func TestRepublisher(t *testing.T) {
|
|
if ci.IsRunning() {
|
|
t.Skip("dont run timing tests in CI")
|
|
}
|
|
|
|
ctx := context.TODO()
|
|
|
|
pub := make(chan struct{})
|
|
|
|
pf := func(ctx context.Context, k key.Key) error {
|
|
pub <- struct{}{}
|
|
return nil
|
|
}
|
|
|
|
tshort := time.Millisecond * 50
|
|
tlong := time.Second / 2
|
|
|
|
rp := NewRepublisher(ctx, pf, tshort, tlong)
|
|
go rp.Run()
|
|
|
|
rp.Update("test")
|
|
|
|
// should hit short timeout
|
|
select {
|
|
case <-time.After(tshort * 2):
|
|
t.Fatal("publish didnt happen in time")
|
|
case <-pub:
|
|
}
|
|
|
|
cctx, cancel := context.WithCancel(context.Background())
|
|
|
|
go func() {
|
|
for {
|
|
rp.Update("a")
|
|
time.Sleep(time.Millisecond * 10)
|
|
select {
|
|
case <-cctx.Done():
|
|
return
|
|
default:
|
|
}
|
|
}
|
|
}()
|
|
|
|
select {
|
|
case <-pub:
|
|
t.Fatal("shouldnt have received publish yet!")
|
|
case <-time.After((tlong * 9) / 10):
|
|
}
|
|
select {
|
|
case <-pub:
|
|
case <-time.After(tlong / 2):
|
|
t.Fatal("waited too long for pub!")
|
|
}
|
|
|
|
cancel()
|
|
|
|
go func() {
|
|
err := rp.Close()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}()
|
|
|
|
// final pub from closing
|
|
<-pub
|
|
}
|