1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
//! Test that a setting a field on a `#[salsa::input]`
//! overwrites and returns the old value.
use salsa::{Database, DatabaseImpl, Update};
use test_log::test;
#[salsa::input(debug)]
struct MyInput {
field: String,
}
#[salsa::tracked(debug)]
struct MyTracked<'db> {
#[tracked]
data: MyInput,
#[tracked]
next: MyList<'db>,
}
#[derive(PartialEq, Eq, Clone, Debug, Update)]
enum MyList<'db> {
None,
Next(MyTracked<'db>),
}
#[salsa::tracked]
fn create_tracked_list(db: &dyn Database, input: MyInput) -> MyTracked<'_> {
let t0 = MyTracked::new(db, input, MyList::None);
let t1 = MyTracked::new(db, input, MyList::Next(t0));
t1
}
#[test]
fn execute() {
DatabaseImpl::new().attach(|db| {
let input = MyInput::new(db, "foo".to_string());
let t0: MyTracked = create_tracked_list(db, input);
let t1 = create_tracked_list(db, input);
expect_test::expect![[r#"
MyTracked {
[salsa id]: Id(401),
data: MyInput {
[salsa id]: Id(0),
field: "foo",
},
next: Next(
MyTracked {
[salsa id]: Id(400),
data: MyInput {
[salsa id]: Id(0),
field: "foo",
},
next: None,
},
),
}
"#]]
.assert_debug_eq(&t0);
assert_eq!(t0, t1);
})
}
|