27 lines
669 B
Go
27 lines
669 B
Go
//stm: #unit
|
|
package build
|
|
|
|
import (
|
|
"testing"
|
|
|
|
apitypes "github.com/filecoin-project/lotus/api/types"
|
|
)
|
|
|
|
func TestOpenRPCDiscoverJSON_Version(t *testing.T) {
|
|
//stm: @OTHER_IMPLEMENTATION_OPENRPC_VERSION_001
|
|
// openRPCDocVersion is the current OpenRPC version of the API docs.
|
|
openRPCDocVersion := "1.2.6"
|
|
|
|
for i, docFn := range []func() apitypes.OpenRPCDocument{
|
|
OpenRPCDiscoverJSON_Full,
|
|
OpenRPCDiscoverJSON_Miner,
|
|
OpenRPCDiscoverJSON_Worker,
|
|
OpenRPCDiscoverJSON_Gateway,
|
|
} {
|
|
doc := docFn()
|
|
if got, ok := doc["openrpc"]; !ok || got != openRPCDocVersion {
|
|
t.Fatalf("case: %d, want: %s, got: %v, doc: %v", i, openRPCDocVersion, got, doc)
|
|
}
|
|
}
|
|
}
|