go-pattern-examples/resiliency/06_circuit_breaker/circuit_breaker_test.go

78 lines
1.5 KiB
Go
Raw Normal View History

2020-05-11 09:31:25 +03:00
/*
* @Description: https://github.com/crazybber
* @Author: Edward
* @Date: 2020-05-11 10:55:28
* @Last Modified by: Edward
2020-05-21 11:02:28 +03:00
* @Last Modified time: 2020-05-21 14:08:53
2020-05-11 09:31:25 +03:00
*/
2020-04-28 17:48:09 +03:00
package circuit
import (
2020-05-21 11:02:28 +03:00
"context"
2020-05-10 17:03:24 +03:00
"fmt"
"io/ioutil"
"net/http"
2020-05-08 10:51:33 +03:00
"testing"
2020-04-28 17:48:09 +03:00
)
2020-05-10 17:03:24 +03:00
var breaker *RequestBreaker
2020-05-08 10:51:33 +03:00
func TestBasicBreaker(t *testing.T) {
2020-04-28 17:48:09 +03:00
2020-05-21 11:02:28 +03:00
jobToDo := func() (interface{}, error) {
2020-05-19 12:56:40 +03:00
resp, err := http.Get("https://bing.com/robots.txt")
2020-05-10 17:03:24 +03:00
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return body, nil
2020-05-21 11:02:28 +03:00
}
whenCondition := func(counts counters) bool {
//失败率,可以由用户自己定义
failureRatio := float64(counts.TotalFailures) / float64(counts.Requests)
return counts.Requests >= 3 && failureRatio >= 0.6
}
breaker = NewRequestBreaker(Name("HTTP GET"), BreakIf(whenCondition))
body, err := breaker.Do(jobToDo)
2020-05-10 17:03:24 +03:00
if err != nil {
2020-05-19 12:56:40 +03:00
t.Fatal(err)
2020-05-10 17:03:24 +03:00
}
2020-05-19 12:56:40 +03:00
fmt.Println(string(body.([]byte)))
2020-04-28 17:48:09 +03:00
}
2020-05-21 11:02:28 +03:00
func TestFunctionalBreaker(t *testing.T) {
//something need to do
jobToDo := func(ctx context.Context) error {
resp, err := http.Get("https://bing.com/robots.txt")
if err != nil {
return err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
fmt.Println(string(body))
return nil
}
//wrapper and control job with a breaker
circuitWork := Breaker(jobToDo, 2 /* failureThreshold */)
params := context.TODO()
// do the job as usually
circuitWork(params)
}