-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
177 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,13 @@ | ||
use std::time::Duration; | ||
|
||
#[mockall::automock] | ||
pub trait Pet { | ||
fn is_hungry(&self, since_last_meal: Duration) -> bool; | ||
} | ||
|
||
#[test] | ||
fn test_robot_pet() { | ||
let mut mock_dog = MockPet::new(); | ||
mock_dog.expect_is_hungry().return_const(true); | ||
assert_eq!(mock_dog.is_hungry(Duration::from_secs(10)), true); | ||
} |
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,44 @@ | ||
--- | ||
minutes: 10 | ||
--- | ||
|
||
# Mocking | ||
|
||
If you want to do mocking, we recommend [Mockall]. You need to refactor your | ||
code to use traits, which you can then quickly mock: | ||
|
||
```rust,ignore | ||
{{#include mockall.rs}} | ||
``` | ||
|
||
[Mockall]: https://docs.rs/mockall/ | ||
|
||
<details> | ||
|
||
- Mockall is not part of the Rust Playground, so you need to run this example in | ||
a local environment. Use `cargo add mockall` to quickly add Mockall to an | ||
existing Cargo project. | ||
|
||
- Mockall has a lot more functionality. In particular, you can set up | ||
expectations which depend on the arguments passed: | ||
|
||
```rust,ignore | ||
let mut mock_cat = MockPet::new(); | ||
mock_cat | ||
.expect_is_hungry() | ||
.with(mockall::predicate::gt(Duration::from_secs(3 * 3600))) | ||
.return_const(true); | ||
mock_cat | ||
.expect_is_hungry() | ||
.return_const(true); | ||
assert_eq!(mock_cat.is_hungry(Duration::from_secs(1 * 3600)), false); | ||
assert_eq!(mock_cat.is_hungry(Duration::from_secs(5 * 3600)), true); | ||
``` | ||
- You can use `.times(n)` to limit the number of times a mock method can be | ||
called to `n` --- the mock will automatically panic when dropped if this isn't | ||
satisfied. | ||
- Mockall is available for use in AOSP. | ||
</details> |