Add tests for vote_program
This commit is contained in:
@@ -1,13 +1,50 @@
|
|||||||
//! Vote program
|
//! Vote program
|
||||||
//! Receive and processes votes from validators
|
//! Receive and processes votes from validators
|
||||||
|
|
||||||
|
use bincode::deserialize;
|
||||||
use log::*;
|
use log::*;
|
||||||
use solana_sdk::account::KeyedAccount;
|
use solana_sdk::account::KeyedAccount;
|
||||||
use solana_sdk::native_program::ProgramError;
|
use solana_sdk::native_program::ProgramError;
|
||||||
use solana_sdk::pubkey::Pubkey;
|
use solana_sdk::pubkey::Pubkey;
|
||||||
use solana_sdk::solana_entrypoint;
|
use solana_sdk::solana_entrypoint;
|
||||||
use solana_sdk::vote_program::*;
|
use solana_sdk::vote_program::{self, Vote, VoteInstruction, VoteProgram};
|
||||||
use std::collections::VecDeque;
|
|
||||||
|
fn register(keyed_accounts: &mut [KeyedAccount]) -> Result<(), ProgramError> {
|
||||||
|
if !vote_program::check_id(&keyed_accounts[1].account.owner) {
|
||||||
|
error!("account[1] is not assigned to the VOTE_PROGRAM");
|
||||||
|
Err(ProgramError::InvalidArgument)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: a single validator could register multiple "vote accounts"
|
||||||
|
// which would clutter the "accounts" structure. See github issue 1654.
|
||||||
|
let vote_state = VoteProgram::new(*keyed_accounts[0].signer_key().unwrap());
|
||||||
|
vote_state.serialize(&mut keyed_accounts[1].account.userdata)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn process_vote(keyed_accounts: &mut [KeyedAccount], vote: Vote) -> Result<(), ProgramError> {
|
||||||
|
if !vote_program::check_id(&keyed_accounts[0].account.owner) {
|
||||||
|
error!("account[0] is not assigned to the VOTE_PROGRAM");
|
||||||
|
Err(ProgramError::InvalidArgument)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut vote_state = VoteProgram::deserialize(&keyed_accounts[0].account.userdata)?;
|
||||||
|
|
||||||
|
// TODO: Integrity checks
|
||||||
|
// a) Verify the vote's bank hash matches what is expected
|
||||||
|
// b) Verify vote is older than previous votes
|
||||||
|
|
||||||
|
// Only keep around the most recent MAX_VOTE_HISTORY votes
|
||||||
|
if vote_state.votes.len() == vote_program::MAX_VOTE_HISTORY {
|
||||||
|
vote_state.votes.pop_front();
|
||||||
|
}
|
||||||
|
|
||||||
|
vote_state.votes.push_back(vote);
|
||||||
|
vote_state.serialize(&mut keyed_accounts[0].account.userdata)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
solana_entrypoint!(entrypoint);
|
solana_entrypoint!(entrypoint);
|
||||||
fn entrypoint(
|
fn entrypoint(
|
||||||
@@ -27,55 +64,104 @@ fn entrypoint(
|
|||||||
Err(ProgramError::InvalidArgument)?;
|
Err(ProgramError::InvalidArgument)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
match bincode::deserialize(data) {
|
match deserialize(data).map_err(|_| ProgramError::InvalidUserdata)? {
|
||||||
Ok(VoteInstruction::RegisterAccount) => {
|
VoteInstruction::RegisterAccount => register(keyed_accounts),
|
||||||
if !check_id(&keyed_accounts[1].account.owner) {
|
VoteInstruction::NewVote(vote) => {
|
||||||
error!("account[1] is not assigned to the VOTE_PROGRAM");
|
|
||||||
Err(ProgramError::InvalidArgument)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: a single validator could register multiple "vote accounts"
|
|
||||||
// which would clutter the "accounts" structure. See github issue 1654.
|
|
||||||
let vote_state = VoteProgram {
|
|
||||||
votes: VecDeque::new(),
|
|
||||||
node_id: *keyed_accounts[0].signer_key().unwrap(),
|
|
||||||
};
|
|
||||||
|
|
||||||
vote_state.serialize(&mut keyed_accounts[1].account.userdata)?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
Ok(VoteInstruction::NewVote(vote)) => {
|
|
||||||
if !check_id(&keyed_accounts[0].account.owner) {
|
|
||||||
error!("account[0] is not assigned to the VOTE_PROGRAM");
|
|
||||||
Err(ProgramError::InvalidArgument)?;
|
|
||||||
}
|
|
||||||
debug!("{:?} by {}", vote, keyed_accounts[0].signer_key().unwrap());
|
debug!("{:?} by {}", vote, keyed_accounts[0].signer_key().unwrap());
|
||||||
solana_metrics::submit(
|
solana_metrics::submit(
|
||||||
solana_metrics::influxdb::Point::new("vote-native")
|
solana_metrics::influxdb::Point::new("vote-native")
|
||||||
.add_field("count", solana_metrics::influxdb::Value::Integer(1))
|
.add_field("count", solana_metrics::influxdb::Value::Integer(1))
|
||||||
.to_owned(),
|
.to_owned(),
|
||||||
);
|
);
|
||||||
|
process_vote(keyed_accounts, vote)
|
||||||
let mut vote_state = VoteProgram::deserialize(&keyed_accounts[0].account.userdata)?;
|
|
||||||
|
|
||||||
// TODO: Integrity checks
|
|
||||||
// a) Verify the vote's bank hash matches what is expected
|
|
||||||
// b) Verify vote is older than previous votes
|
|
||||||
|
|
||||||
// Only keep around the most recent MAX_VOTE_HISTORY votes
|
|
||||||
if vote_state.votes.len() == MAX_VOTE_HISTORY {
|
|
||||||
vote_state.votes.pop_front();
|
|
||||||
}
|
|
||||||
|
|
||||||
vote_state.votes.push_back(vote);
|
|
||||||
vote_state.serialize(&mut keyed_accounts[0].account.userdata)?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
Err(_) => {
|
|
||||||
info!("Invalid transaction instruction userdata: {:?}", data);
|
|
||||||
Err(ProgramError::InvalidUserdata)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
use solana_sdk::account::Account;
|
||||||
|
use solana_sdk::signature::{Keypair, KeypairUtil};
|
||||||
|
use solana_sdk::vote_program;
|
||||||
|
|
||||||
|
fn create_vote_program(tokens: u64) -> Account {
|
||||||
|
let space = vote_program::get_max_size();
|
||||||
|
Account::new(tokens, space, vote_program::id())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn register_and_deserialize(
|
||||||
|
keyed_accounts: &mut [KeyedAccount],
|
||||||
|
) -> Result<VoteProgram, ProgramError> {
|
||||||
|
register(keyed_accounts)?;
|
||||||
|
let vote_state = VoteProgram::deserialize(&keyed_accounts[1].account.userdata).unwrap();
|
||||||
|
Ok(vote_state)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn vote_and_deserialize(
|
||||||
|
keyed_accounts: &mut [KeyedAccount],
|
||||||
|
vote: Vote,
|
||||||
|
) -> Result<VoteProgram, ProgramError> {
|
||||||
|
process_vote(keyed_accounts, vote)?;
|
||||||
|
let vote_state = VoteProgram::deserialize(&keyed_accounts[0].account.userdata).unwrap();
|
||||||
|
Ok(vote_state)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_voter_registration() {
|
||||||
|
let voter_id = Keypair::new().pubkey();
|
||||||
|
let mut voter_account = Account::new(100, 0, Pubkey::default());
|
||||||
|
|
||||||
|
let vote_state_id = Keypair::new().pubkey();
|
||||||
|
let mut vote_state_account = create_vote_program(100);
|
||||||
|
|
||||||
|
let mut keyed_accounts = [
|
||||||
|
KeyedAccount::new(&voter_id, true, &mut voter_account),
|
||||||
|
KeyedAccount::new(&vote_state_id, false, &mut vote_state_account),
|
||||||
|
];
|
||||||
|
|
||||||
|
let vote_state = register_and_deserialize(&mut keyed_accounts).unwrap();
|
||||||
|
assert_eq!(vote_state.node_id, voter_id);
|
||||||
|
assert!(vote_state.votes.is_empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_vote() {
|
||||||
|
let voter_id = Keypair::new().pubkey();
|
||||||
|
let mut voter_account = Account::new(100, 0, Pubkey::default());
|
||||||
|
|
||||||
|
let vote_state_id = Keypair::new().pubkey();
|
||||||
|
let mut vote_state_account = create_vote_program(100);
|
||||||
|
|
||||||
|
let mut keyed_accounts = [
|
||||||
|
KeyedAccount::new(&voter_id, true, &mut voter_account),
|
||||||
|
KeyedAccount::new(&vote_state_id, false, &mut vote_state_account),
|
||||||
|
];
|
||||||
|
register(&mut keyed_accounts).unwrap();
|
||||||
|
|
||||||
|
let mut keyed_accounts = [KeyedAccount::new(
|
||||||
|
&vote_state_id,
|
||||||
|
true,
|
||||||
|
&mut vote_state_account,
|
||||||
|
)];
|
||||||
|
let vote = Vote::new(1);
|
||||||
|
let vote_state = vote_and_deserialize(&mut keyed_accounts, vote.clone()).unwrap();
|
||||||
|
assert_eq!(vote_state.votes, vec![vote]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
// TODO: Should this work?
|
||||||
|
fn test_vote_without_registration() {
|
||||||
|
let vote_state_id = Keypair::new().pubkey();
|
||||||
|
let mut vote_state_account = create_vote_program(100);
|
||||||
|
|
||||||
|
let mut keyed_accounts = [KeyedAccount::new(
|
||||||
|
&vote_state_id,
|
||||||
|
true,
|
||||||
|
&mut vote_state_account,
|
||||||
|
)];
|
||||||
|
let vote = Vote::new(1);
|
||||||
|
let vote_state = vote_and_deserialize(&mut keyed_accounts, vote.clone()).unwrap();
|
||||||
|
assert_eq!(vote_state.votes, vec![vote]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -29,6 +29,12 @@ pub struct Vote {
|
|||||||
pub tick_height: u64,
|
pub tick_height: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Vote {
|
||||||
|
pub fn new(tick_height: u64) -> Self {
|
||||||
|
Self { tick_height }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
|
||||||
pub enum VoteInstruction {
|
pub enum VoteInstruction {
|
||||||
/// Register a new "vote account" to represent a particular validator in the Vote Contract,
|
/// Register a new "vote account" to represent a particular validator in the Vote Contract,
|
||||||
@@ -55,6 +61,11 @@ pub fn get_max_size() -> usize {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl VoteProgram {
|
impl VoteProgram {
|
||||||
|
pub fn new(node_id: Pubkey) -> Self {
|
||||||
|
let votes = VecDeque::new();
|
||||||
|
Self { votes, node_id }
|
||||||
|
}
|
||||||
|
|
||||||
pub fn deserialize(input: &[u8]) -> Result<VoteProgram, ProgramError> {
|
pub fn deserialize(input: &[u8]) -> Result<VoteProgram, ProgramError> {
|
||||||
deserialize(input).map_err(|_| ProgramError::InvalidUserdata)
|
deserialize(input).map_err(|_| ProgramError::InvalidUserdata)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user