* client: add proxy option * client: add WithProxy CallOption * use address option * ProxyAddress => Proxy
		
			
				
	
	
		
			27 lines
		
	
	
		
			460 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			460 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package net
 | |
| 
 | |
| import (
 | |
| 	"net"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestListen(t *testing.T) {
 | |
| 	fn := func(addr string) (net.Listener, error) {
 | |
| 		return net.Listen("tcp", addr)
 | |
| 	}
 | |
| 
 | |
| 	// try to create a number of listeners
 | |
| 	for i := 0; i < 10; i++ {
 | |
| 		l, err := Listen("localhost:10000-11000", fn)
 | |
| 		if err != nil {
 | |
| 			t.Fatal(err)
 | |
| 		}
 | |
| 		defer l.Close()
 | |
| 	}
 | |
| 
 | |
| 	// TODO nats case test
 | |
| 	// natsAddr := "_INBOX.bID2CMRvlNp0vt4tgNBHWf"
 | |
| 	// Expect addr DO NOT has extra ":" at the end!
 | |
| 
 | |
| }
 |