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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
#![cfg_attr(doctest, feature(external_doc))]
#![allow(clippy::needless_doctest_main)]

//! # Faux
//!
//! A library to create [mocks] out of `struct`s.
//!
//! `faux` provides macros to help you create mocks out of your
//! structs without the need of generics nor trait objects polluting
//! your function signatures.
//!
//! **`faux` makes liberal use of unsafe rust features, and it is only
//! recommended for use inside tests.**
//!
//! [mocks]: https://martinfowler.com/articles/mocksArentStubs.html
//!
//! ## Usage:
//! ```
//! // creates the mockable struct
//! #[cfg_attr(test, faux::create)]
//! # #[faux::create]
//! pub struct Foo {
//!     a: u32,
//! }
//!
//! // mocks the methods
//! #[cfg_attr(test, faux::methods)]
//! # #[faux::methods]
//! impl Foo {
//!     pub fn new(a: u32) -> Self {
//!         Foo { a }
//!     }
//!
//!     pub fn add_stuff(&self, input: u32) -> u32 {
//!         self.a + input
//!     }
//!
//!     pub fn add_ref(&self, input: &u32) -> u32 {
//!         self.a + *input
//!     }
//! }
//!
//! #[cfg(test)]
//! #[test]
//! fn test() {
//!   // you can create the original object
//!   let real = Foo::new(3);
//!   assert_eq!(real.add_stuff(2), 5);
//!
//!   // can create a mock using the auto-generated `faux` method
//!   let mut mock = Foo::faux();
//!
//!   // if the inputs and output for a method are all static types
//!   // then it can be mocked safely
//!   faux::when!(mock.add_stuff).safe_then(|x| x);
//!   assert_eq!(mock.add_stuff(5), 5);
//!
//!   // other methods can be mocked using unsafe
//!   unsafe { faux::when!(mock.add_ref).then(|&x| x + 1) }
//!   assert_eq!(mock.add_ref(&3), 4);
//!
//!   // we can avoid unsafe if we do not care about the inputs
//!   unsafe { faux::when!(mock.add_ref).then_do(|| 10) }
//!   assert_eq!(mock.add_ref(&1), 10);
//! }
//! #
//! # fn main() {
//! #    // you can create the original object
//! #    let real = Foo::new(3);
//! #    assert_eq!(real.add_stuff(2), 5);
//! #
//! #    // can create a mock using the auto-generated `faux` method
//! #    let mut mock = Foo::faux();
//! #
//! #    // if the inputs and output for a method are all static types
//! #    // then it can be mocked safely
//! #    faux::when!(mock.add_stuff).safe_then(|x| x);
//! #    assert_eq!(mock.add_stuff(5), 5);
//! #
//! #    // other methods can be mocked using unsafe
//! #    unsafe { faux::when!(mock.add_ref).then(|&x| x + 1) }
//! #    assert_eq!(mock.add_ref(&3), 4);
//! #
//! #    // we can avoid unsafe if we do not care about the inputs
//! #    unsafe { faux::when!(mock.add_ref).then_do(|| 10) }
//! #    assert_eq!(mock.add_ref(&1), 10);
//! #  }
//! ```
//!
//! ## Features:
//! * Mock async methods
//! * Mock trait implementations
//! * Mock generic structs
//! * Mock methods with arbitrary self types (e.g., `self: Rc<Self>`). **limited support**
//! * Mock methods from structs in a different module

mod mock;
mod mock_store;
mod when;

