-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtest.rs
61 lines (50 loc) · 1.36 KB
/
test.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
55
56
57
58
59
60
61
use crate::{BlockAuthorInherentProvider, BlockProductionLogApi};
use sidechain_slots::Slot;
use sp_api::ApiRef;
use sp_api::ProvideRuntimeApi;
use sp_runtime::traits::Block as BlockT;
pub type Block = sp_runtime::generic::Block<
sp_runtime::generic::Header<u32, sp_runtime::traits::BlakeTwo256>,
sp_runtime::OpaqueExtrinsic,
>;
type Member = u32;
type Author = u64;
#[derive(Clone, Default)]
struct TestApi {
author: Option<Member>,
}
impl ProvideRuntimeApi<Block> for TestApi {
type Api = Self;
fn runtime_api(&self) -> ApiRef<Self::Api> {
(*self).clone().into()
}
}
sp_api::mock_impl_runtime_apis! {
impl BlockProductionLogApi<Block, Member> for TestApi {
fn get_author(_slot: Slot) -> Option<Member> {
self.author
}
}
}
#[test]
fn provides_author_when_runtime_api_returns_one() {
let mock_api = TestApi { author: Some(102) };
let provider = BlockAuthorInherentProvider::<Author>::new(
&mock_api,
<Block as BlockT>::Hash::default(),
Slot::from(42),
)
.expect("Should not fail");
assert_eq!(provider.author, mock_api.author.map(Author::from));
}
#[test]
fn skips_providing_author_when_runtime_api_returns_none() {
let mock_api = TestApi { author: None };
let provider = BlockAuthorInherentProvider::<Author>::new(
&mock_api,
<Block as BlockT>::Hash::default(),
Slot::from(42),
)
.expect("Should not fail");
assert_eq!(provider.author, None);
}