neotest: check deployed contract hash

This commit is contained in:
Anna Shaleva 2021-11-16 17:35:39 +03:00
parent 4057e635af
commit 1194361826
2 changed files with 13 additions and 5 deletions

View file

@ -20,10 +20,7 @@ func newNSClient(t *testing.T) *neotest.ContractInvoker {
c := neotest.CompileFile(t, e.CommitteeHash, "..", "../nns.yml")
e.DeployContract(t, c, nil)
h, err := e.Chain.GetContractScriptHash(1)
require.NoError(t, err)
require.Equal(t, c.Hash, h)
return e.CommitteeInvoker(h)
return e.CommitteeInvoker(c.Hash)
}
func TestNameService_Price(t *testing.T) {

View file

@ -114,13 +114,24 @@ func (e *Executor) NewAccount(t *testing.T) Signer {
return NewSingleSigner(acc)
}
// DeployContract compiles and deploys contract to bc.
// DeployContract compiles and deploys contract to bc. It also checks that
// precalculated contract hash matches the actual one.
// data is an optional argument to `_deploy`.
// Returns hash of the deploy transaction.
func (e *Executor) DeployContract(t *testing.T, c *Contract, data interface{}) util.Uint256 {
tx := e.NewDeployTx(t, e.Chain, c, data)
e.AddNewBlock(t, tx)
e.CheckHalt(t, tx.Hash())
// Check that precalculated hash matches the real one.
e.CheckTxNotificationEvent(t, tx.Hash(), -1, state.NotificationEvent{
ScriptHash: e.NativeHash(t, nativenames.Management),
Name: "Deploy",
Item: stackitem.NewArray([]stackitem.Item{
stackitem.NewByteArray(c.Hash.BytesBE()),
}),
})
return tx.Hash()
}