/// Transforms a struct into a mockable version of itself.
///
/// It creates an associated function for the tagged struct called
/// `faux` and masks the original definition of the struct by changing
/// its name.
///
/// Use [cargo-expand] to see what your struct expands to after the
/// macro.
///
/// # Requirements
///
/// This macro deliberately fails to compile if any of the struct's
/// fields are not private. Otherwise, a user of the struct could try
/// to access the field directly when it no longer exists in the
/// transformed version.
///
/// Only methods within `impl` blocks tagged by [#\[methods\]] may use
/// any of the struct fields.
///
/// # Usage
/// ```
/// #[faux::create]
/// pub struct MyStruct {
///     a: i32,
///     b: Vec<u32>,
/// }
///
/// #[faux::methods]
/// impl MyStruct {
///     /* methods go here */
/// }
///
/// # fn main() {
/// // creates a mock out of MyStruct
/// let my_mock = MyStruct::faux();
/// # }
/// ```
///
/// # Attribute arguments
///
/// ## self_type
///
/// Allowed values:
/// * `#[create(self_type = "Rc")]`
/// * `#[create(self_type = "Arc")]`
/// * `#[create(self_type = "Box")]`
/// * `#[create(self_type = "Owned")]`
///   * this is the default and not necessary
///
/// Indicates how to wrap the real value of the struct when not being
/// mocked, e.g., wrap an owned instance vs an `Rc<>`. `faux` will
/// guide to use this attribute when needed through either a compile
/// time error or a panic. Do not use unless `faux` asks you to.
///
/// Be default `faux` wraps owned instance of your struct (i.e.,
/// `MyStruct`). However, sometimes this is not ideal if the only
/// interactions for this struct are through a different self type
/// (e.g., `self: Rc<Mystruct>`). In this case, we can indicate `faux`
/// to hold a non-owned version (e.g., `Rc<MyStruct>`). This is
/// particularly useful if the only methods that return an instance of
/// the struct return a non-owned instance of it.
///
/// If this attribute is set, all of the `impl` blocks tagged with
/// [#\[methods\]] must specify the same `self_type`.
///
/// ### Usage
/// ```
/// use std::sync::Arc;
///
/// #[faux::create(self_type = "Arc")]
/// pub struct MyStruct {
///     /* private fields */
/// }
///
/// #[faux::methods(self_type = "Arc")]
/// impl MyStruct {
///     pub fn new() -> Arc<Self> {
///         /* implementation */
///         # Arc::new(MyStruct {})
///     }
///
///     /* more methods */
/// }
/// # fn main() {}
/// ```
///
/// [#\[methods\]]: attr.methods.html
/// [cargo-expand]: https://github.com/dtolnay/cargo-expand
///
pub use faux_macros::create;

