mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 21:08:10 -05:00
* wip * fixing tests * updating unit tests for coverage * gofmt * changelog * consolidated propose beacon block tests and improved code coverage * gaz * partial review feedback * continuation fixing feedback on functions * adding log * only fall back on 406 * fixing broken tests * Update validator/client/beacon-api/propose_beacon_block.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/beacon-api/propose_beacon_block.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/beacon-api/propose_beacon_block.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/beacon-api/propose_beacon_block.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/client/beacon-api/propose_beacon_block.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * radek review feedback * more feedback * radek suggestion * fixing unit tests --------- Co-authored-by: Radosław Kapka <rkapka@wp.pl>
144 lines
4.9 KiB
Go
Generated
144 lines
4.9 KiB
Go
Generated
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: validator/client/beacon-api/json_rest_handler.go
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen -package=mock -source=validator/client/beacon-api/json_rest_handler.go -destination=validator/client/beacon-api/mock/json_rest_handler_mock.go
|
|
//
|
|
|
|
// Package mock is a generated GoMock package.
|
|
package mock
|
|
|
|
import (
|
|
bytes "bytes"
|
|
context "context"
|
|
http "net/http"
|
|
reflect "reflect"
|
|
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockJsonRestHandler is a mock of JsonRestHandler interface.
|
|
type MockJsonRestHandler struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockJsonRestHandlerMockRecorder
|
|
isgomock struct{}
|
|
}
|
|
|
|
// MockJsonRestHandlerMockRecorder is the mock recorder for MockJsonRestHandler.
|
|
type MockJsonRestHandlerMockRecorder struct {
|
|
mock *MockJsonRestHandler
|
|
}
|
|
|
|
// NewMockJsonRestHandler creates a new mock instance.
|
|
func NewMockJsonRestHandler(ctrl *gomock.Controller) *MockJsonRestHandler {
|
|
mock := &MockJsonRestHandler{ctrl: ctrl}
|
|
mock.recorder = &MockJsonRestHandlerMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockJsonRestHandler) EXPECT() *MockJsonRestHandlerMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Get mocks base method.
|
|
func (m *MockJsonRestHandler) Get(ctx context.Context, endpoint string, resp any) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Get", ctx, endpoint, resp)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Get indicates an expected call of Get.
|
|
func (mr *MockJsonRestHandlerMockRecorder) Get(ctx, endpoint, resp any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockJsonRestHandler)(nil).Get), ctx, endpoint, resp)
|
|
}
|
|
|
|
// GetSSZ mocks base method.
|
|
func (m *MockJsonRestHandler) GetSSZ(ctx context.Context, endpoint string) ([]byte, http.Header, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "GetSSZ", ctx, endpoint)
|
|
ret0, _ := ret[0].([]byte)
|
|
ret1, _ := ret[1].(http.Header)
|
|
ret2, _ := ret[2].(error)
|
|
return ret0, ret1, ret2
|
|
}
|
|
|
|
// GetSSZ indicates an expected call of GetSSZ.
|
|
func (mr *MockJsonRestHandlerMockRecorder) GetSSZ(ctx, endpoint any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSSZ", reflect.TypeOf((*MockJsonRestHandler)(nil).GetSSZ), ctx, endpoint)
|
|
}
|
|
|
|
// Host mocks base method.
|
|
func (m *MockJsonRestHandler) Host() string {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Host")
|
|
ret0, _ := ret[0].(string)
|
|
return ret0
|
|
}
|
|
|
|
// Host indicates an expected call of Host.
|
|
func (mr *MockJsonRestHandlerMockRecorder) Host() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Host", reflect.TypeOf((*MockJsonRestHandler)(nil).Host))
|
|
}
|
|
|
|
// HttpClient mocks base method.
|
|
func (m *MockJsonRestHandler) HttpClient() *http.Client {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "HttpClient")
|
|
ret0, _ := ret[0].(*http.Client)
|
|
return ret0
|
|
}
|
|
|
|
// HttpClient indicates an expected call of HttpClient.
|
|
func (mr *MockJsonRestHandlerMockRecorder) HttpClient() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "HttpClient", reflect.TypeOf((*MockJsonRestHandler)(nil).HttpClient))
|
|
}
|
|
|
|
// Post mocks base method.
|
|
func (m *MockJsonRestHandler) Post(ctx context.Context, endpoint string, headers map[string]string, data *bytes.Buffer, resp any) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Post", ctx, endpoint, headers, data, resp)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Post indicates an expected call of Post.
|
|
func (mr *MockJsonRestHandlerMockRecorder) Post(ctx, endpoint, headers, data, resp any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Post", reflect.TypeOf((*MockJsonRestHandler)(nil).Post), ctx, endpoint, headers, data, resp)
|
|
}
|
|
|
|
// Post mocks base method.
|
|
func (m *MockJsonRestHandler) PostSSZ(ctx context.Context, endpoint string, headers map[string]string, data *bytes.Buffer) ([]byte, http.Header, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "PostSSZ", ctx, endpoint, headers, data)
|
|
ret0, _ := ret[0].([]byte)
|
|
ret1, _ := ret[1].(http.Header)
|
|
ret2, _ := ret[2].(error)
|
|
return ret0,ret1,ret2
|
|
}
|
|
|
|
// Post indicates an expected call of Post.
|
|
func (mr *MockJsonRestHandlerMockRecorder) PostSSZ(ctx, endpoint, headers, data any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PostSSZ", reflect.TypeOf((*MockJsonRestHandler)(nil).PostSSZ), ctx, endpoint, headers, data)
|
|
}
|
|
|
|
// SetHost mocks base method.
|
|
func (m *MockJsonRestHandler) SetHost(host string) {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "SetHost", host)
|
|
}
|
|
|
|
// SetHost indicates an expected call of SetHost.
|
|
func (mr *MockJsonRestHandlerMockRecorder) SetHost(host any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetHost", reflect.TypeOf((*MockJsonRestHandler)(nil).SetHost), host)
|
|
}
|