mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 20:20:05 +00:00
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
|
package apimiddleware
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/http/httptest"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
"github.com/prysmaticlabs/prysm/v4/api/gateway/apimiddleware"
|
||
|
"github.com/prysmaticlabs/prysm/v4/testing/assert"
|
||
|
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||
|
)
|
||
|
|
||
|
func TestSetVoluntaryExitEpoch(t *testing.T) {
|
||
|
t.Run("ok", func(t *testing.T) {
|
||
|
endpoint := &apimiddleware.Endpoint{
|
||
|
PostRequest: &SetVoluntaryExitRequestJson{},
|
||
|
}
|
||
|
epoch := "300"
|
||
|
|
||
|
var body bytes.Buffer
|
||
|
request := httptest.NewRequest("POST", fmt.Sprintf("http://foo.example?epoch=%s", epoch), &body)
|
||
|
|
||
|
runDefault, errJson := setVoluntaryExitEpoch(endpoint, nil, request)
|
||
|
require.Equal(t, true, errJson == nil)
|
||
|
assert.Equal(t, apimiddleware.RunDefault(true), runDefault)
|
||
|
|
||
|
var b SetVoluntaryExitRequestJson
|
||
|
err := json.NewDecoder(request.Body).Decode(&b)
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, epoch, b.Epoch)
|
||
|
})
|
||
|
t.Run("invalid query returns error", func(t *testing.T) {
|
||
|
endpoint := &apimiddleware.Endpoint{
|
||
|
PostRequest: &SetVoluntaryExitRequestJson{},
|
||
|
}
|
||
|
epoch := "/12"
|
||
|
var body bytes.Buffer
|
||
|
request := httptest.NewRequest("POST", fmt.Sprintf("http://foo.example?epoch=%s", epoch), &body)
|
||
|
|
||
|
runDefault, errJson := setVoluntaryExitEpoch(endpoint, nil, request)
|
||
|
assert.NotNil(t, errJson)
|
||
|
assert.Equal(t, apimiddleware.RunDefault(false), runDefault)
|
||
|
err := errors.New(errJson.Msg())
|
||
|
assert.ErrorContains(t, "invalid epoch", err)
|
||
|
})
|
||
|
}
|