mirror of
https://github.com/IBM/fp-go.git
synced 2025-12-17 23:37:41 +02:00
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
|
|
// Copyright (c) 2023 - 2025 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 builder
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"net/http"
|
||
|
|
"net/url"
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
RIOE "github.com/IBM/fp-go/v2/context/readerioeither"
|
||
|
|
E "github.com/IBM/fp-go/v2/either"
|
||
|
|
F "github.com/IBM/fp-go/v2/function"
|
||
|
|
R "github.com/IBM/fp-go/v2/http/builder"
|
||
|
|
IO "github.com/IBM/fp-go/v2/io"
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestBuilderWithQuery(t *testing.T) {
|
||
|
|
// add some query
|
||
|
|
withLimit := R.WithQueryArg("limit")("10")
|
||
|
|
withURL := R.WithURL("http://www.example.org?a=b")
|
||
|
|
|
||
|
|
b := F.Pipe2(
|
||
|
|
R.Default,
|
||
|
|
withLimit,
|
||
|
|
withURL,
|
||
|
|
)
|
||
|
|
|
||
|
|
req := F.Pipe3(
|
||
|
|
b,
|
||
|
|
Requester,
|
||
|
|
RIOE.Map(func(r *http.Request) *url.URL {
|
||
|
|
return r.URL
|
||
|
|
}),
|
||
|
|
RIOE.ChainFirstIOK(func(u *url.URL) IO.IO[any] {
|
||
|
|
return IO.FromImpure(func() {
|
||
|
|
q := u.Query()
|
||
|
|
assert.Equal(t, "10", q.Get("limit"))
|
||
|
|
assert.Equal(t, "b", q.Get("a"))
|
||
|
|
})
|
||
|
|
}),
|
||
|
|
)
|
||
|
|
|
||
|
|
assert.True(t, E.IsRight(req(context.Background())()))
|
||
|
|
}
|