#trdelnik #anchor #solana #testing #deployment #cluster #build

trdelnik-sandbox-client

trdelnik_client 库帮助您构建和部署 Anchor 程序到本地集群,并对其运行测试套件

5 个不稳定版本

0.3.1 2022 年 10 月 4 日
0.2.0 2022 年 9 月 26 日
0.1.2 2022 年 5 月 13 日
0.1.1 2022 年 5 月 13 日
0.1.0 2022 年 5 月 13 日

#4 in #trdelnik

每月 26 次下载
用于 trdelnik-sandbox-cli

自定义许可证

205KB
3.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!(...) 宏和 Anchor.toml 中使用正确的程序 ID。如果不是这样,请获取您使用的密钥对的公钥,并在这两个地方替换它。要获取密钥对的程序 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.24.2"
spl-associated-token-account = "1.0.3"
// <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 命令行界面 Anchor Solana
最新版本 ~0.25.* >=1.10
v0.2.0 ~0.24.* >=1.9
  • 我们正在探索 Anchor 的新版本,请确保您只使用支持的版本。我们正在努力💪

配置

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

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

路线图

  • 22 年 Q1 在布拉格的 Solana Hacker House 上宣布 Trdelnik
    • Trdelnik 客户端可用于测试
  • 22 年 Q2 Trdelnik 探索者可用
  • 22 年 Q2 在巴塞罗那的 Solana Hacker House 上介绍了 Trdelnik 客户端和探索者
  • 22 年 Q3 Trdelnik 控制台可用
  • 22 年 Q4 Trdelnik 模糊可用

奖项

Marinade 社区奖 - 2022 年 Solana Riptide Hackathon Marinade 奖学金的获胜者。

贡献

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

许可

本项目采用 MIT 许可证

大学和投资合作伙伴

依赖关系

~77MB
~1.5M SLoC