mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
d6ae838bbf
* WIP * event stream wip * returning nil * temp removing some tests * wip health checks * fixing conficts * updating fields based on linting * fixing more errors * fixing mocks * fixing more mocks * fixing more linting * removing white space for lint * fixing log format * gaz * reverting changes on grpc * fixing unit tests * adding in tests for health tracker and event stream * adding more tests for streaming slot * gaz * Update api/client/event/event_stream.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * review comments * Update validator/client/runner.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/beacon-api/beacon_api_validator_client.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * addressing radek comments * Update validator/client/validator.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * addressing review feedback * moving things to below next slot ticker * fixing tests * update naming * adding TODO comment * Update api/client/beacon/health.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * addressing comments * fixing broken linting * fixing more import issues * fixing more import issues * linting * updating based on radek's comments * addressing more comments * fixing nogo error * fixing duplicate import * gaz * adding radek's review suggestion * Update proto/prysm/v1alpha1/node.proto Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * preston review comments * Update api/client/event/event_stream.go Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * Update validator/client/validator.go Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * addressing some more preston review items * fixing tests for linting * fixing missed linting * updating based on feedback to simplify * adding interface check at the top * reverting some comments * cleaning up intatiations * reworking the health tracker * fixing linting * fixing more linting to adhear to interface * adding interface check at the the top of the file * fixing unit tests * attempting to fix dependency cycle * addressing radek's comment * Update validator/client/beacon-api/beacon_api_validator_client.go Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * adding more tests and feedback items * fixing TODO comment --------- Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
221 lines
6.6 KiB
Go
221 lines
6.6 KiB
Go
package beacon_api
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v5/api"
|
|
"github.com/prysmaticlabs/prysm/v5/api/server/structs"
|
|
"github.com/prysmaticlabs/prysm/v5/network/httputil"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestGet(t *testing.T) {
|
|
ctx := context.Background()
|
|
const endpoint = "/example/rest/api/endpoint"
|
|
genesisJson := &structs.GetGenesisResponse{
|
|
Data: &structs.Genesis{
|
|
GenesisTime: "123",
|
|
GenesisValidatorsRoot: "0x456",
|
|
GenesisForkVersion: "0x789",
|
|
},
|
|
}
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc(endpoint, func(w http.ResponseWriter, r *http.Request) {
|
|
marshalledJson, err := json.Marshal(genesisJson)
|
|
require.NoError(t, err)
|
|
|
|
w.Header().Set("Content-Type", api.JsonMediaType)
|
|
_, err = w.Write(marshalledJson)
|
|
require.NoError(t, err)
|
|
})
|
|
server := httptest.NewServer(mux)
|
|
defer server.Close()
|
|
|
|
jsonRestHandler := BeaconApiJsonRestHandler{
|
|
client: http.Client{Timeout: time.Second * 5},
|
|
host: server.URL,
|
|
}
|
|
resp := &structs.GetGenesisResponse{}
|
|
require.NoError(t, jsonRestHandler.Get(ctx, endpoint+"?arg1=abc&arg2=def", resp))
|
|
assert.DeepEqual(t, genesisJson, resp)
|
|
}
|
|
|
|
func TestPost(t *testing.T) {
|
|
ctx := context.Background()
|
|
const endpoint = "/example/rest/api/endpoint"
|
|
dataBytes := []byte{1, 2, 3, 4, 5}
|
|
headers := map[string]string{"foo": "bar"}
|
|
|
|
genesisJson := &structs.GetGenesisResponse{
|
|
Data: &structs.Genesis{
|
|
GenesisTime: "123",
|
|
GenesisValidatorsRoot: "0x456",
|
|
GenesisForkVersion: "0x789",
|
|
},
|
|
}
|
|
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc(endpoint, func(w http.ResponseWriter, r *http.Request) {
|
|
// Make sure the request headers have been set
|
|
assert.Equal(t, "bar", r.Header.Get("foo"))
|
|
assert.Equal(t, api.JsonMediaType, r.Header.Get("Content-Type"))
|
|
|
|
// Make sure the data matches
|
|
receivedBytes := make([]byte, len(dataBytes))
|
|
numBytes, err := r.Body.Read(receivedBytes)
|
|
assert.Equal(t, io.EOF, err)
|
|
assert.Equal(t, len(dataBytes), numBytes)
|
|
assert.DeepEqual(t, dataBytes, receivedBytes)
|
|
|
|
marshalledJson, err := json.Marshal(genesisJson)
|
|
require.NoError(t, err)
|
|
|
|
w.Header().Set("Content-Type", api.JsonMediaType)
|
|
_, err = w.Write(marshalledJson)
|
|
require.NoError(t, err)
|
|
})
|
|
server := httptest.NewServer(mux)
|
|
defer server.Close()
|
|
|
|
jsonRestHandler := BeaconApiJsonRestHandler{
|
|
client: http.Client{Timeout: time.Second * 5},
|
|
host: server.URL,
|
|
}
|
|
resp := &structs.GetGenesisResponse{}
|
|
require.NoError(t, jsonRestHandler.Post(ctx, endpoint, headers, bytes.NewBuffer(dataBytes), resp))
|
|
assert.DeepEqual(t, genesisJson, resp)
|
|
}
|
|
|
|
func Test_decodeResp(t *testing.T) {
|
|
type j struct {
|
|
Foo string `json:"foo"`
|
|
}
|
|
|
|
t.Run("200 non-JSON", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
r := &http.Response{
|
|
Status: "200",
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.OctetStreamMediaType}},
|
|
}
|
|
require.NoError(t, decodeResp(r, nil))
|
|
})
|
|
t.Run("204 non-JSON", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
r := &http.Response{
|
|
Status: "204",
|
|
StatusCode: http.StatusNoContent,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.OctetStreamMediaType}},
|
|
}
|
|
require.NoError(t, decodeResp(r, nil))
|
|
})
|
|
t.Run("500 non-JSON", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
_, err := body.WriteString("foo")
|
|
require.NoError(t, err)
|
|
r := &http.Response{
|
|
Status: "500",
|
|
StatusCode: http.StatusInternalServerError,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.OctetStreamMediaType}},
|
|
}
|
|
err = decodeResp(r, nil)
|
|
errJson := &httputil.DefaultJsonError{}
|
|
require.Equal(t, true, errors.As(err, &errJson))
|
|
assert.Equal(t, http.StatusInternalServerError, errJson.Code)
|
|
assert.Equal(t, "foo", errJson.Message)
|
|
})
|
|
t.Run("200 JSON with resp", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
b, err := json.Marshal(&j{Foo: "foo"})
|
|
require.NoError(t, err)
|
|
body.Write(b)
|
|
r := &http.Response{
|
|
Status: "200",
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.JsonMediaType}},
|
|
}
|
|
resp := &j{}
|
|
require.NoError(t, decodeResp(r, resp))
|
|
assert.Equal(t, "foo", resp.Foo)
|
|
})
|
|
t.Run("200 JSON without resp", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
r := &http.Response{
|
|
Status: "200",
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.JsonMediaType}},
|
|
}
|
|
require.NoError(t, decodeResp(r, nil))
|
|
})
|
|
t.Run("204 JSON", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
r := &http.Response{
|
|
Status: "204",
|
|
StatusCode: http.StatusNoContent,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.JsonMediaType}},
|
|
}
|
|
require.NoError(t, decodeResp(r, nil))
|
|
})
|
|
t.Run("500 JSON", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
b, err := json.Marshal(&httputil.DefaultJsonError{Code: http.StatusInternalServerError, Message: "error"})
|
|
require.NoError(t, err)
|
|
body.Write(b)
|
|
r := &http.Response{
|
|
Status: "500",
|
|
StatusCode: http.StatusInternalServerError,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.JsonMediaType}},
|
|
}
|
|
err = decodeResp(r, nil)
|
|
errJson := &httputil.DefaultJsonError{}
|
|
require.Equal(t, true, errors.As(err, &errJson))
|
|
assert.Equal(t, http.StatusInternalServerError, errJson.Code)
|
|
assert.Equal(t, "error", errJson.Message)
|
|
})
|
|
t.Run("200 JSON cannot decode", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
_, err := body.WriteString("foo")
|
|
require.NoError(t, err)
|
|
r := &http.Response{
|
|
Status: "200",
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.JsonMediaType}},
|
|
Request: &http.Request{},
|
|
}
|
|
resp := &j{}
|
|
err = decodeResp(r, resp)
|
|
assert.ErrorContains(t, "failed to decode response body into json", err)
|
|
})
|
|
t.Run("500 JSON cannot decode", func(t *testing.T) {
|
|
body := bytes.Buffer{}
|
|
_, err := body.WriteString("foo")
|
|
require.NoError(t, err)
|
|
r := &http.Response{
|
|
Status: "500",
|
|
StatusCode: http.StatusInternalServerError,
|
|
Body: io.NopCloser(&body),
|
|
Header: map[string][]string{"Content-Type": {api.JsonMediaType}},
|
|
Request: &http.Request{},
|
|
}
|
|
err = decodeResp(r, nil)
|
|
assert.ErrorContains(t, "failed to decode response body into error json", err)
|
|
})
|
|
}
|