-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow mocking some methods with generic non-static arguments
Add a #[mockall::concretize] attribute. When set on a function or method, its generic expectations will be turned into trait objects. But it only works for function arguments that are pure generic types or a few basic combinations: * T * &T * &mut T * &[T] Issue #217
- Loading branch information
Showing
6 changed files
with
610 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// vim: tw=80 | ||
//! A method whose argument is a common `Deref` target. | ||
//! | ||
//! The Expectation should wotk on the Deref implementor, so that it's 'static. | ||
#![deny(warnings)] | ||
|
||
use mockall::*; | ||
use std::path::Path; | ||
|
||
#[automock] | ||
trait Foo { | ||
#[concretize] | ||
fn foo<P: AsRef<std::path::Path>>(&self, x: P); | ||
} | ||
|
||
#[automock] | ||
pub mod mymod { | ||
#[mockall::concretize] | ||
pub fn bang<P: AsRef<std::path::Path>>(_x: P) { unimplemented!() } | ||
} | ||
|
||
mod generic_arg { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let mut foo = MockFoo::new(); | ||
foo.expect_foo() | ||
.withf(|p| p.as_ref() == Path::new("/tmp")) | ||
.times(3) | ||
.return_const(()); | ||
foo.foo(Path::new("/tmp")); | ||
foo.foo(Path::new("/tmp").to_owned()); | ||
foo.foo("/tmp"); | ||
} | ||
} | ||
|
||
mod module { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let ctx = mock_mymod::bang_context(); | ||
ctx.expect() | ||
.withf(|p| p.as_ref() == Path::new("/tmp")) | ||
.times(3) | ||
.return_const(()); | ||
mock_mymod::bang(Path::new("/tmp")); | ||
mock_mymod::bang(Path::new("/tmp").to_owned()); | ||
mock_mymod::bang("/tmp"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
// vim: tw=80 | ||
//! A method whose argument is a common `Deref` target. | ||
//! | ||
//! The Expectation should wotk on the Deref implementor, so that it's 'static. | ||
#![deny(warnings)] | ||
|
||
use mockall::*; | ||
use std::path::{Path, PathBuf}; | ||
|
||
trait AsRefMut<T: ?Sized>: AsRef<T> + AsMut<T> {} | ||
impl<Q, T> AsRefMut<T> for Q where Q: AsRef<T> + AsMut<T>, T: ?Sized {} | ||
|
||
mock! { | ||
Foo { | ||
#[mockall::concretize] | ||
fn foo<P: AsRef<std::path::Path>>(&self, x: P); | ||
|
||
#[mockall::concretize] | ||
fn boom<P>(&self, x: P) where P: AsRef<std::path::Path>; | ||
|
||
#[mockall::concretize] | ||
fn bang<P: AsRef<std::path::Path>>(x: P); | ||
|
||
#[mockall::concretize] | ||
fn boomref<P: AsRef<std::path::Path>>(&self, x: &P); | ||
|
||
#[mockall::concretize] | ||
fn boom_mutref<T: AsRefMut<str>>(&self, x: &mut T); | ||
|
||
#[mockall::concretize] | ||
fn boomv<P>(&self, x: &[P]) where P: AsRef<std::path::Path>; | ||
// TODO: mutable slices | ||
|
||
//fn boom_iter<I, P>(&self, x: I) | ||
//where I: ExactSizeIterator<Item=P>, | ||
//P: AsRef<Path>; | ||
|
||
// TODO: combination closure plus concretization | ||
//fn closure_and_generics<F, P>(&self, x: P, f: F) | ||
//where F: Fn(u32) -> u32 + 'static, | ||
//P: AsRef<std::path::Path>; | ||
} | ||
} | ||
|
||
mod generic_arg { | ||
use super::*; | ||
|
||
// This is as close as you can come when using `with`, but it fails to | ||
// compile. | ||
//#[test] | ||
//fn with() { | ||
//let mut foo = MockFoo::new(); | ||
//foo.expect_foo() | ||
//.with(predicate::eq(&Path::new("/tmp") as &dyn AsRef<Path>)) | ||
//.times(3) | ||
//.return_const(()); | ||
//foo.foo(Path::new("/tmp")); | ||
//foo.foo(Path::new("/tmp").to_owned()); | ||
//foo.foo("/tmp"); | ||
//} | ||
|
||
#[test] | ||
fn withf() { | ||
let mut foo = MockFoo::new(); | ||
foo.expect_foo() | ||
.withf(|p| p.as_ref() == Path::new("/tmp")) | ||
.times(3) | ||
.return_const(()); | ||
foo.foo(Path::new("/tmp")); | ||
foo.foo(PathBuf::from(Path::new("/tmp"))); | ||
foo.foo("/tmp"); | ||
} | ||
} | ||
|
||
mod where_clause { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let mut foo = MockFoo::new(); | ||
foo.expect_boom() | ||
.withf(|p| p.as_ref() == Path::new("/tmp")) | ||
.times(3) | ||
.return_const(()); | ||
foo.boom(Path::new("/tmp")); | ||
foo.boom(PathBuf::from(Path::new("/tmp"))); | ||
foo.boom("/tmp"); | ||
} | ||
} | ||
|
||
mod mutable_reference_arg { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let mut foo = MockFoo::new(); | ||
foo.expect_boom_mutref() | ||
.withf(|p| p.as_ref() == "/tmp") | ||
.once() | ||
.returning(|s| s.as_mut().make_ascii_uppercase()); | ||
let mut s = String::from("/tmp"); | ||
foo.boom_mutref(&mut s); | ||
assert_eq!(s, "/TMP"); | ||
} | ||
} | ||
|
||
mod reference_arg { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let mut foo = MockFoo::new(); | ||
foo.expect_boomref() | ||
.withf(|p| p.as_ref() == Path::new("/tmp")) | ||
.times(3) | ||
.return_const(()); | ||
foo.boomref(&Path::new("/tmp")); | ||
foo.boomref(&PathBuf::from(Path::new("/tmp"))); | ||
foo.boomref(&"/tmp"); | ||
} | ||
} | ||
|
||
mod slice { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let mut foo = MockFoo::new(); | ||
foo.expect_boomv() | ||
.withf(|v| | ||
v[0].as_ref() == Path::new("/tmp") && | ||
v[1].as_ref() == Path::new("/mnt") | ||
).times(3) | ||
.return_const(()); | ||
foo.boomv(&[Path::new("/tmp"), Path::new("/mnt")]); | ||
foo.boomv(&[PathBuf::from("/tmp"), PathBuf::from("/mnt")]); | ||
foo.boomv(&["/tmp", "/mnt"]); | ||
} | ||
} | ||
|
||
mod static_method { | ||
use super::*; | ||
|
||
#[test] | ||
fn withf() { | ||
let ctx = MockFoo::bang_context(); | ||
ctx.expect() | ||
.withf(|p| p.as_ref() == Path::new("/tmp")) | ||
.times(3) | ||
.return_const(()); | ||
MockFoo::bang(Path::new("/tmp")); | ||
MockFoo::bang(PathBuf::from(Path::new("/tmp"))); | ||
MockFoo::bang("/tmp"); | ||
} | ||
} |
Oops, something went wrong.