Skip to content

Commit

Permalink
Merge branch 'master' into integration_test_iah
Browse files Browse the repository at this point in the history
  • Loading branch information
sczembor authored Sep 26, 2023
2 parents b11cb5f + 981a7dd commit 611178f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 25 deletions.
4 changes: 3 additions & 1 deletion contracts/easy-poll/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ pub enum PollError {
IncorrectAnswerVector,
AlredyAnswered,
AnswerTooLong(usize),
InsufficientDeposit(u128),
}

impl FunctionError for PollError {
Expand All @@ -32,7 +33,8 @@ impl FunctionError for PollError {
},
PollError::IncorrectAnswerVector => panic_str("the answer vector provided is incorrect and does not match the questions in the poll"),
PollError::AlredyAnswered => panic_str("user has already answered"),
PollError::AnswerTooLong(len) => {panic_str(&format!("the answer too long, max_len:{}, got:{}", MAX_TEXT_ANSWER_LEN, len))}
PollError::AnswerTooLong(len) => {panic_str(&format!("the answer too long, max_len:{}, got:{}", MAX_TEXT_ANSWER_LEN, len))},
PollError::InsufficientDeposit(req_deposit) => {panic_str(&format!("not enough storage deposit, required: {}", req_deposit))}
}
}
}
35 changes: 16 additions & 19 deletions contracts/easy-poll/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@ use crate::events::emit_create_poll;
use crate::events::emit_respond;
pub use crate::ext::*;
pub use crate::storage::*;
use cost::MILI_NEAR;
use ext::ext_registry;
use near_sdk::borsh::{self, BorshDeserialize, BorshSerialize};
use near_sdk::collections::LookupMap;
use near_sdk::collections::LookupSet;
use near_sdk::Gas;
use near_sdk::{env, near_bindgen, require, AccountId, PanicOnDefault};
use near_sdk::{Balance, Gas};

mod errors;
mod events;
mod ext;
mod storage;

pub const RESPOND_COST: Balance = MILI_NEAR;
pub const RESPOND_CALLBACK_GAS: Gas = Gas(2 * Gas::ONE_TERA.0);
pub const MAX_TEXT_ANSWER_LEN: usize = 500; // TODO: decide on the maximum length of the text answers to

Expand Down Expand Up @@ -120,11 +118,9 @@ impl Contract {
poll_id: PollId,
answers: Vec<Option<Answer>>,
) -> Result<(), PollError> {
require!(
env::attached_deposit() >= RESPOND_COST,
"attached_deposit not sufficient"
);
let caller = env::predecessor_account_id();
let storage_start = env::storage_usage();
let storage_deposit = env::attached_deposit();

self.assert_active(poll_id)?;

Expand All @@ -145,6 +141,12 @@ impl Contract {
} else {
self.on_human_verifed(vec![], false, caller, poll_id, answers)?
}

let required_deposit =
(env::storage_usage() - storage_start) as u128 * env::storage_byte_cost();
if storage_deposit < required_deposit {
return Err(PollError::InsufficientDeposit(required_deposit));
}
Ok(())
}

Expand Down Expand Up @@ -287,16 +289,17 @@ impl Contract {

#[cfg(test)]
mod tests {
use cost::MILI_NEAR;
use near_sdk::{
test_utils::{self, VMContextBuilder},
testing_env, AccountId, VMContext,
testing_env, AccountId, Balance, VMContext,
};

use crate::{
Answer, Contract, OpinionRangeResult, PollError, PollResult, Question, Results, Status,
RESPOND_COST,
};

pub const RESPOND_COST: Balance = MILI_NEAR;
const MILI_SECOND: u64 = 1000000; // nanoseconds

fn alice() -> AccountId {
Expand Down Expand Up @@ -450,16 +453,6 @@ mod tests {
assert_eq!(res.unwrap(), expected);
}

#[test]
#[should_panic(expected = "attached_deposit not sufficient")]
fn respond_wrong_deposit() {
let (mut ctx, mut ctr) = setup(&alice());
ctx.attached_deposit = RESPOND_COST - 1;
testing_env!(ctx);
let res = ctr.respond(0, vec![Some(Answer::YesNo(true))]);
assert!(res.is_err());
}

#[test]
fn respond_poll_not_active() {
let (mut ctx, mut ctr) = setup(&alice());
Expand Down Expand Up @@ -514,6 +507,7 @@ mod tests {
String::from(""),
String::from(""),
);
ctx.attached_deposit = RESPOND_COST;
ctx.block_timestamp = MILI_SECOND * 3;
testing_env!(ctx.clone());
let mut res = ctr.on_human_verifed(
Expand Down Expand Up @@ -650,6 +644,7 @@ mod tests {
String::from(""),
String::from(""),
);
ctx.attached_deposit = RESPOND_COST;
ctx.predecessor_account_id = alice();
ctx.block_timestamp = MILI_SECOND * 3;
testing_env!(ctx.clone());
Expand Down Expand Up @@ -707,6 +702,7 @@ mod tests {
String::from(""),
String::from(""),
);
ctx.attached_deposit = RESPOND_COST;
ctx.predecessor_account_id = alice();
ctx.block_timestamp = MILI_SECOND * 3;
testing_env!(ctx.clone());
Expand Down Expand Up @@ -762,6 +758,7 @@ mod tests {
String::from(""),
String::from(""),
);
ctx.attached_deposit = RESPOND_COST;
ctx.predecessor_account_id = alice();
ctx.block_timestamp = MILI_SECOND * 3;
testing_env!(ctx.clone());
Expand Down
7 changes: 2 additions & 5 deletions contracts/easy-poll/tests/workspaces.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
use anyhow::Ok;
use easy_poll::{PollResult, Results, Status};
use near_sdk::{serde_json::json, store::vec};
use near_sdk::serde_json::json;
use near_units::parse_near;
use sbt::TokenMetadata;
use test_util::{build_contract, get_block_timestamp, registry_default, registry_mint_iah_tokens};
use test_util::{build_contract, get_block_timestamp, registry_default};
use workspaces::{network::Sandbox, Account, AccountId, Contract, Worker};

const IAH_CLASS: u64 = 1;

async fn respond(
easy_poll_contract: &AccountId,
responder: &Account,
Expand Down

0 comments on commit 611178f

Please sign in to comment.