mirror of
https://github.com/minio/minio.git
synced 2024-12-25 06:35:56 -05:00
tests: Run select statement in separate goroutine (#4499)
Instead of after the wg.Wait() so as to make sure that the 'earliest' of the two select case that becomes active is selected..
This commit is contained in:
parent
45a568dd85
commit
145328ac9f
@ -309,34 +309,36 @@ func TestServerListenAndServePlain(t *testing.T) {
|
||||
// ListenAndServe in a goroutine, but we don't know when it's ready
|
||||
go func() { errc <- m.ListenAndServe("", "") }()
|
||||
|
||||
wg := &sync.WaitGroup{}
|
||||
wg.Add(1)
|
||||
// Keep trying the server until it's accepting connections
|
||||
go func() {
|
||||
client := http.Client{Timeout: time.Millisecond * 10}
|
||||
ok := false
|
||||
for !ok {
|
||||
for {
|
||||
res, _ := client.Get("http://" + addr)
|
||||
if res != nil && res.StatusCode == http.StatusOK {
|
||||
ok = true
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
wg.Done()
|
||||
}()
|
||||
|
||||
wg.Wait()
|
||||
|
||||
// Block until we get an error or wait closed
|
||||
wg := &sync.WaitGroup{}
|
||||
wg.Add(1)
|
||||
go func() {
|
||||
defer wg.Done()
|
||||
select {
|
||||
case err := <-errc:
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
case <-wait:
|
||||
m.Close() // Shutdown the ServerMux
|
||||
return
|
||||
}
|
||||
}()
|
||||
|
||||
// Wait until we get an error or wait closed
|
||||
wg.Wait()
|
||||
|
||||
// Shutdown the ServerMux
|
||||
m.Close()
|
||||
}
|
||||
|
||||
func TestServerListenAndServeTLS(t *testing.T) {
|
||||
@ -389,12 +391,11 @@ func TestServerListenAndServeTLS(t *testing.T) {
|
||||
Timeout: time.Millisecond * 10,
|
||||
Transport: tr,
|
||||
}
|
||||
okTLS := false
|
||||
// Keep trying the server until it's accepting connections
|
||||
for !okTLS {
|
||||
for {
|
||||
res, _ := client.Get("https://" + addr)
|
||||
if res != nil && res.StatusCode == http.StatusOK {
|
||||
okTLS = true
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
@ -423,9 +424,9 @@ func TestServerListenAndServeTLS(t *testing.T) {
|
||||
wg.Done()
|
||||
}()
|
||||
|
||||
wg.Wait()
|
||||
|
||||
// Block until we get an error or wait closed
|
||||
wg.Add(1)
|
||||
go func() {
|
||||
defer wg.Done()
|
||||
select {
|
||||
case err := <-errc:
|
||||
if err != nil {
|
||||
@ -433,9 +434,15 @@ func TestServerListenAndServeTLS(t *testing.T) {
|
||||
return
|
||||
}
|
||||
case <-wait:
|
||||
m.Close() // Shutdown the ServerMux
|
||||
return
|
||||
}
|
||||
}()
|
||||
|
||||
// Wait until we get an error or wait closed
|
||||
wg.Wait()
|
||||
|
||||
// Shutdown the ServerMux
|
||||
m.Close()
|
||||
}
|
||||
|
||||
// generateTestCert creates a cert and a key used for testing only
|
||||
|
Loading…
Reference in New Issue
Block a user