2024-04-10 10:34:36 +00:00
|
|
|
//! Test an id field whose `PartialEq` impl is always true.
|
2024-03-16 11:18:52 +00:00
|
|
|
|
|
|
|
use test_log::test;
|
|
|
|
|
|
|
|
#[salsa::jar(db = Db)]
|
2024-05-24 01:16:30 +00:00
|
|
|
struct Jar(MyInput, MyTracked<'_>, the_fn);
|
2024-03-16 11:18:52 +00:00
|
|
|
|
|
|
|
trait Db: salsa::DbWithJar<Jar> {}
|
|
|
|
|
|
|
|
#[salsa::input]
|
|
|
|
struct MyInput {
|
|
|
|
field: bool,
|
|
|
|
}
|
|
|
|
|
2024-04-02 11:04:29 +00:00
|
|
|
#[allow(clippy::derived_hash_with_manual_eq)]
|
2024-03-16 11:18:52 +00:00
|
|
|
#[derive(Eq, Hash, Debug, Clone)]
|
|
|
|
struct BadEq {
|
|
|
|
field: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for BadEq {
|
|
|
|
fn eq(&self, _other: &Self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<bool> for BadEq {
|
|
|
|
fn from(value: bool) -> Self {
|
|
|
|
Self { field: value }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[salsa::tracked]
|
2024-05-24 01:16:30 +00:00
|
|
|
struct MyTracked<'db> {
|
2024-03-16 11:18:52 +00:00
|
|
|
#[id]
|
|
|
|
field: BadEq,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[salsa::tracked]
|
|
|
|
fn the_fn(db: &dyn Db, input: MyInput) {
|
|
|
|
let tracked0 = MyTracked::new(db, BadEq::from(input.field(db)));
|
|
|
|
assert_eq!(tracked0.field(db).field, input.field(db));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[salsa::db(Jar)]
|
|
|
|
#[derive(Default)]
|
|
|
|
struct Database {
|
|
|
|
storage: salsa::Storage<Self>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl salsa::Database for Database {}
|
|
|
|
|
|
|
|
impl Db for Database {}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute() {
|
|
|
|
let mut db = Database::default();
|
|
|
|
|
|
|
|
let input = MyInput::new(&db, true);
|
|
|
|
the_fn(&db, input);
|
|
|
|
input.set_field(&mut db).to(false);
|
|
|
|
the_fn(&db, input);
|
|
|
|
}
|