123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- // Copyright 2016 Google Inc. All Rights Reserved.
- //
- // 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
- //
- // http://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
- // limitations under the License.
- package pubsub
- import (
- "reflect"
- "sort"
- "sync"
- "testing"
- "time"
- "golang.org/x/net/context"
- )
- func TestKeepAlive(t *testing.T) {
- tick := make(chan time.Time)
- deadline := time.Nanosecond * 15
- s := &testService{modDeadlineCalled: make(chan modDeadlineCall)}
- c := &Client{projectID: "projid", s: s}
- checkModDeadlineCall := func(ackIDs []string) {
- got := <-s.modDeadlineCalled
- sort.Strings(got.ackIDs)
- want := modDeadlineCall{
- subName: "subname",
- deadline: deadline,
- ackIDs: ackIDs,
- }
- if !reflect.DeepEqual(got, want) {
- t.Errorf("keepalive: got:\n%v\nwant:\n%v", got, want)
- }
- }
- ka := &keepAlive{
- Client: c,
- Ctx: context.Background(),
- Sub: "subname",
- ExtensionTick: tick,
- Deadline: deadline,
- MaxExtension: time.Hour,
- }
- ka.Start()
- ka.Add("a")
- ka.Add("b")
- tick <- time.Time{}
- checkModDeadlineCall([]string{"a", "b"})
- ka.Add("c")
- ka.Remove("b")
- tick <- time.Time{}
- checkModDeadlineCall([]string{"a", "c"})
- ka.Remove("a")
- ka.Remove("c")
- // modifyAckDeadline should not be called now because there are no ackIDs left.
- tick <- time.Time{}
- ka.Add("d")
- tick <- time.Time{}
- checkModDeadlineCall([]string{"d"})
- ka.Remove("d")
- ka.Stop()
- }
- // TestKeepAliveStop checks that Stop blocks until all ackIDs have been removed.
- func TestKeepAliveStop(t *testing.T) {
- ticker := time.NewTicker(100 * time.Microsecond)
- defer ticker.Stop()
- s := &testService{modDeadlineCalled: make(chan modDeadlineCall, 100)}
- c := &Client{projectID: "projid", s: s}
- ka := &keepAlive{
- Client: c,
- ExtensionTick: ticker.C,
- MaxExtension: time.Hour,
- }
- ka.Start()
- events := make(chan string, 10)
- // Add an ackID so that ka.Stop will not return immediately.
- ka.Add("a")
- var wg sync.WaitGroup
- wg.Add(1)
- go func() {
- defer wg.Done()
- time.Sleep(time.Nanosecond * 1000)
- events <- "pre-remove"
- ka.Remove("a")
- time.Sleep(time.Nanosecond * 1000)
- events <- "post-second-sleep"
- }()
- wg.Add(1)
- go func() {
- defer wg.Done()
- events <- "pre-stop"
- ka.Stop()
- events <- "stopped"
- }()
- wg.Wait()
- close(events)
- eventSequence := []string{}
- for e := range events {
- eventSequence = append(eventSequence, e)
- }
- want := []string{"pre-stop", "pre-remove", "stopped", "post-second-sleep"}
- if !reflect.DeepEqual(eventSequence, want) {
- t.Errorf("keepalive eventsequence: got:\n%v\nwant:\n%v", eventSequence, want)
- }
- }
- // TestMaxExtensionDeadline checks we stop extending after the configured duration.
- func TestMaxExtensionDeadline(t *testing.T) {
- ticker := time.NewTicker(100 * time.Microsecond)
- defer ticker.Stop()
- s := &testService{modDeadlineCalled: make(chan modDeadlineCall, 100)}
- c := &Client{projectID: "projid", s: s}
- maxExtension := time.Millisecond
- ka := &keepAlive{
- Client: c,
- ExtensionTick: ticker.C,
- MaxExtension: maxExtension,
- }
- ka.Start()
- ka.Add("a")
- stopped := make(chan struct{})
- go func() {
- ka.Stop()
- stopped <- struct{}{}
- }()
- select {
- case <-stopped:
- case <-time.After(maxExtension + 2*time.Second):
- t.Fatalf("keepalive failed to stop after maxExtension deadline")
- }
- }
|