-
Notifications
You must be signed in to change notification settings - Fork 58
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
4 changed files
with
280 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[[balance]] | ||
address = "ivmscertKgRyX8wNMJJsQcSVEyPsfSMUQXSAgeAPQXsndqFq9Pmknzhm61QvcEEdxPaGgxDS4RHpb6KKccrnSKN" | ||
seed = 57005 | ||
notes = [10_000_000_000] |
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
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,166 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
// | ||
// Copyright (c) DUSK NETWORK. All rights reserved. | ||
|
||
use std::collections::HashMap; | ||
use std::path::Path; | ||
use std::sync::{Arc, RwLock}; | ||
|
||
use dusk_wallet_core::{self as wallet}; | ||
use rand::prelude::*; | ||
use rand::rngs::StdRng; | ||
use rusk::{Result, Rusk}; | ||
use rusk_abi::{ContractId, TRANSFER_DATA_CONTRACT, TRANSFER_LOGIC_CONTRACT}; | ||
use tempfile::tempdir; | ||
|
||
use crate::common::logger; | ||
use crate::common::state::{generator_procedure, new_state, ExecuteResult}; | ||
use crate::common::wallet::{TestProverClient, TestStateClient, TestStore}; | ||
|
||
const BLOCK_HEIGHT: u64 = 1; | ||
const BLOCK_GAS_LIMIT: u64 = 1_000_000_000_000; | ||
|
||
const GAS_LIMIT: u64 = 200_000_000; | ||
|
||
fn initial_state<P: AsRef<Path>>(dir: P) -> Result<Rusk> { | ||
let snapshot = toml::from_str(include_str!("../config/protected.toml")) | ||
.expect("Cannot deserialize config"); | ||
|
||
new_state(dir, &snapshot) | ||
} | ||
|
||
const SENDER_INDEX: u64 = 0; | ||
|
||
const TRANSFER_DATA_PROTECTED_METHODS: &'static [&'static str] = &[ | ||
"root", | ||
"num_notes", | ||
"module_balance", | ||
"message", | ||
"opening", | ||
"existing_nullifiers", | ||
"any_nullifier_exists", | ||
"extend_nullifiers", | ||
"take_message_from_address_key", | ||
"root_exists", | ||
"push_message", | ||
"take_crossover", | ||
"set_crossover", | ||
"get_crossover", | ||
"extend_notes", | ||
"sub_balance", | ||
"leaves_from_height", | ||
"leaves_from_pos", | ||
"push_note", | ||
"get_note", | ||
"update_root", | ||
"add_module_balance", | ||
"get_module_balance", | ||
]; | ||
|
||
const TRANSFER_LOGIC_PROTECTED_METHODS: &'static [&'static str] = &[ | ||
"mint", | ||
"stct", | ||
"wfct", | ||
"wfct_raw", | ||
"stco", | ||
"wfco", | ||
"wfco_raw", | ||
"wfctc", | ||
"root", | ||
"num_notes", | ||
"module_balance", | ||
"message", | ||
"opening", | ||
"existing_nullifiers", | ||
"leaves_from_height", | ||
"leaves_from_pos", | ||
"spend_and_execute", | ||
"refund", | ||
"push_note", | ||
"update_root", | ||
"add_module_balance", | ||
"sub_module_balance", | ||
]; | ||
|
||
fn test_protected_internal_methods( | ||
contract: ContractId, | ||
protected_methods: &'static [&'static str], | ||
rusk: &Rusk, | ||
wallet: &wallet::Wallet<TestStore, TestStateClient, TestProverClient>, | ||
) { | ||
let mut rng = StdRng::seed_from_u64(0xcafe); | ||
|
||
let refund = wallet | ||
.public_spend_key(SENDER_INDEX) | ||
.expect("Getting a public spend key should succeed"); | ||
|
||
let txs: Vec<_> = protected_methods | ||
.iter() | ||
.map(|method| { | ||
wallet | ||
.execute( | ||
&mut rng, | ||
contract.to_bytes().into(), | ||
String::from(*method), | ||
(), | ||
SENDER_INDEX, | ||
&refund, | ||
GAS_LIMIT, | ||
1, | ||
) | ||
.expect("Making the transaction should succeed") | ||
}) | ||
.collect(); | ||
|
||
let expected = ExecuteResult { | ||
discarded: txs.len(), | ||
executed: 0, | ||
}; | ||
|
||
let _spent_transactions = generator_procedure( | ||
rusk, | ||
txs.as_slice(), | ||
BLOCK_HEIGHT, | ||
BLOCK_GAS_LIMIT, | ||
vec![], | ||
Some(expected), | ||
) | ||
.expect("generator procedure should succeed"); | ||
} | ||
|
||
#[tokio::test(flavor = "multi_thread")] | ||
pub async fn protected_internal_methods() -> Result<()> { | ||
logger(); | ||
|
||
let tmp = tempdir().expect("Should be able to create temporary directory"); | ||
let rusk = initial_state(&tmp)?; | ||
|
||
let cache = Arc::new(RwLock::new(HashMap::new())); | ||
|
||
let wallet = wallet::Wallet::new( | ||
TestStore, | ||
TestStateClient { | ||
rusk: rusk.clone(), | ||
cache, | ||
}, | ||
TestProverClient::default(), | ||
); | ||
|
||
test_protected_internal_methods( | ||
TRANSFER_DATA_CONTRACT, | ||
TRANSFER_DATA_PROTECTED_METHODS, | ||
&rusk, | ||
&wallet, | ||
); | ||
|
||
test_protected_internal_methods( | ||
TRANSFER_LOGIC_CONTRACT, | ||
TRANSFER_LOGIC_PROTECTED_METHODS, | ||
&rusk, | ||
&wallet, | ||
); | ||
|
||
Ok(()) | ||
} |
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,108 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
// | ||
// Copyright (c) DUSK NETWORK. All rights reserved. | ||
|
||
use std::collections::HashMap; | ||
use std::path::Path; | ||
use std::sync::{Arc, RwLock}; | ||
|
||
use dusk_wallet_core::{self as wallet}; | ||
use rand::prelude::*; | ||
use rand::rngs::StdRng; | ||
use rusk::{Result, Rusk}; | ||
use rusk_abi::{ContractId, TRANSFER_CONTRACT}; | ||
use tempfile::tempdir; | ||
|
||
use crate::common::logger; | ||
use crate::common::state::{generator_procedure, new_state}; | ||
use crate::common::wallet::{TestProverClient, TestStateClient, TestStore}; | ||
|
||
const BLOCK_HEIGHT: u64 = 1; | ||
const BLOCK_GAS_LIMIT: u64 = 1_000_000_000_000; | ||
|
||
const GAS_LIMIT: u64 = 200_000_000; | ||
|
||
fn initial_state<P: AsRef<Path>>(dir: P) -> Result<Rusk> { | ||
let snapshot = toml::from_str(include_str!("../config/protected.toml")) | ||
.expect("Cannot deserialize config"); | ||
|
||
new_state(dir, &snapshot) | ||
} | ||
|
||
const SENDER_INDEX: u64 = 0; | ||
|
||
const TRANSFER_PROXY_PROTECTED_METHODS: &'static [&'static str] = &[ | ||
"spend_and_execute", | ||
"refund", | ||
"push_note", | ||
"update_root", | ||
"add_module_balance", | ||
]; | ||
|
||
fn test_protected_proxy_method( | ||
contract: ContractId, | ||
protected_method: &str, | ||
rusk: &Rusk, | ||
wallet: &wallet::Wallet<TestStore, TestStateClient, TestProverClient>, | ||
) { | ||
let mut rng = StdRng::seed_from_u64(0xcafe); | ||
|
||
let refund = wallet | ||
.public_spend_key(SENDER_INDEX) | ||
.expect("Getting a public spend key should succeed"); | ||
|
||
let tx = wallet | ||
.execute( | ||
&mut rng, | ||
contract.to_bytes().into(), | ||
String::from(protected_method), | ||
(), | ||
SENDER_INDEX, | ||
&refund, | ||
GAS_LIMIT, | ||
1, | ||
) | ||
.expect("Making the transaction should succeed"); | ||
|
||
let spent_transactions = generator_procedure( | ||
rusk, | ||
&[tx], | ||
BLOCK_HEIGHT, | ||
BLOCK_GAS_LIMIT, | ||
vec![], | ||
None, | ||
) | ||
.expect("generator procedure should succeed"); | ||
assert!(spent_transactions | ||
.first() | ||
.expect("Transaction should exist") | ||
.err | ||
.is_some()); | ||
} | ||
|
||
#[tokio::test(flavor = "multi_thread")] | ||
pub async fn protected_proxy_methods() -> Result<()> { | ||
logger(); | ||
|
||
let tmp = tempdir().expect("Should be able to create temporary directory"); | ||
let rusk = initial_state(&tmp)?; | ||
|
||
let cache = Arc::new(RwLock::new(HashMap::new())); | ||
|
||
let wallet = wallet::Wallet::new( | ||
TestStore, | ||
TestStateClient { | ||
rusk: rusk.clone(), | ||
cache, | ||
}, | ||
TestProverClient::default(), | ||
); | ||
|
||
for method in TRANSFER_PROXY_PROTECTED_METHODS { | ||
test_protected_proxy_method(TRANSFER_CONTRACT, *method, &rusk, &wallet); | ||
} | ||
|
||
Ok(()) | ||
} |