Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
71 lines
1.5 KiB
Go
71 lines
1.5 KiB
Go
//go:build gofuzz || go1.21
|
|
|
|
package tests
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"git.cw.tr/mukan-network/mukan-consensus/libs/log"
|
|
rpcserver "git.cw.tr/mukan-network/mukan-consensus/rpc/jsonrpc/server"
|
|
rpctypes "git.cw.tr/mukan-network/mukan-consensus/rpc/jsonrpc/types"
|
|
)
|
|
|
|
func FuzzRPCJSONRPCServer(f *testing.F) {
|
|
type args struct {
|
|
S string `json:"s"`
|
|
I int `json:"i"`
|
|
}
|
|
rpcFuncMap := map[string]*rpcserver.RPCFunc{
|
|
"c": rpcserver.NewRPCFunc(func(ctx *rpctypes.Context, args *args, options ...rpcserver.Option) (string, error) {
|
|
return "foo", nil
|
|
}, "args"),
|
|
}
|
|
|
|
mux := http.NewServeMux()
|
|
rpcserver.RegisterRPCFuncs(mux, rpcFuncMap, log.NewNopLogger())
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
if len(data) == 0 {
|
|
return
|
|
}
|
|
|
|
req, err := http.NewRequest("POST", "http://localhost/", bytes.NewReader(data))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
rec := httptest.NewRecorder()
|
|
mux.ServeHTTP(rec, req)
|
|
res := rec.Result()
|
|
blob, err := io.ReadAll(res.Body)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := res.Body.Close(); err != nil {
|
|
panic(err)
|
|
}
|
|
if len(blob) == 0 {
|
|
return
|
|
}
|
|
|
|
if outputJSONIsSlice(blob) {
|
|
var recv []rpctypes.RPCResponse
|
|
if err := json.Unmarshal(blob, &recv); err != nil {
|
|
panic(err)
|
|
}
|
|
return
|
|
}
|
|
var recv rpctypes.RPCResponse
|
|
if err := json.Unmarshal(blob, &recv); err != nil {
|
|
panic(err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func outputJSONIsSlice(input []byte) bool {
|
|
var slice []json.RawMessage
|
|
return json.Unmarshal(input, &slice) == nil
|
|
}
|