You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
205 lines
9.1 KiB
205 lines
9.1 KiB
import pytest
|
|
import requests
|
|
from decimal import (
|
|
Decimal
|
|
)
|
|
|
|
from pyhmy import (
|
|
validator
|
|
)
|
|
|
|
from pyhmy.rpc import (
|
|
exceptions
|
|
)
|
|
|
|
from pyhmy.numbers import (
|
|
convert_one_to_atto
|
|
)
|
|
|
|
from pyhmy.exceptions import (
|
|
InvalidValidatorError
|
|
)
|
|
|
|
import sys
|
|
|
|
test_epoch_number = 0
|
|
genesis_block_number = 0
|
|
test_block_number = 1
|
|
test_validator_object = None
|
|
test_validator_loaded = False
|
|
|
|
@pytest.mark.run(order=0)
|
|
def test_instantiate_validator(setup_blockchain):
|
|
global test_validator_object
|
|
test_validator_object = validator.Validator('one1a0x3d6xpmr6f8wsyaxd9v36pytvp48zckswvv9')
|
|
assert isinstance(test_validator_object, validator.Validator)
|
|
|
|
@pytest.mark.run(order=1)
|
|
def test_load_validator(setup_blockchain):
|
|
if not test_validator_object:
|
|
pytest.skip('Validator not instantiated yet')
|
|
info = {
|
|
'name': 'Alice',
|
|
'identity': 'alice',
|
|
'website': 'alice.harmony.one',
|
|
'details': "Don't mess with me!!!",
|
|
'security-contact': 'Bob',
|
|
'min-self-delegation': convert_one_to_atto(10000),
|
|
'amount': convert_one_to_atto(10001),
|
|
'max-rate': '0.9',
|
|
'max-change-rate': '0.05',
|
|
'rate': '0.01',
|
|
'bls-public-keys': ['0xb9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608611'],
|
|
'max-total-delegation': convert_one_to_atto(40000)
|
|
}
|
|
test_validator_object.load(info)
|
|
global test_validator_loaded
|
|
test_validator_loaded = True
|
|
|
|
"""
|
|
TypeScript signature source
|
|
const description: Description = new Description('Alice', 'alice', 'alice.harmony.one', 'Bob', "Don't mess with me!!!")
|
|
const commissionRates: CommissionRate = new CommissionRate(new Decimal('0.01'), new Decimal('0.9'), new Decimal('0.05'))
|
|
const stakeMsg: CreateValidator = new CreateValidator(
|
|
'one1a0x3d6xpmr6f8wsyaxd9v36pytvp48zckswvv9',
|
|
description,
|
|
commissionRates,
|
|
numberToHex(new Unit('10000').asOne().toWei()), // minSelfDelegation
|
|
numberToHex(new Unit('40000').asOne().toWei()), // maxTotalDelegation
|
|
[ '0xb9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608611' ],
|
|
numberToHex(new Unit('10001').asOne().toWei()) // amount
|
|
)
|
|
const stakingTx: StakingTransaction = new StakingTransaction(
|
|
Directive.DirectiveCreateValidator,
|
|
stakeMsg,
|
|
2, // nonce
|
|
numberToHex(new Unit('1').asOne().toWei()), // gasPrice
|
|
100, // gasLimit
|
|
null, // chainId
|
|
);
|
|
const signed = stakingTx.rlpSign('4edef2c24995d15b0e25cbd152fb0e2c05d3b79b9c2afd134e6f59f91bf99e48')
|
|
console.log( 'Signed transaction' )
|
|
console.log(signed)
|
|
"""
|
|
@pytest.mark.run(order=2)
|
|
def test_create_validator_sign(setup_blockchain):
|
|
if not (test_validator_object or test_validator_loaded):
|
|
pytest.skip('Validator not ready yet')
|
|
signed_hash = test_validator_object.sign_create_validator_transaction(
|
|
2,
|
|
int(convert_one_to_atto(1)),
|
|
100,
|
|
'4edef2c24995d15b0e25cbd152fb0e2c05d3b79b9c2afd134e6f59f91bf99e48',
|
|
None).rawTransaction.hex()
|
|
assert signed_hash == '0xf9010580f8bf94ebcd16e8c1d8f493ba04e99a56474122d81a9c58f83885416c69636585616c69636591616c6963652e6861726d6f6e792e6f6e6583426f6295446f6e2774206d6573732077697468206d65212121dcc8872386f26fc10000c9880c7d713b49da0000c887b1a2bc2ec500008a021e19e0c9bab24000008a0878678326eac9000000f1b0b9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b622476086118a021e27c1806e59a4000024a047c6d444971d4d3c48e8b255aa0e543ebb47b60f761582694e5af5330445aba5a04db1ffea9cca9f9e56e8f782c689db680992903acfd9c06f4593f7fd9a781bd7'
|
|
|
|
"""
|
|
Signature matched from TypeScript
|
|
import {
|
|
CreateValidator,
|
|
EditValidator,
|
|
Delegate,
|
|
Undelegate,
|
|
CollectRewards,
|
|
Directive,
|
|
Description,
|
|
CommissionRate,
|
|
Decimal,
|
|
StakingTransaction,
|
|
} from '@harmony-js/staking'
|
|
const { numberToHex, Unit } = require('@harmony-js/utils');
|
|
|
|
const description: Description = new Description('Alice', 'alice', 'alice.harmony.one', 'Bob', "Don't mess with me!!!")
|
|
const commissionRates: CommissionRate = new CommissionRate(new Decimal('0.01'), new Decimal('0.9'), new Decimal('0.05'))
|
|
const stakeMsg: EditValidator = new EditValidator(
|
|
'one1a0x3d6xpmr6f8wsyaxd9v36pytvp48zckswvv9',
|
|
description,
|
|
new Decimal('0.06'),
|
|
numberToHex(new Unit('10000').asOne().toWei()), // minSelfDelegation
|
|
numberToHex(new Unit('40000').asOne().toWei()), // maxTotalDelegation
|
|
'0xb9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608611', // remove key
|
|
'0xb9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608612' // add key
|
|
)
|
|
const stakingTx: StakingTransaction = new StakingTransaction(
|
|
Directive.DirectiveEditValidator,
|
|
stakeMsg,
|
|
2, // nonce
|
|
numberToHex(new Unit('1').asOne().toWei()), // gasPrice
|
|
100, // gasLimit
|
|
2, // chainId
|
|
);
|
|
const signed = stakingTx.rlpSign('4edef2c24995d15b0e25cbd152fb0e2c05d3b79b9c2afd134e6f59f91bf99e48')
|
|
console.log( 'Signed transaction' )
|
|
console.log(signed)
|
|
"""
|
|
@pytest.mark.run(order=3)
|
|
def test_edit_validator_sign(setup_blockchain):
|
|
if not (test_validator_object or test_validator_loaded):
|
|
pytest.skip('Validator not ready yet')
|
|
signed_hash = test_validator_object.sign_edit_validator_transaction(
|
|
2,
|
|
int(convert_one_to_atto(1)),
|
|
100,
|
|
'0.06',
|
|
'0xb9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608612', # add key
|
|
"0xb9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608611", # remove key
|
|
'4edef2c24995d15b0e25cbd152fb0e2c05d3b79b9c2afd134e6f59f91bf99e48',
|
|
2).rawTransaction.hex()
|
|
assert signed_hash == '0xf9012101f8d094ebcd16e8c1d8f493ba04e99a56474122d81a9c58f83885416c69636585616c69636591616c6963652e6861726d6f6e792e6f6e6583426f6295446f6e2774206d6573732077697468206d65212121c887d529ae9e8600008a021e19e0c9bab24000008a0878678326eac9000000b0b9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b62247608611b0b9486167ab9087ab818dc4ce026edb5bf216863364c32e42df2af03c5ced1ad181e7d12f0e6dd5307a73b6224760861202880de0b6b3a76400006428a0656d6741687ec1e42d1699274584a1777964e939b0ef11f3ff0e161859da21a2a03fc51e067f9fb6c96bee5ceccad4104f5b4b334a86a36a2f53d10b9a8e4a268a'
|
|
|
|
@pytest.mark.run(order=4)
|
|
def test_invalid_validator(setup_blockchain):
|
|
if not (test_validator_object or test_validator_loaded):
|
|
pytest.skip('Validator not ready yet')
|
|
with pytest.raises(InvalidValidatorError):
|
|
info = {
|
|
'name': 'Alice',
|
|
}
|
|
test_validator_object.load(info)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_name('a'*141)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_identity('a'*141)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_website('a'*141)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_security_contact('a'*141)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_details('a'*281)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_min_self_delegation(1)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_max_total_delegation(1)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_amount(1)
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_max_rate('2.0')
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_max_change_rate('-2.0')
|
|
with pytest.raises(InvalidValidatorError):
|
|
test_validator_object.set_rate('-2.0')
|
|
|
|
@pytest.mark.run(order=5)
|
|
def test_validator_getters(setup_blockchain):
|
|
if not (test_validator_object or test_validator_loaded):
|
|
pytest.skip('Validator not ready yet')
|
|
assert test_validator_object.get_address() == 'one1a0x3d6xpmr6f8wsyaxd9v36pytvp48zckswvv9'
|
|
assert test_validator_object.add_bls_key('5')
|
|
assert test_validator_object.remove_bls_key('5')
|
|
assert test_validator_object.get_name() == 'Alice'
|
|
assert test_validator_object.get_identity() == 'alice'
|
|
assert test_validator_object.get_website() == 'alice.harmony.one'
|
|
assert test_validator_object.get_security_contact() == 'Bob'
|
|
assert test_validator_object.get_details() == "Don't mess with me!!!"
|
|
assert isinstance(test_validator_object.get_min_self_delegation(), Decimal)
|
|
assert isinstance(test_validator_object.get_max_total_delegation(), Decimal)
|
|
assert isinstance(test_validator_object.get_amount(), Decimal)
|
|
assert isinstance(test_validator_object.get_max_rate(), Decimal)
|
|
assert isinstance(test_validator_object.get_max_change_rate(), Decimal)
|
|
assert isinstance(test_validator_object.get_rate(), Decimal)
|
|
assert len(test_validator_object.get_bls_keys()) > 0
|
|
|
|
@pytest.mark.run(order=6)
|
|
def test_validator_load_from_blockchain(setup_blockchain):
|
|
test_validator_object2 = validator.Validator('one109r0tns7av5sjew7a7fkekg4fs3pw0h76pp45e')
|
|
test_validator_object2.load_from_blockchain()
|
|
|