2022-08-13 15:20:13 +00:00
|
|
|
//! Test that a setting a field on a `#[salsa::input]`
|
|
|
|
//! overwrites and returns the old value.
|
|
|
|
|
2024-07-17 12:56:08 +00:00
|
|
|
use salsa::Setter;
|
2022-08-13 15:20:13 +00:00
|
|
|
use test_log::test;
|
|
|
|
|
2024-07-16 10:04:01 +00:00
|
|
|
#[salsa::input]
|
2022-08-13 15:20:13 +00:00
|
|
|
struct MyInput {
|
|
|
|
field: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute() {
|
2024-07-27 12:29:41 +00:00
|
|
|
let mut db = salsa::DatabaseImpl::new();
|
2022-08-13 15:20:13 +00:00
|
|
|
|
2022-09-03 21:48:24 +00:00
|
|
|
let input = MyInput::new(&db, "Hello".to_string());
|
2022-08-13 15:20:13 +00:00
|
|
|
|
|
|
|
// Overwrite field with an empty String
|
|
|
|
// and store the old value in my_string
|
2022-08-22 10:32:04 +00:00
|
|
|
let mut my_string = input.set_field(&mut db).to(String::new());
|
2022-08-13 15:20:13 +00:00
|
|
|
my_string.push_str(" World!");
|
|
|
|
|
|
|
|
// Set the field back to out initial String,
|
|
|
|
// expecting to get the empty one back
|
2022-08-22 10:32:04 +00:00
|
|
|
assert_eq!(input.set_field(&mut db).to(my_string), "");
|
2022-08-13 15:20:13 +00:00
|
|
|
|
|
|
|
// Check if the stored String is the one we expected
|
|
|
|
assert_eq!(input.field(&db), "Hello World!");
|
|
|
|
}
|