mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-22 11:56:03 +03:00
55 lines
958 B
Go
55 lines
958 B
Go
package contexts
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestContext(t *testing.T) {
|
|
go func() {
|
|
cContext()
|
|
}()
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
reqest, _ := http.NewRequest("GET", "http://localhost:8099/hello", nil) // http client get 请求
|
|
|
|
client := &http.Client{}
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
reqest = reqest.WithContext(ctx)
|
|
|
|
go func() {
|
|
select {
|
|
case <-time.After(2 * time.Second):
|
|
cancel()
|
|
}
|
|
}()
|
|
|
|
client.Do(reqest)
|
|
|
|
}
|
|
|
|
func hello(w http.ResponseWriter, req *http.Request) {
|
|
|
|
ctx := req.Context()
|
|
defer fmt.Println("server: hello handler ended")
|
|
|
|
select {
|
|
case <-time.After(10 * time.Second):
|
|
fmt.Fprintf(w, "hello\n")
|
|
case <-ctx.Done():
|
|
err := ctx.Err()
|
|
fmt.Println("server:", err)
|
|
internalError := http.StatusInternalServerError
|
|
http.Error(w, err.Error(), internalError)
|
|
}
|
|
}
|
|
|
|
func cContext() {
|
|
http.HandleFunc("/hello", hello)
|
|
http.ListenAndServe(":8099", nil)
|
|
}
|