mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 03:18:05 +00:00
b8ee6a084f
- Renamed all crate names from subxt-* to pezkuwi-subxt-* - Updated codegen to use pezsp_runtime, pezsp_core, pezframe_support instead of sp_runtime, sp_core, frame_support - Replaced all internal references from subxt_* to pezkuwi_subxt_* - Added local path dependencies to Pezkuwi SDK crates - Updated workspace configuration for edition 2024
55 lines
1.6 KiB
Rust
55 lines
1.6 KiB
Rust
#![cfg(target_arch = "wasm32")]
|
|
|
|
use pezkuwi_subxt_signer::{ecdsa, eth, sr25519};
|
|
use wasm_bindgen_test::*;
|
|
|
|
wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);
|
|
|
|
// Run the tests by calling:
|
|
//
|
|
// ```text
|
|
// wasm-pack test --firefox --headless
|
|
// ```
|
|
//
|
|
// These are independent of any other package to ensure that nothing
|
|
// else enabled the same feature flag that subxt-signer needs to work ok
|
|
// (subxt seems to, for instance).
|
|
|
|
#[wasm_bindgen_test]
|
|
async fn wasm_sr25519_signing_works() {
|
|
let alice = sr25519::dev::alice();
|
|
|
|
// There's some non-determinism in the signing, so this ensures that
|
|
// the rand stuff is configured properly to run ok in wasm.
|
|
let signature = alice.sign(b"Hello there");
|
|
assert!(sr25519::verify(
|
|
&signature,
|
|
b"Hello there",
|
|
&alice.public_key()
|
|
));
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
async fn wasm_ecdsa_signing_works() {
|
|
let alice = ecdsa::dev::alice();
|
|
|
|
// There's some non-determinism in the signing, so this ensures that
|
|
// the rand stuff is configured properly to run ok in wasm.
|
|
let signature = alice.sign(b"Hello there");
|
|
assert!(ecdsa::verify(
|
|
&signature,
|
|
b"Hello there",
|
|
&alice.public_key()
|
|
));
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
async fn wasm_eth_signing_works() {
|
|
let alice = eth::dev::alith();
|
|
|
|
// There's some non-determinism in the signing, so this ensures that
|
|
// the rand stuff is configured properly to run ok in wasm.
|
|
let signature = alice.sign(b"Hello there");
|
|
assert!(eth::verify(&signature, b"Hello there", &alice.public_key()));
|
|
}
|