Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add gClient ExampleNew function #1823

Merged
merged 9 commits into from
May 13, 2022
73 changes: 73 additions & 0 deletions net/gclient/gclient_z_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ package gclient_test
import (
"context"
"fmt"
"github.com/gogf/gf/v2/net/gclient"
"github.com/gogf/gf/v2/os/gctx"
"net/http"
"time"

"github.com/gogf/gf/v2/frame/g"
Expand Down Expand Up @@ -98,6 +101,76 @@ func init() {
time.Sleep(time.Millisecond * 500)
}

func ExampleNew() {
var (
ctx = gctx.New()
client = gclient.New()
)

if r, err := client.Get(ctx, "http://127.0.0.1:8999/var/json"); err != nil {
panic(err)
} else {
defer r.Close()
fmt.Println(r.ReadAllString())
}

// Output:
// {"id":1,"name":"john"}
}

func ExampleNew_MultiConn_BadExample() {
huangqian1985 marked this conversation as resolved.
Show resolved Hide resolved
var (
ctx = gctx.New()
)

// When you want to make a concurrent request, The following code is a bad example.
// See ExampleNew_MultiConn_Recommend for a better way.
for i := 0; i < 5; i++ {
go func() {
c := gclient.New()
defer c.CloseIdleConnections()
r, err := c.Get(ctx, "http://127.0.0.1:8999/var/json")
defer r.Close()
if err != nil {
fmt.Println(err)
} else {
fmt.Println(r.StatusCode)
}
}()
}
}

func ExampleNew_MultiConn_Recommend() {
var (
ctx = gctx.New()
client = gclient.New()
huangqian1985 marked this conversation as resolved.
Show resolved Hide resolved
)

// controls the maximum idle(keep-alive) connections to keep per-host
client.Transport.(*http.Transport).MaxIdleConnsPerHost = 5

for i := 0; i < 5; i++ {
go func() {
huangqian1985 marked this conversation as resolved.
Show resolved Hide resolved
if r, err := client.Get(ctx, "http://127.0.0.1:8999/var/json"); err != nil {
panic(err)
} else {
defer r.Close()
// Make sure call the ReadAllString() Funcion, Otherwise the program will block here
fmt.Println(r.ReadAllString())
}
}()
}

time.Sleep(time.Second * 1)

// Output:
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
//{"id":1,"name":"john"}
}

func ExampleClient_Header() {
var (
url = "http://127.0.0.1:8999/header"
Expand Down