forked from TrueCloudLab/lego
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
|
package nonces
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"net/http/httptest"
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/xenolf/lego/acme"
|
||
|
"github.com/xenolf/lego/acme/api/internal/sender"
|
||
|
"github.com/xenolf/lego/platform/tester"
|
||
|
)
|
||
|
|
||
|
func TestNotHoldingLockWhileMakingHTTPRequests(t *testing.T) {
|
||
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
time.Sleep(250 * time.Millisecond)
|
||
|
w.Header().Add("Replay-Nonce", "12345")
|
||
|
w.Header().Add("Retry-After", "0")
|
||
|
err := tester.WriteJSONResponse(w, &acme.Challenge{Type: "http-01", Status: "Valid", URL: "http://example.com/", Token: "token"})
|
||
|
if err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
}))
|
||
|
defer ts.Close()
|
||
|
|
||
|
doer := sender.NewDoer(http.DefaultClient, "lego-test")
|
||
|
j := NewManager(doer, ts.URL)
|
||
|
ch := make(chan bool)
|
||
|
resultCh := make(chan bool)
|
||
|
go func() {
|
||
|
_, errN := j.Nonce()
|
||
|
if errN != nil {
|
||
|
t.Log(errN)
|
||
|
}
|
||
|
ch <- true
|
||
|
}()
|
||
|
go func() {
|
||
|
_, errN := j.Nonce()
|
||
|
if errN != nil {
|
||
|
t.Log(errN)
|
||
|
}
|
||
|
ch <- true
|
||
|
}()
|
||
|
go func() {
|
||
|
<-ch
|
||
|
<-ch
|
||
|
resultCh <- true
|
||
|
}()
|
||
|
select {
|
||
|
case <-resultCh:
|
||
|
case <-time.After(400 * time.Millisecond):
|
||
|
t.Fatal("JWS is probably holding a lock while making HTTP request")
|
||
|
}
|
||
|
}
|