mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-06-16 05:59:54 +00:00
BREAKING CHANGE:
- Crate `nssa` renamed to `lee`; update `Cargo.toml` dependencies from `nssa = { workspace = true }` to `lee = { workspace = true }`.
- Crate `nssa_core` renamed to `lee_core`; update similarly.
- Crate `key_protocol` moved under `lee`; update `Cargo.toml` dependencies from `key_protocol = { workspace = true }` to `lee_key_protocol = { workspace = true }`.
- Type `NSSATransaction` (in `common`) renamed to `LeeTransaction`.
- Error type `nssa::error::NssaError` renamed to `lee::error::LeeError`.
- Error type `nssa_core::error::NssaCoreError` renamed to `lee_core::error::LeeCoreError`.
- All `use nssa::` and `use nssa_core::` import paths must be updated to `use lee::` and `use lee_core::` respectively.
- Guest programs must replace `write_nssa_outputs` with `write_lee_outputs`.
- The sequencer RocksDB column family for the chain state was renamed. Existing databases are incompatible and must be wiped before running the new version.
- Domain separators updated: `"NSSA_seed"` → `"LEE_seed"` (key derivation), `"NSSA/v0.2/KDF-SHA256/"` → `"LEE/v0.2/KDF-SHA256/"` (encryption KDF), `"/NSSA/v0.2/AccountId/PDA/"` →
`"/LEE/v0.2/AccountId/PDA/"` (public PDA address derivation). All previously derived keys, encrypted outputs, and public PDA addresses are invalidated.
154 lines
4.2 KiB
Rust
154 lines
4.2 KiB
Rust
#![cfg(test)]
|
|
|
|
use ata_core::{compute_ata_seed, get_associated_token_account_id};
|
|
use lee_core::account::{Account, AccountId, AccountWithMetadata, Data};
|
|
use token_core::{TokenDefinition, TokenHolding};
|
|
|
|
const ATA_PROGRAM_ID: lee_core::program::ProgramId = [1u32; 8];
|
|
const TOKEN_PROGRAM_ID: lee_core::program::ProgramId = [2u32; 8];
|
|
|
|
fn owner_id() -> AccountId {
|
|
AccountId::new([0x01u8; 32])
|
|
}
|
|
|
|
fn definition_id() -> AccountId {
|
|
AccountId::new([0x02u8; 32])
|
|
}
|
|
|
|
fn ata_id() -> AccountId {
|
|
get_associated_token_account_id(
|
|
&ATA_PROGRAM_ID,
|
|
&compute_ata_seed(owner_id(), definition_id()),
|
|
)
|
|
}
|
|
|
|
fn owner_account() -> AccountWithMetadata {
|
|
AccountWithMetadata {
|
|
account: Account::default(),
|
|
is_authorized: true,
|
|
account_id: owner_id(),
|
|
}
|
|
}
|
|
|
|
fn definition_account() -> AccountWithMetadata {
|
|
AccountWithMetadata {
|
|
account: Account {
|
|
program_owner: TOKEN_PROGRAM_ID,
|
|
balance: 0,
|
|
data: Data::from(&TokenDefinition::Fungible {
|
|
name: "TEST".to_string(),
|
|
total_supply: 1000,
|
|
metadata_id: None,
|
|
}),
|
|
nonce: lee_core::account::Nonce(0),
|
|
},
|
|
is_authorized: false,
|
|
account_id: definition_id(),
|
|
}
|
|
}
|
|
|
|
fn uninitialized_ata_account() -> AccountWithMetadata {
|
|
AccountWithMetadata {
|
|
account: Account::default(),
|
|
is_authorized: false,
|
|
account_id: ata_id(),
|
|
}
|
|
}
|
|
|
|
fn initialized_ata_account() -> AccountWithMetadata {
|
|
AccountWithMetadata {
|
|
account: Account {
|
|
program_owner: TOKEN_PROGRAM_ID,
|
|
balance: 0,
|
|
data: Data::from(&TokenHolding::Fungible {
|
|
definition_id: definition_id(),
|
|
balance: 100,
|
|
}),
|
|
nonce: lee_core::account::Nonce(0),
|
|
},
|
|
is_authorized: false,
|
|
account_id: ata_id(),
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn create_emits_chained_call_for_uninitialized_ata() {
|
|
let (post_states, chained_calls) = crate::create::create_associated_token_account(
|
|
owner_account(),
|
|
definition_account(),
|
|
uninitialized_ata_account(),
|
|
ATA_PROGRAM_ID,
|
|
);
|
|
|
|
assert_eq!(post_states.len(), 3);
|
|
assert_eq!(chained_calls.len(), 1);
|
|
assert_eq!(chained_calls[0].program_id, TOKEN_PROGRAM_ID);
|
|
}
|
|
|
|
#[test]
|
|
fn create_is_idempotent_for_initialized_ata() {
|
|
let (post_states, chained_calls) = crate::create::create_associated_token_account(
|
|
owner_account(),
|
|
definition_account(),
|
|
initialized_ata_account(),
|
|
ATA_PROGRAM_ID,
|
|
);
|
|
|
|
assert_eq!(post_states.len(), 3);
|
|
assert!(
|
|
chained_calls.is_empty(),
|
|
"Should emit no chained call for already-initialized ATA"
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic(expected = "ATA account ID does not match expected derivation")]
|
|
fn create_panics_on_wrong_ata_address() {
|
|
let wrong_ata = AccountWithMetadata {
|
|
account: Account::default(),
|
|
is_authorized: false,
|
|
account_id: AccountId::new([0xFFu8; 32]),
|
|
};
|
|
|
|
crate::create::create_associated_token_account(
|
|
owner_account(),
|
|
definition_account(),
|
|
wrong_ata,
|
|
ATA_PROGRAM_ID,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn get_associated_token_account_id_is_deterministic() {
|
|
let seed = compute_ata_seed(owner_id(), definition_id());
|
|
let id1 = get_associated_token_account_id(&ATA_PROGRAM_ID, &seed);
|
|
let id2 = get_associated_token_account_id(&ATA_PROGRAM_ID, &seed);
|
|
assert_eq!(id1, id2);
|
|
}
|
|
|
|
#[test]
|
|
fn get_associated_token_account_id_differs_by_owner() {
|
|
let other_owner = AccountId::new([0x99u8; 32]);
|
|
let id1 = get_associated_token_account_id(
|
|
&ATA_PROGRAM_ID,
|
|
&compute_ata_seed(owner_id(), definition_id()),
|
|
);
|
|
let id2 = get_associated_token_account_id(
|
|
&ATA_PROGRAM_ID,
|
|
&compute_ata_seed(other_owner, definition_id()),
|
|
);
|
|
assert_ne!(id1, id2);
|
|
}
|
|
|
|
#[test]
|
|
fn get_associated_token_account_id_differs_by_definition() {
|
|
let other_def = AccountId::new([0x99u8; 32]);
|
|
let id1 = get_associated_token_account_id(
|
|
&ATA_PROGRAM_ID,
|
|
&compute_ata_seed(owner_id(), definition_id()),
|
|
);
|
|
let id2 =
|
|
get_associated_token_account_id(&ATA_PROGRAM_ID, &compute_ata_seed(owner_id(), other_def));
|
|
assert_ne!(id1, id2);
|
|
}
|