/// Transforms methods in an `impl` block into mockable versions of
/// themselves.
///
/// The mockable methods can then be mocked using [when!].
///
/// Associated functions and private methods are not mocked, and are
/// instead proxied to the real implementation.
///
/// # Requirements
///
/// [#\[create\]] must have been previously called for this struct.
///
/// # Usage
/// ```
/// #[faux::create]
/// pub struct MyStruct {
///     /* fields */
///     # data: Vec<u32>,
/// }
///
/// #[faux::methods]
/// impl MyStruct {
///     pub fn new(data: Vec<u32>) -> Self {
///         /* implementation code */
///         # MyStruct { data }
///     }
///
///     pub fn get(&self) -> usize {
///         20
///     }
/// }
///
/// use std::io::{self, Read};
///
/// #[faux::methods]
/// impl Read for MyStruct {
///     fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
///         /* potentially complicated implementation code */
///         # Ok(3)
///     }
/// }
///
/// # fn main() {
/// // #[methods] will not mock associated functions
/// // thus allowing you to still create real instances
/// let real = MyStruct::new(vec![5]);
/// assert_eq!(real.get(), 20);
///
/// // mock instances need to be mutable when mocking their methods
/// let mut fake = MyStruct::faux();
/// faux::when!(fake.get).safe_then(|_| 3);
/// assert_eq!(fake.get(), 3);
/// // unsafe because a parameter is a reference.
/// // See When's documentation
/// unsafe { faux::when!(fake.read).then(|a| Ok(a[0] as usize)) }
/// assert_eq!(fake.read(&mut vec![10]).unwrap(), 10);
/// # }
/// ```
/// # Attribute arguments
///
/// ## path
///
/// Indicates that the struct came from an imported module.
///
/// ```
/// mod foo {
///     #[faux::create]
///     pub struct MyStruct {}
///
///     // no need to tell #[faux::methods] where to find `MyStruct`
///     // if defined in the same module
///     #[faux::methods]
///     impl MyStruct {
///         pub fn three(&self) -> i32 {
///             3
///         }
///     }
///
///     mod foo_inner {
///         // the type is being imported from somewhere else
///         use super::MyStruct;
///
///         // so we have to tell faux where it came from
///         #[faux::methods(path = "super")]
///         impl MyStruct {
///             pub fn four(&self) -> i32 {
///                 self.three() + 1
///             }
///         }
///     }
/// }
///
/// mod bar {
///     // we are importing a module from somewhere else
///     use crate::foo;
///
///     // so we need to tell faux where that module came from
///     #[faux::methods(path = "crate")]
///     impl foo::MyStruct {
///         pub fn five(&self) -> i32 {
///             self.three() + 2
///         }
///     }
/// }
///
/// # fn main() {
/// let mut x = foo::MyStruct::faux();
/// faux::when!(x.three).safe_then(|_| 30);
/// faux::when!(x.four).safe_then(|_| 40);
/// faux::when!(x.five).safe_then(|_| 50);
///
/// assert_eq!(x.three(), 30);
/// assert_eq!(x.four(), 40);
/// assert_eq!(x.five(), 50);
/// # }
/// ```
///
/// ## self_type
///
/// Allowed values:
/// * `#[methods(self_type = "Rc")]`
/// * `#[methods(self_type = "Arc")]`
/// * `#[methods(self_type = "Box")]`
/// * `#[methods(self_type = "Owned")]`
///   * this is the default and not necessary
///
/// Indicates how the real value of the struct is wrapped when not
/// being mocked, e.g., wrapped as an owned instance vs an
/// `Rc<>`. `faux` will guide to use this attribute when needed
/// through either a compile time error or a panic. Do not use unless
/// `faux` asks you to.
///
/// If this attribute is set, the [#\[create\]] attribute must specify
/// the same `self_type` in the struct.
///
/// By default `faux` assumes that it has access to an owned instance
/// of the struct. However, the [#\[create\]] macro may have a
/// `self_type` specified that wraps the instance differently. This is
/// useful when the method receivers are all the same non-owned
/// received (e.g., `self: Rc<Self>`).
///
/// The method receivers for all the methods in the impl block must be
/// convertable from the `self_type` specified. In particular, while a
/// `&self` can be obtained from an `Rc<Self>` or an `Arc<Self>`, a
/// `&mut self` cannot. This means that if you specify `self_type =
/// "Rc"`, then none of the methods being mocked may take a `&mut
/// self` as a receiver. If you believe that a certain combination of
/// specified `self_type` and method receiver is doable but not
/// allowed in `faux` please file an issue.
///
/// Another effect of specifying the `self_type` is gaining the
/// ability to include methods and associated functions that return
/// `Self` wrapped in that pointer type.
///
/// ```
/// use std::rc::Rc;
///
/// #[faux::create(self_type = "Rc")]
/// pub struct ByRc {}
///
/// #[faux::methods(self_type = "Rc")]
/// impl ByRc {
///     // you can return plain Self
///     pub fn new() -> Self {
///         ByRc {}
///     }
///
///     // or the Self wrapped in the self_type
///     pub fn new_rc() -> Rc<Self> {
///         Rc::new(ByRc {})
///     }
///
///     // can call methods with an Rc<Self> receiver type
///     pub fn by_rc(self: Rc<Self>) {}
///
///     // Rc<Self> derefs to &self so this is okay too
///     pub fn by_ref(&self) {}
/// }
/// # fn main() {}
/// ```
///
/// # Panics
///
/// ## Non-mocked methods
///
/// Faux will not try to return a default value on non-mocked methods
/// so it panics instead.
///
/// ```should_panic
/// #[faux::create]
/// pub struct MyStruct {}
///
/// #[faux::methods]
/// impl MyStruct {
///     pub fn get(&self) -> usize {
///         50
///     }
/// }
///
/// # fn main() {
/// let fake = MyStruct::faux();
/// // fake.get is not mocked
/// fake.get(); // <~ panics
/// # }
/// ```
///
/// ## Mocking real instances
///
/// Spies are not supported and thus mocking real instances panic.
///
/// ```should_panic
/// #[faux::create]
/// pub struct MyStruct {}
///
/// #[faux::methods]
/// impl MyStruct {
///     pub fn new() -> MyStruct {
///         MyStruct {}
///     }
///
///     pub fn get(&self) -> usize {
///         50
///     }
/// }
///
/// # fn main() {
/// let mut fake = MyStruct::new();
/// faux::when!(fake.get); // <~ panics
/// # }
/// ```
///
/// ## Structs with `self: Rc<Self>` or `self: Arc<Self>` methods that have been cloned
///
/// While you do not need to specify `#[self_type = "Rc"]` or
/// `#[self_type = "Arc"]` even if you have `self: Rc<Self>` or `self:
/// Arc<Self>` receivers respectively, the real instances that are
/// created through this *must* be the only reference to the object
/// when calling these methods or else your test will fail.
///
/// ```rust should_panic
/// use std::rc::Rc;
///
/// #[faux::create]
/// pub struct Owned { /* fields */ }
///
/// #[faux::methods]
/// impl Owned {
///    pub fn new() -> Owned {
///        /* implementation */
///        # Owned {}
///    }
///
///    pub fn by_rc(self: Rc<Self>) {
///        /* implementation */
///    }
/// }
///
/// # pub fn main() {
/// // works if there is only a single reference
/// let rcd = Rc::new(Owned::new());
/// rcd.by_rc(); // this works
///
/// // panics if there are multiple references
/// let rcd = Rc::new(Owned::new());
/// let clone = rcd.clone();
/// rcd.by_rc(); // <~ panics: reference is not unique
/// # }
/// ```
///
/// In the case of a panic the panic message faux produces should
/// guide you towards using the `self_type` argument in the faux
/// attributes
///
/// # Known Limitations
///
/// [#13]: Only a single inherent impl block and a single trait
/// implementation per trait per type may exist.
///
/// [#14]: Methods may not contain instances of the same struct as
/// parameters.
///
/// [#18]: Generic methods and `impl` return types are not allowed
///
/// [#\[create\]]: attr.create.html
/// [#10]: https://github.com/nrxus/faux/issues/10
/// [#13]: https://github.com/nrxus/faux/issues/13
/// [#14]: https://github.com/nrxus/faux/issues/14
/// [#18]: https://github.com/nrxus/faux/issues/18
/// [when!]: macro.when.html
///
/// # Caveats
///
/// ## Methods/functions that return the mocked struct
///
/// Special care is taken for methods and function that return an
/// instance of the mocked struct. Unfortunately only methods that
/// return `-> Self` or `-> #{SomeStruct}` are
/// handled.
///
/// Methods/functions that returns your type wrapped as a generic of
/// another type (e.g., `Result<Self, _>`) cannot be wrapped in a faux
/// impl.  The exception to this is methods that receive an specified
/// [self_type](#self_type).
///
/// ```compile_fail
/// #[faux::create]
/// pub struct MyStruct {}
///
/// #[faux::methods]
/// impl MyStruct {
///     pub fn try_to_new() -> Result<Self, String> {
///         Ok(MyStruct {})
///     }
/// }
///
/// # fn main() {}
/// ```
///
/// A workaround is to place these functions outside the impl tagged
/// with `#[faux::method]` and have it redirect to the method inside the
/// tagged impl
///
/// ```
/// #[faux::create]
/// pub struct MyStruct {}
///
/// #[faux::methods]
/// impl MyStruct {
///     fn new() -> Self {
///         MyStruct {}
///     }
/// }
///
/// // do not tag this one
/// impl MyStruct {
///     pub fn try_to_new() -> Result<Self, String> {
///         Ok(MyStruct::new())
///     }
/// }
///
/// # fn main() {
/// let x = MyStruct::try_to_new();
/// assert!(x.is_ok());
/// # }
/// ```
///
/// ## Paths in types
///
/// `faux` supports implementing types of the form `path::to::Type` as
/// long as the path does not contain any `super` or `crate`
/// keywords. To implement such types use the [`path`](#path)
/// argument.
pub use faux_macros::methods;

/// Creates a [When] instance to mock a specific method in a struct.
///
/// The method to mock must be be in an `impl` blocked tagged by
/// [#\[methods\]]
///
/// [#\[methods\]]: attr.methods.html
/// [When]: struct.When.html
///
/// ```
/// #[faux::create]
/// pub struct Foo {}
///
/// #[faux::methods]
/// impl Foo {
///     pub fn some_method(&self, a: u32, b: i8) -> i32 {
///         /* implementation code */
///         # panic!()
///     }
/// }
///
/// fn main() {
///     let mut mock = Foo::faux();
///     // (u32, i8) is the input of the mocked method
///     // i32 is the output of the mocked method
///     let a: faux::When<(u32, i8), i32> = faux::when!(mock.some_method);
/// }
/// ```
pub use faux_macros::when;

pub use mock::ReturnedMock;
pub use mock_store::{MaybeFaux, MockStore};
pub use when::{When, WhenOnce};

#[doc(include = "../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;