forked from opentensor/subtensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chain_spec.rs
54 lines (45 loc) · 1.63 KB
/
chain_spec.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use sp_core::sr25519;
// use sp_consensus_aura::sr25519::AuthorityId as AuraId;
// use sp_finality_grandpa::AuthorityId as GrandpaId;
use node_subtensor::chain_spec::*;
#[test]
fn test_get_from_seed() {
let seed = "WoOt";
let pare = get_from_seed::<sr25519::Public>(seed);
let expected = "5Gj3QEiZaFJPFK1yN4Lkj6FLM4V7GEBCewVBVniuvZ75S2Fd";
assert_eq!(pare.to_string(), expected);
}
#[test]
#[should_panic(expected = "static values are valid; qed: InvalidFormat")]
fn test_get_from_seed_panics() {
let bad_seed = "";
get_from_seed::<sr25519::Public>(bad_seed);
}
#[test]
fn test_get_account_id_from_seed() {
let seed = "WoOt";
let account_id = get_account_id_from_seed::<sr25519::Public>(seed);
let expected = "5Gj3QEiZaFJPFK1yN4Lkj6FLM4V7GEBCewVBVniuvZ75S2Fd";
assert_eq!(account_id.to_string(), expected);
}
#[test]
#[should_panic(expected = "static values are valid; qed: InvalidFormat")]
fn test_get_account_id_from_seed_panics() {
let bad_seed = "";
get_account_id_from_seed::<sr25519::Public>(bad_seed);
}
#[test]
fn test_authority_keys_from_seed() {
let seed = "WoOt";
let (aura_id, grandpa_id) = authority_keys_from_seed(seed);
let expected_aura_id = "5Gj3QEiZaFJPFK1yN4Lkj6FLM4V7GEBCewVBVniuvZ75S2Fd";
let expected_grandpa_id = "5H7623Nvxq655p9xrLQPip1mwssFRMfL5fvT5LUSa4nWwLSm";
assert_eq!(aura_id.to_string(), expected_aura_id);
assert_eq!(grandpa_id.to_string(), expected_grandpa_id);
}
#[test]
#[should_panic(expected = "static values are valid; qed: InvalidFormat")]
fn test_authority_keys_from_seed_panics() {
let bad_seed = "";
authority_keys_from_seed(bad_seed);
}