salsa/tests/mutate_in_place.rs

54 lines
1.1 KiB
Rust
Raw Normal View History

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
use test_log::test;
#[salsa::jar(db = Db)]
struct Jar(MyInput);
trait Db: salsa::DbWithJar<Jar> + HasLogger {}
#[salsa::input(jar = Jar)]
struct MyInput {
field: String,
}
#[salsa::db(Jar)]
#[derive(Default)]
struct Database {
storage: salsa::Storage<Self>,
logger: Logger,
}
impl salsa::Database for Database {}
2022-08-13 15:20:13 +00:00
impl Db for Database {}
impl HasLogger for Database {
fn logger(&self) -> &Logger {
&self.logger
}
}
#[test]
fn execute() {
let mut db = Database::default();
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!");
}