mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-09 03:50:27 +08:00
实现HTTP部分功能
This commit is contained in:
32
internal/utils/http_test.go
Normal file
32
internal/utils/http_test.go
Normal file
@@ -0,0 +1,32 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"github.com/iwind/TeaGo/assert"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
||||
func TestNewHTTPClient(t *testing.T) {
|
||||
a := assert.NewAssertion(t)
|
||||
|
||||
client := NewHTTPClient(1 * time.Second)
|
||||
a.IsTrue(client.Timeout == 1*time.Second)
|
||||
|
||||
client2 := NewHTTPClient(1 * time.Second)
|
||||
a.IsTrue(client != client2)
|
||||
}
|
||||
|
||||
func TestSharedHTTPClient(t *testing.T) {
|
||||
a := assert.NewAssertion(t)
|
||||
|
||||
_ = SharedHttpClient(2 * time.Second)
|
||||
_ = SharedHttpClient(3 * time.Second)
|
||||
|
||||
client := SharedHttpClient(1 * time.Second)
|
||||
a.IsTrue(client.Timeout == 1*time.Second)
|
||||
|
||||
client2 := SharedHttpClient(1 * time.Second)
|
||||
a.IsTrue(client == client2)
|
||||
|
||||
t.Log(timeoutClientMap)
|
||||
}
|
||||
Reference in New Issue
Block a user