mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 08:48:19 +00:00
52 lines
1 KiB
Rust
52 lines
1 KiB
Rust
//! Test that a setting a field on a `#[salsa::input]`
|
|
//! overwrites and returns the old value.
|
|
|
|
use test_log::test;
|
|
|
|
#[salsa::jar(db = Db)]
|
|
struct Jar(MyInput, MyTracked<'_>, MyInterned<'_>, test);
|
|
|
|
trait Db: salsa::DbWithJar<Jar> {}
|
|
|
|
#[salsa::db(Jar)]
|
|
#[derive(Default)]
|
|
struct Database {
|
|
storage: salsa::Storage<Self>,
|
|
}
|
|
|
|
impl salsa::Database for Database {}
|
|
|
|
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);
|
|
}
|