mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-02 19:47:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			583 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			583 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) HashiCorp, Inc.
 | 
						|
// SPDX-License-Identifier: MPL-2.0
 | 
						|
 | 
						|
package api
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"net"
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
// testHTTPServer creates a test HTTP server that handles requests until
 | 
						|
// the listener returned is closed.
 | 
						|
func testHTTPServer(t *testing.T, handler http.Handler) (*Config, net.Listener) {
 | 
						|
	ln, err := net.Listen("tcp", "127.0.0.1:0")
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("err: %s", err)
 | 
						|
	}
 | 
						|
 | 
						|
	server := &http.Server{Handler: handler}
 | 
						|
	go server.Serve(ln)
 | 
						|
 | 
						|
	config := DefaultConfig()
 | 
						|
	config.Address = fmt.Sprintf("http://%s", ln.Addr())
 | 
						|
 | 
						|
	return config, ln
 | 
						|
}
 |