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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
//! Declarative testing framework

extern crate proc_macro;

use crate::block::Root;
use crate::generate::Generate;

mod block;
mod generate;
mod inherit;

/// Allows for tests to be defined in a declarative manner, hiding repetitive code before
/// generation.
///
/// <hr />
///
/// `describe`/`context` blocks define a scope such as a `mod` block and can be nested as such.
/// ```
/// # use demonstrate::demonstrate;
/// demonstrate! {
///     describe outer {
///         describe inner {}
///     }
/// }
/// ```
/// This is generated into:
/// ```
/// #[cfg(test)]
/// mod outer {
///     mod inner {}
/// }
/// ```
///
/// <hr />
///
/// `it`/`test` blocks define a unit test.
/// ```
/// # use demonstrate::demonstrate;
/// demonstrate! {
///     describe tests {
///         it asserts {
///             assert!(true)
///         }
///     }
/// }
/// ```
/// This is generated into:
/// ```
/// #[cfg(test)]
/// mod tests {
///     #[test]
///     fn asserts() {
///         assert!(true)
///     }
/// }
/// ```
///
/// <hr />
///
/// Unlike `mod` blocks, `describe`/`context` blocks pass their `use` paths to nested `describe`/`context` blocks
/// ```
/// # use demonstrate::demonstrate;
/// fn so_true() -> bool {
///     true
/// }
///
/// demonstrate! {
///     describe outer {
///         use super::so_true;
///         describe inner {
///             it uses {
///                 assert!(so_true())
///             }
///         }
///     }
/// }
/// ```
/// This is generated into:
/// ```
/// fn so_true() -> bool {
///     true
/// }
///
/// #[cfg(test)]
/// mod outer {
///     use super::so_true;
///     mod inner {
///         use super::*;
///         #[test]
///         fn uses() {
///             asssert!(so_true())
///         }
///     }
/// }
/// ```
/// **Note:** If you would like to call `use` without it being inherited: call it within a seperate, nested
/// `describe`/`context` block
///
/// <hr />
///
/// `before` and `after` blocks prevent shared starting and ending sequences of code from being
/// written for each test within a the `describe`/`context` block it is contained in and each
/// nested `describe`/`context` block.
/// ```
/// # use demonstrate::demonstrate;
/// demonstrate! {
///     describe tests {
///         before {
///             let one = 1;
///         }
///
///         it one {
///             assert_eq!(one, 1)
///         }
///
///         it zero {
///             assert_eq!(one - 1, 0)
///         }
///
///         describe nested {
///             before {
///                 let two = 2;
///             }
///
///             it two {
///                 assert_eq!(one + 1, two)
///             }
///         }
///     }
/// }
/// ```
/// This is generated into:
/// ```
/// #[cfg(test)]
/// mod tests {
///     #[test]
///     fn one() {
///         let one = 1;
///         assert_eq!(one, 1)
///     }
///
///     #[test]
///     fn zero() {
///         let one = 1;
///         assert_eq!(one - 1, 1)
///     }
///
///     mod nested {
///         #[test]
///         fn two() {
///             let one = 1;
///             let two = 2;
///             assert_eq!(one + 1, two)
///         }
///     }
/// }
/// ```
///
/// <hr />
///
/// Outer attributes, returning result types, and async tokens are all valid for `it`/`test` blocks, and can
/// be applied to `describe`/`context` blocks as well which will affect all descendant tests.
/// (Return types will only be inherited by blocks without one already defined)
/// ```
/// # use demonstrate::demonstrate;
/// demonstrate! {
///     describe returnable -> Result<(), &'static str> {
///         it is_ok { Ok(()) }
///
///         it does_not_fail {
///             assert!(!false);
///             Ok(())
///         }
///
///         #[should_panic]
///         it fails -> () {
///             assert!(false)
///         }
///     }
/// }
/// ```
/// This is generated into:
/// ```
/// #[cfg(test)]
/// mod returnable {
///     #[test]
///     fn is_ok() -> Result<(), &'static str> {
///         Ok(())
///     }
///
///     #[test]
///     fn does_not_fail() -> Result<(), &'static str> {
///         assert!(!false);
///         Ok(())
///     }
///
///     #[test]
///     #[should_panic]
///     fn fails() -> () {
///         assert!(false)
///     }
/// }
/// ```
/// **Note:** If a `describe`/`context` block has a return type with an `after` block containing a
/// success result type being returned, keep in mind that a compile error will occur if a descendant test
/// has different return type than the one appearing in that `after` block.
#[proc_macro]
pub fn demonstrate(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = proc_macro2::TokenStream::from(input);

    let mut root = syn::parse2::<Root>(input).unwrap();

    proc_macro::TokenStream::from(root.generate(None))
}