-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
136 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
117 changes: 117 additions & 0 deletions
117
target_chains/solana/programs/pyth-solana-receiver/tests/test_post_updates_atomic.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
use { | ||
crate::common::{ | ||
trim_vaa_signatures, | ||
DEFAULT_GUARDIAN_SET_INDEX, | ||
}, | ||
common::{ | ||
setup_pyth_receiver, | ||
ProgramTestFixtures, | ||
}, | ||
pyth_solana_receiver::{ | ||
instruction::PostUpdatesAtomic, | ||
sdk::deserialize_accumulator_update_data, | ||
state::price_update::{ | ||
PriceUpdateV1, | ||
VerificationLevel, | ||
}, | ||
}, | ||
pythnet_sdk::{ | ||
messages::Message, | ||
test_utils::{ | ||
create_accumulator_message, | ||
create_dummy_price_feed_message, | ||
}, | ||
}, | ||
solana_sdk::{ | ||
signature::Keypair, | ||
signer::Signer, | ||
}, | ||
wormhole_core_bridge_solana::ID as BRIDGE_ID, | ||
}; | ||
|
||
mod common; | ||
|
||
|
||
#[tokio::test] | ||
async fn test_post_updates_atomic() { | ||
let feed_1 = create_dummy_price_feed_message(100); | ||
let feed_2 = create_dummy_price_feed_message(200); | ||
let message = create_accumulator_message(&[feed_1, feed_2], &[feed_1, feed_2], false); | ||
let (vaa, merkle_price_updates) = deserialize_accumulator_update_data(message).unwrap(); | ||
|
||
let vaa = trim_vaa_signatures(vaa, 5); | ||
|
||
let ProgramTestFixtures { | ||
mut program_simulator, | ||
encoded_vaa_addresses: _, | ||
} = setup_pyth_receiver(vec![]).await; | ||
|
||
let poster = program_simulator.get_funded_keypair().await.unwrap(); | ||
let price_update_keypair = Keypair::new(); | ||
|
||
// post one update atomically | ||
program_simulator | ||
.process_ix( | ||
PostUpdatesAtomic::populate( | ||
poster.pubkey(), | ||
price_update_keypair.pubkey(), | ||
BRIDGE_ID, | ||
DEFAULT_GUARDIAN_SET_INDEX, | ||
vaa.clone(), | ||
merkle_price_updates[0].clone(), | ||
), | ||
&vec![&poster, &price_update_keypair], | ||
None, | ||
) | ||
.await | ||
.unwrap(); | ||
|
||
|
||
let mut price_update_account = program_simulator | ||
.get_anchor_account_data::<PriceUpdateV1>(price_update_keypair.pubkey()) | ||
.await | ||
.unwrap(); | ||
|
||
assert_eq!(price_update_account.write_authority, poster.pubkey()); | ||
assert_eq!( | ||
price_update_account.verification_level, | ||
VerificationLevel::Partial(5) | ||
); | ||
assert_eq!( | ||
Message::PriceFeedMessage(price_update_account.price_message), | ||
feed_1 | ||
); | ||
|
||
// post another update to the same account | ||
program_simulator | ||
.process_ix( | ||
PostUpdatesAtomic::populate( | ||
poster.pubkey(), | ||
price_update_keypair.pubkey(), | ||
BRIDGE_ID, | ||
DEFAULT_GUARDIAN_SET_INDEX, | ||
vaa.clone(), | ||
merkle_price_updates[1].clone(), | ||
), | ||
&vec![&poster, &price_update_keypair], | ||
None, | ||
) | ||
.await | ||
.unwrap(); | ||
|
||
|
||
price_update_account = program_simulator | ||
.get_anchor_account_data::<PriceUpdateV1>(price_update_keypair.pubkey()) | ||
.await | ||
.unwrap(); | ||
|
||
assert_eq!(price_update_account.write_authority, poster.pubkey()); | ||
assert_eq!( | ||
price_update_account.verification_level, | ||
VerificationLevel::Partial(5) | ||
); | ||
assert_eq!( | ||
Message::PriceFeedMessage(price_update_account.price_message), | ||
feed_2 | ||
); | ||
} |