-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from diegoTech14/fund_manager_tests
feat: test_fund_manager
- Loading branch information
Showing
2 changed files
with
100 additions
and
9 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
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,83 @@ | ||
// *************************************************************************************** | ||
// FUND MANAGER TEST | ||
// *************************************************************************************** | ||
use starknet::{ContractAddress, contract_address_const}; | ||
use starknet::class_hash::{ClassHash}; | ||
use starknet::syscalls::deploy_syscall; | ||
|
||
use snforge_std::{ | ||
ContractClass, declare, ContractClassTrait, start_cheat_caller_address_global, get_class_hash | ||
}; | ||
|
||
use openzeppelin::utils::serde::SerializedAppend; | ||
|
||
use gostarkme::fundManager::IFundManagerDispatcher; | ||
use gostarkme::fundManager::IFundManagerDispatcherTrait; | ||
|
||
fn ID() -> u128 { | ||
1 | ||
} | ||
fn OWNER() -> ContractAddress { | ||
contract_address_const::<'OWNER'>() | ||
} | ||
fn OTHER_USER() -> ContractAddress { | ||
contract_address_const::<'USER'>() | ||
} | ||
fn NAME() -> felt252 { | ||
'NAME_FUND_TEST' | ||
} | ||
fn REASON() -> ByteArray { | ||
"Lorem impsum, Lorem impsum, Lorem impsum, Lorem impsum, Lorem impsum, Lorem impsum, Lorem impsum, Lorem impsum" | ||
} | ||
fn GOAL() -> u64 { | ||
1000 | ||
} | ||
|
||
fn _setup_() -> (ContractAddress, ClassHash) { | ||
// Fund | ||
let fund = declare("Fund").unwrap(); | ||
let mut fund_calldata: Array<felt252> = array![]; | ||
fund_calldata.append_serde(ID()); | ||
fund_calldata.append_serde(OWNER()); | ||
fund_calldata.append_serde(NAME()); | ||
fund_calldata.append_serde(GOAL()); | ||
let (fund_contract_address, _) = fund.deploy(@fund_calldata).unwrap(); | ||
let fund_class_hash = get_class_hash(fund_contract_address); | ||
|
||
// Fund Manager | ||
let fund_manager = declare("FundManager").unwrap(); | ||
let mut fund_manager_calldata: Array<felt252> = array![]; | ||
fund_manager_calldata.append_serde(fund_class_hash); | ||
let (contract_address, _) = fund_manager.deploy(@fund_manager_calldata).unwrap(); | ||
|
||
return (contract_address, fund_class_hash,); | ||
} | ||
|
||
// ****************************************************************************** | ||
// TEST | ||
// ****************************************************************************** | ||
|
||
#[test] | ||
fn test_constructor() { | ||
start_cheat_caller_address_global(OWNER()); | ||
let (contract_address, fund_class_hash) = _setup_(); | ||
let fund_manager_contract = IFundManagerDispatcher { contract_address }; | ||
let expected_fund_address = fund_manager_contract.getFundClassHash(); | ||
let owner = fund_manager_contract.getOwner(); | ||
assert(owner == OWNER(), 'Invalid owner'); | ||
assert(fund_class_hash == expected_fund_address, 'Invalid fund class hash'); | ||
} | ||
|
||
#[test] | ||
fn test_new_fund(){ | ||
start_cheat_caller_address_global(OWNER()); | ||
let (contract_address, fund_class_hash) = _setup_(); | ||
let fund_manager_contract = IFundManagerDispatcher { contract_address }; | ||
fund_manager_contract.newFund(NAME(), GOAL()); | ||
let expected_fund_class_hash = get_class_hash( | ||
fund_manager_contract.getFund(1) | ||
); | ||
let current_id = fund_manager_contract.getCurrentId(); | ||
assert(expected_fund_class_hash == fund_class_hash, 'Invalid fund address'); | ||
assert(current_id == 1, 'Invalid current ID'); | ||
} |