2024-05-19 11:42:17 +00:00
|
|
|
//! Test that a setting a field on a `#[salsa::input]`
|
|
|
|
//! overwrites and returns the old value.
|
|
|
|
|
|
|
|
use test_log::test;
|
|
|
|
|
2024-07-17 10:08:34 +00:00
|
|
|
#[salsa::db]
|
|
|
|
trait Db: salsa::Database {}
|
2024-05-19 11:42:17 +00:00
|
|
|
|
2024-07-17 10:08:34 +00:00
|
|
|
#[salsa::db]
|
2024-05-19 11:42:17 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
struct Database {
|
|
|
|
storage: salsa::Storage<Self>,
|
|
|
|
}
|
|
|
|
|
2024-07-17 10:08:34 +00:00
|
|
|
#[salsa::db]
|
2024-05-19 11:42:17 +00:00
|
|
|
impl salsa::Database for Database {}
|
|
|
|
|
2024-07-17 10:08:34 +00:00
|
|
|
#[salsa::db]
|
2024-05-19 11:42:17 +00:00
|
|
|
impl Db for Database {}
|
|
|
|
|
|
|
|
#[salsa::input]
|
|
|
|
struct MyInput {
|
|
|
|
field: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[salsa::tracked]
|
|
|
|
struct MyTracked<'db> {
|
|
|
|
field: MyInterned<'db>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[salsa::interned]
|
|
|
|
struct MyInterned<'db> {
|
|
|
|
field: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[salsa::tracked]
|
|
|
|
fn test(db: &dyn crate::Db, input: MyInput) {
|
|
|
|
let input = is_send_sync(input);
|
|
|
|
let interned = is_send_sync(MyInterned::new(db, input.field(db).clone()));
|
|
|
|
let _tracked_struct = is_send_sync(MyTracked::new(db, interned));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_send_sync<T: Send + Sync>(t: T) -> T {
|
|
|
|
t
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute() {
|
|
|
|
let db = Database::default();
|
|
|
|
let input = MyInput::new(&db, "Hello".to_string());
|
|
|
|
test(&db, input);
|
|
|
|
}
|