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-06-18 07:40:21 +00:00
|
|
|
mod common;
|
|
|
|
use common::{HasLogger, Logger};
|
2022-08-13 15:20:13 +00:00
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2024-07-17 12:56:08 +00:00
|
|
|
#[salsa::db]
|
2022-08-13 15:20:13 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
struct Database {
|
|
|
|
storage: salsa::Storage<Self>,
|
|
|
|
logger: Logger,
|
|
|
|
}
|
|
|
|
|
2024-07-17 12:56:08 +00:00
|
|
|
#[salsa::db]
|
2022-08-24 12:11:48 +00:00
|
|
|
impl salsa::Database for Database {}
|
2022-08-13 15:20:13 +00:00
|
|
|
|
|
|
|
impl HasLogger for Database {
|
|
|
|
fn logger(&self) -> &Logger {
|
|
|
|
&self.logger
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute() {
|
|
|
|
let mut db = Database::default();
|
|
|
|
|
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!");
|
|
|
|
}
|