mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-03 19:17:29 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package proxy
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"io"
 | 
						|
	"io/ioutil"
 | 
						|
	"net/http"
 | 
						|
	"net/http/httptest"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestBodyRetry(t *testing.T) {
 | 
						|
	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 | 
						|
		io.Copy(w, r.Body)
 | 
						|
		r.Body.Close()
 | 
						|
	}))
 | 
						|
	defer ts.Close()
 | 
						|
 | 
						|
	testcase := "test content"
 | 
						|
	req, err := http.NewRequest(http.MethodPost, ts.URL, bytes.NewBufferString(testcase))
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	body, err := newBufferedBody(req.Body)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	if body != nil {
 | 
						|
		req.Body = body
 | 
						|
	}
 | 
						|
 | 
						|
	// simulate fail request
 | 
						|
	host := req.URL.Host
 | 
						|
	req.URL.Host = "example.com"
 | 
						|
	body.rewind()
 | 
						|
	_, _ = http.DefaultTransport.RoundTrip(req)
 | 
						|
 | 
						|
	// retry request
 | 
						|
	req.URL.Host = host
 | 
						|
	body.rewind()
 | 
						|
	resp, err := http.DefaultTransport.RoundTrip(req)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	result, err := ioutil.ReadAll(resp.Body)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	resp.Body.Close()
 | 
						|
	if string(result) != testcase {
 | 
						|
		t.Fatalf("result = %s, want %s", result, testcase)
 | 
						|
	}
 | 
						|
 | 
						|
	// try one more time for body reuse
 | 
						|
	body.rewind()
 | 
						|
	resp, err = http.DefaultTransport.RoundTrip(req)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	result, err = ioutil.ReadAll(resp.Body)
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	resp.Body.Close()
 | 
						|
	if string(result) != testcase {
 | 
						|
		t.Fatalf("result = %s, want %s", result, testcase)
 | 
						|
	}
 | 
						|
}
 |