5 个不稳定版本

0.3.1 2023 年 8 月 21 日
0.3.0 2022 年 12 月 13 日
0.2.1 2022 年 10 月 4 日
0.2.0 2022 年 9 月 23 日
0.1.0 2022 年 5 月 12 日

#427魔法豆

Download history 16/week @ 2024-04-02 116/week @ 2024-04-09 19/week @ 2024-04-16

每月 53 次下载
2 crates 中使用

自定义许可证

210KB
5K SLoC

Trdelnik Logo

Trdelník

Ackee Blockchain Discord invitation

Ackee Blockchain 开发

Crates.io Crates.io Crates.io Crates.io
lint test-examples-turnstile

Trdelník 是一个基于 Rust 的测试框架,为编写在 Anchor 中编写的 Solana 程序提供了几个方便的开发者工具。

  • Trdelnik 客户端 - 构建和部署 Anchor 程序到本地集群并对其运行测试套件;
  • Trdelnik 控制台 - 内置控制台,为开发者提供快速程序交互的命令提示符;
  • Trdelnik 模糊测试 - 属性和状态测试;
  • Trdelnik 探索器 - 探索账本变更。
Trdelnik Demo

依赖关系

安装

cargo install trdelnik-cli

# or the specific version

cargo install --version <version> trdelnik-cli

使用方法

# navigate to your project root directory
trdelnik init
# it will generate `.program_client` and `trdelnik-tests` directories with all the necessary files
trdelnik test
# want more?
trdelnik --help

如何编写测试?

// <my_project>/trdelnik-tests/tests/test.rs
// TODO: do not forget to add all necessary dependencies to the generated `trdelnik-tests/Cargo.toml`
use program_client::my_instruction;
use trdelnik_client::*;
use my_program;

#[throws]
#[fixture]
async fn init_fixture() -> Fixture {
  // create a test fixture
  let mut fixture = Fixture {
    client: Client::new(system_keypair(0)),
    // make sure your program is using a correct program ID
    program: program_keypair(1),
    state: keypair(42),
  };
  // deploy a tested program
  fixture.deploy().await?;
  // call instruction init
  my_instruction::initialize(
    &fixture.client,
    fixture.state.pubkey(),
    fixture.client.payer().pubkey(),
    System::id(),
    Some(fixture.state.clone()),
  ).await?;
  fixture
}

#[trdelnik_test]
async fn test_happy_path(#[future] init_fixture: Result<Fixture>) {
  let fixture = init_fixture.await?;
  // call the instruction
  my_instruction::do_something(
    &fixture.client,
    "dummy_string".to_owned(),
    fixture.state.pubkey(),
    None,
  ).await?;
  // check the test result
  let state = fixture.get_state().await?;
  assert_eq!(state.something_changed, "yes");
}

请确保您的程序在宏 derive_id!(...) 中使用了正确的程序ID,并在 Anchor.toml 文件内。如果不是,请获取您所使用的密钥对的公钥,并在这两个地方进行替换。要获取密钥对的程序ID(密钥对的公钥),可以使用 trdelnik key-pair 命令。例如:

$ trdelnik key-pair program 7

将打印出从 program_keypair(7) 接收到的密钥对信息。

自定义结构的指令

  • 如果您想测试一个以自定义结构作为参数的指令
pub struct MyStruct {
  amount: u64,
}

// ...

pub fn my_instruction(ctx: Context<Ctx>, data: MyStruct) { /* ... */ }
  • 您应该在 .program_client 包中添加导入
// .program_client/src/lib.rs

// DO NOT EDIT - automatically generated file
pub mod my_program_instruction {
  use trdelnik_client::*;
  use my_program::MyStruct; // add this import

// ...
}
  • 此文件是自动生成的,但 use 语句将不会重新生成

跳过测试

  • 您可以使用 #[ignore] 宏来跳过测试。
#[trdelnik_test]
#[ignore]
async fn test() {}

测试与关联代币账户相关的程序

  • Trdelnik 没有导出 anchor-splspl-associated-token-account,因此您需要手动添加。
# <my-project>/trdelnik-tests/Cargo.toml
# import the correct versions manually
anchor-spl = "0.28.0"
spl-associated-token-account = "2.0.0"
// <my-project>/trdelnik-tests/tests/test.rs
use anchor_spl::token::Token;
use spl_associated_token_account;

async fn init_fixture() -> Fixture {
  // ...
  let account = keypair(1);
  let mint = keypair(2);
  // constructs a token mint
  client
    .create_token_mint(&mint, mint.pubkey(), None, 0)
    .await?;
  // constructs associated token account
  let token_account = client
    .create_associated_token_account(&account, mint.pubkey())
    .await?;
  let associated_token_program = spl_associated_token_account::id();
  // derives the associated token account address for the given wallet and mint
  let associated_token_address = spl_associated_token_account::get_associated_token_address(&account.pubkey(), mint);
  Fixture {
    // ...
    token_program: Token::id(),
  }
}
  • trdelnik init 命令为您生成了一个测试套件。
  • 有关更多详细信息,请参阅完整的测试实现链接

支持的版本

  • 我们支持下表中指定的 AnchorSolana 版本。
Trdelnik CLI Anchor Solana
最新版 ~0.28.* =1.16.6
v0.4.0 ~0.27.* >=1.15
v0.3.0 ~0.25.* >=1.10
v0.2.0 ~0.24.* >=1.9
  • 我们正在探索Anchor的新版本,请确保您只使用受支持的版本。我们正在努力 💪

配置

配置变量可以在在项目根目录下生成的 Trdelnik.toml 文件中进行编辑。

名称 默认值 描述
test.validator_startup_timeout 10 000 在失败之前等待 solana-test-validator 的时间(毫秒)

路线图

  • 2022年Q1/22 Trdelnik 在索拉纳黑客屋布拉格宣布
    • Trdelnik 客户端可供测试
  • 2022年Q2/22 Trdelnik 探索器可用
  • 2022年Q2/22 Trdelnik 客户端和探索器在索拉纳黑客屋巴塞罗那介绍
  • 2023年Q3 Trdelnik 模糊测试在索拉纳黑客屋柏林介绍

奖项

Marinade 社区奖 - 2022年Solana Riptide黑客马拉松Marinade拨款的获胜者。

贡献

感谢您对Trdelník的贡献兴趣!请参阅CONTRIBUTING.md了解如何操作。

许可

本项目采用MIT许可

大学和投资伙伴

依赖关系

~75MB
~1.5M SLoC