mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package http
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"encoding/json"
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func testHttpPut(t *testing.T, addr string, body interface{}) *http.Response {
 | |
| 	bodyReader := new(bytes.Buffer)
 | |
| 	if body != nil {
 | |
| 		enc := json.NewEncoder(bodyReader)
 | |
| 		if err := enc.Encode(body); err != nil {
 | |
| 			t.Fatalf("err:%s", err)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	req, err := http.NewRequest("PUT", addr, bodyReader)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("err: %s", err)
 | |
| 	}
 | |
| 
 | |
| 	req.Header.Set("Content-Type", "application/json")
 | |
| 	resp, err := http.DefaultClient.Do(req)
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("err: %s", err)
 | |
| 	}
 | |
| 
 | |
| 	return resp
 | |
| }
 | |
| 
 | |
| func testResponseStatus(t *testing.T, resp *http.Response, code int) {
 | |
| 	if resp.StatusCode != code {
 | |
| 		body := new(bytes.Buffer)
 | |
| 		io.Copy(body, resp.Body)
 | |
| 		resp.Body.Close()
 | |
| 
 | |
| 		t.Fatalf(
 | |
| 			"Expected status %d, got %d. Body:\n\n%s",
 | |
| 			code, resp.StatusCode, body.String())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func testResponseBody(t *testing.T, resp *http.Response, out interface{}) {
 | |
| 	defer resp.Body.Close()
 | |
| 
 | |
| 	dec := json.NewDecoder(resp.Body)
 | |
| 	if err := dec.Decode(out); err != nil {
 | |
| 		t.Fatalf("err: %s", err)
 | |
| 	}
 | |
| }
 | 
