| Crates.io | pocket-ic |
| lib.rs | pocket-ic |
| version | 10.0.0 |
| created_at | 2023-10-12 14:31:12.300898+00 |
| updated_at | 2025-09-12 13:00:41.149642+00 |
| description | PocketIC: A Canister Smart Contract Testing Platform |
| homepage | |
| repository | https://github.com/dfinity/ic |
| max_upload_size | |
| id | 1001364 |
| size | 342,087 |
PocketIC is a local canister testing solution for the Internet Computer.
This testing library works together with the PocketIC server, allowing you to interact with your local IC instances and the canisters thereon.
With PocketIC Rust, testing canisters is as simple as calling Rust functions. Here is a simple example:
use candid::{Principal, encode_one};
use pocket_ic::PocketIc;
// 2T cycles
const INIT_CYCLES: u128 = 2_000_000_000_000;
#[test]
fn test_counter_canister() {
let pic = PocketIc::new();
// Create a canister and charge it with 2T cycles.
let canister_id = pic.create_canister();
pic.add_cycles(canister_id, INIT_CYCLES);
// Install the counter canister wasm file on the canister.
let counter_wasm = todo!();
pic.install_canister(canister_id, counter_wasm, vec![], None);
// Make some calls to the canister.
let reply = call_counter_can(&pic, canister_id, "read");
assert_eq!(reply, vec![0, 0, 0, 0]);
let reply = call_counter_can(&pic, canister_id, "write");
assert_eq!(reply, vec![1, 0, 0, 0]);
let reply = call_counter_can(&pic, canister_id, "write");
assert_eq!(reply, vec![2, 0, 0, 0]);
let reply = call_counter_can(&pic, canister_id, "read");
assert_eq!(reply, vec![2, 0, 0, 0]);
}
fn call_counter_can(pic: &PocketIc, canister_id: Principal, method: &str) -> Vec<u8> {
pic.update_call(
canister_id,
Principal::anonymous(),
method,
encode_one(()).unwrap(),
)
.expect("Failed to call counter canister")
}
PocketIcBuilder::with_server_binary or the environment variable POCKET_IC_BIN.cargo add pocket-ic.use pocket_ic::PocketIc, and create a new PocketIC instance with let pic = PocketIc::new() in your Rust code and start testing!For simple but complete examples, see integration tests.
To see a minimalistic setup of PocketIC in a Rust project, check out the ICP Hello World Rust repository.
For larger test suites with more complex test setups, consider the OpenChat integration test suite. Note that instances are shared among test cases there, which is not recommended in general.
If you decide to contribute, we encourage you to announce it on the Forum!