mirror of
https://github.com/IBM/fp-go.git
synced 2025-08-10 22:31:32 +02:00
72 lines
2.0 KiB
Go
72 lines
2.0 KiB
Go
// Copyright (c) 2023 IBM Corp.
|
|
// All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package http
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
AR "github.com/IBM/fp-go/array"
|
|
E "github.com/IBM/fp-go/either"
|
|
"github.com/IBM/fp-go/errors"
|
|
F "github.com/IBM/fp-go/function"
|
|
IOE "github.com/IBM/fp-go/ioeither"
|
|
O "github.com/IBM/fp-go/option"
|
|
R "github.com/IBM/fp-go/retry"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var expLogBackoff = R.ExponentialBackoff(250 * time.Millisecond)
|
|
|
|
// our retry policy with a 1s cap
|
|
var testLogPolicy = R.CapDelay(
|
|
2*time.Second,
|
|
R.Monoid.Concat(expLogBackoff, R.LimitRetries(20)),
|
|
)
|
|
|
|
type PostItem struct {
|
|
UserId uint `json:"userId"`
|
|
Id uint `json:"id"`
|
|
Title string `json:"title"`
|
|
Body string `json:"body"`
|
|
}
|
|
|
|
func TestRetryHttp(t *testing.T) {
|
|
// URLs to try, the first URLs have an invalid hostname
|
|
urls := AR.From("https://jsonplaceholder1.typicode.com/posts/1", "https://jsonplaceholder2.typicode.com/posts/1", "https://jsonplaceholder3.typicode.com/posts/1", "https://jsonplaceholder4.typicode.com/posts/1", "https://jsonplaceholder.typicode.com/posts/1")
|
|
client := MakeClient(&http.Client{})
|
|
|
|
action := func(status R.RetryStatus) IOE.IOEither[error, *PostItem] {
|
|
return F.Pipe1(
|
|
MakeGetRequest(urls[status.IterNumber]),
|
|
ReadJson[*PostItem](client),
|
|
)
|
|
}
|
|
|
|
check := E.Fold(
|
|
F.Flow2(
|
|
errors.As[*net.DNSError](),
|
|
O.IsSome[*net.DNSError],
|
|
),
|
|
F.Constant1[*PostItem](false),
|
|
)
|
|
|
|
item := IOE.Retrying(testLogPolicy, action, check)()
|
|
assert.True(t, E.IsRight(item))
|
|
}
|