blob: c3b04ab44b9ed82b8f68e5bd186891ce5fae397d [file] [log] [blame]
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
package wire
import (
"sync/atomic"
"testing"
"time"
)
func TestPeriodicTask(t *testing.T) {
var callCount int32
values := make(chan int32)
task := func() {
values <- atomic.AddInt32(&callCount, 1)
}
ptask := newPeriodicTask(10*time.Millisecond, task)
t.Run("Start1", func(t *testing.T) {
ptask.Start()
ptask.Start() // Tests duplicate start
if got, want := <-values, int32(1); got != want {
t.Errorf("got %d, want %d", got, want)
}
})
t.Run("Stop1", func(t *testing.T) {
ptask.Stop()
ptask.Stop() // Tests duplicate stop
select {
case got := <-values:
t.Errorf("got unexpected value %d", got)
default:
}
})
t.Run("Start2", func(t *testing.T) {
ptask.Start()
if got, want := <-values, int32(2); got != want {
t.Errorf("got %d, want %d", got, want)
}
})
t.Run("Stop2", func(t *testing.T) {
ptask.Stop()
select {
case got := <-values:
t.Errorf("got unexpected value %d", got)
default:
}
})
}