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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
use proc_macro2::Span;
use quote::{ToTokens, format_ident, quote};
use std::{
collections::hash_map::DefaultHasher,
hash::{Hash, Hasher}
};
use syn::{
*,
spanned::Spanned
};
use crate::{
AttrFormatter,
mock_function::{self, MockFunction},
compile_error
};
pub(crate) struct MockTrait {
pub attrs: Vec<Attribute>,
pub consts: Vec<ImplItemConst>,
pub generics: Generics,
pub methods: Vec<MockFunction>,
pub ss_name: Ident,
pub trait_path: Path,
self_path: PathSegment,
pub types: Vec<ImplItemType>,
pub unsafety: Option<Token![unsafe]>
}
impl MockTrait {
fn ss_name_priv(trait_path: &Path) -> Ident {
let path_args = &trait_path.segments.last().unwrap().arguments;
if path_args.is_empty() {
format_ident!("{}", trait_path.segments.last().unwrap().ident)
} else {
let mut hasher = DefaultHasher::new();
path_args.hash(&mut hasher);
format_ident!("{}_{}", trait_path.segments.last().unwrap().ident,
hasher.finish())
}
}
pub fn ss_name(&self) -> &Ident {
&self.ss_name
}
pub fn new(structname: &Ident,
struct_generics: &Generics,
impl_: ItemImpl,
vis: &Visibility) -> Self
{
let mut consts = Vec::new();
let mut methods = Vec::new();
let mut types = Vec::new();
let trait_path = if let Some((_, path, _)) = impl_.trait_ {
path
} else {
compile_error(impl_.span(), "impl block must implement a trait");
Path::from(format_ident!("__mockall_invalid"))
};
let ss_name = MockTrait::ss_name_priv(&trait_path);
let self_path = match *impl_.self_ty {
Type::Path(mut type_path) =>
type_path.path.segments.pop().unwrap().into_value(),
x => {
compile_error(x.span(),
"mockall_derive only supports mocking traits and structs");
PathSegment::from(Ident::new("", Span::call_site()))
}
};
for ii in impl_.items.into_iter() {
match ii {
ImplItem::Const(iic) => {
consts.push(iic);
},
ImplItem::Method(iim) => {
let mf = mock_function::Builder::new(&iim.sig, vis)
.attrs(&iim.attrs)
.levels(2)
.call_levels(0)
.struct_(structname)
.struct_generics(struct_generics)
.trait_(&ss_name)
.build();
methods.push(mf);
},
ImplItem::Type(iit) => {
types.push(iit);
},
_ => {
compile_error(ii.span(),
"This impl item is not yet supported by MockAll");
}
}
}
MockTrait {
attrs: impl_.attrs,
consts,
generics: impl_.generics,
methods,
ss_name,
trait_path,
self_path,
types,
unsafety: impl_.unsafety
}
}
pub fn trait_impl(&self, modname: &Ident) -> impl ToTokens {
let trait_impl_attrs = &self.attrs;
let impl_attrs = AttrFormatter::new(&self.attrs)
.async_trait(false)
.doc(false)
.format();
let (ig, _tg, wc) = self.generics.split_for_impl();
let consts = &self.consts;
let path_args = &self.self_path.arguments;
let calls = self.methods.iter()
.map(|meth| meth.call(Some(modname)))
.collect::<Vec<_>>();
let contexts = self.methods.iter()
.filter(|meth| meth.is_static())
.map(|meth| meth.context_fn(Some(modname)))
.collect::<Vec<_>>();
let expects = self.methods.iter()
.filter(|meth| !meth.is_static())
.map(|meth| {
if meth.is_method_generic() {
meth.expect(modname, None)
} else {
meth.expect(modname, Some(path_args))
}
}).collect::<Vec<_>>();
let trait_path = &self.trait_path;
let self_path = &self.self_path;
let types = &self.types;
let unsafety = &self.unsafety;
quote!(
#(#trait_impl_attrs)*
#unsafety impl #ig #trait_path for #self_path #wc {
#(#consts)*
#(#types)*
#(#calls)*
}
#(#impl_attrs)*
impl #ig #self_path #wc {
#(#expects)*
#(#contexts)*
}
)
}
}