lotus/chain/vm/validation_test.go

39 lines
954 B
Go
Raw Normal View History

package vm_test
import (
"testing"
2020-02-27 22:17:08 +00:00
vsuites "github.com/filecoin-project/chain-validation/suites"
2020-02-27 22:17:08 +00:00
vfactory "github.com/filecoin-project/lotus/chain/validation"
)
2020-02-27 22:17:08 +00:00
func TestChainValidationSuite(t *testing.T) {
f := vfactory.NewFactories()
2020-02-27 22:17:08 +00:00
vsuites.TestValueTransferSimple(t, f)
vsuites.TestValueTransferAdvance(t, f)
vsuites.TestAccountActorCreation(t, f)
vsuites.TestInitActorSequentialIDAddressCreate(t, f)
// Skipping since multisig address resolution breaks tests
// https://github.com/filecoin-project/specs-actors/issues/184
// vsuites.TestMultiSigActor(t, f)
// Skipping since payment channel because runtime sys calls are not implemented in runtime adapter
// vsuites.TestPaych(t, f)
}
2020-02-27 22:17:08 +00:00
func TestMessageApplication(t *testing.T) {
f := vfactory.NewFactories()
vsuites.TestMessageApplicationEdgecases(t, f)
}
2020-02-27 22:17:08 +00:00
func TestTipSetStuff(t *testing.T) {
f := vfactory.NewFactories()
vsuites.TestBlockMessageInfoApplication(t, f)
2019-12-16 11:47:11 +00:00
}