mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 20:20:26 +00:00
48 lines
1 KiB
Rust
48 lines
1 KiB
Rust
//! Test that a setting a field on a `#[salsa::input]`
|
|
//! overwrites and returns the old value.
|
|
|
|
mod common;
|
|
use common::{HasLogger, Logger};
|
|
|
|
use salsa::Setter;
|
|
use test_log::test;
|
|
|
|
#[salsa::input]
|
|
struct MyInput {
|
|
field: String,
|
|
}
|
|
|
|
#[salsa::db]
|
|
#[derive(Default)]
|
|
struct Database {
|
|
storage: salsa::Storage<Self>,
|
|
logger: Logger,
|
|
}
|
|
|
|
#[salsa::db]
|
|
impl salsa::Database 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());
|
|
|
|
// Overwrite field with an empty String
|
|
// and store the old value in my_string
|
|
let mut my_string = input.set_field(&mut db).to(String::new());
|
|
my_string.push_str(" World!");
|
|
|
|
// Set the field back to out initial String,
|
|
// expecting to get the empty one back
|
|
assert_eq!(input.set_field(&mut db).to(my_string), "");
|
|
|
|
// Check if the stored String is the one we expected
|
|
assert_eq!(input.field(&db), "Hello World!");
|
|
}
|