2019-03-25 18:56:56 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2020-04-04 17:12:38 +02:00
|
|
|
"sync"
|
2019-03-25 18:56:56 +02:00
|
|
|
"testing"
|
2020-04-04 17:12:38 +02:00
|
|
|
"time"
|
2019-03-25 18:56:56 +02:00
|
|
|
|
2020-04-13 14:50:34 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/apis/options"
|
2019-03-25 18:56:56 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2020-04-04 17:12:38 +02:00
|
|
|
func TestGracefulShutdown(t *testing.T) {
|
2020-04-13 14:50:34 +02:00
|
|
|
opts := options.NewOptions()
|
2020-04-04 17:12:38 +02:00
|
|
|
stop := make(chan struct{}, 1)
|
|
|
|
srv := Server{Handler: http.DefaultServeMux, Opts: opts, stop: stop}
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
srv.ServeHTTP()
|
|
|
|
}()
|
|
|
|
|
|
|
|
stop <- struct{}{} // emulate catching signals
|
|
|
|
|
|
|
|
// An idiomatic for sync.WaitGroup with timeout
|
|
|
|
c := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
defer close(c)
|
|
|
|
wg.Wait()
|
|
|
|
}()
|
|
|
|
select {
|
|
|
|
case <-c:
|
|
|
|
case <-time.After(1 * time.Second):
|
|
|
|
t.Fatal("Server should return gracefully but timeout has occurred")
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.Len(t, stop, 0) // check if stop chan is empty
|
|
|
|
}
|