hit-data 0.0.5

Hierarchical Indexed Typed data structure
Documentation
use linked_hash_map::LinkedHashMap;

use crate::test_kernel::create_test_kernel;
use crate::Hit;
use crate::IndexEntryProperty;
use crate::ObjectValue;
use crate::Reference;

use std::rc::Rc;

fn create_hit_with_references() -> Hit {
    let kernel = Rc::new(create_test_kernel());
    let mut hit = Hit::new("id", "test/test", kernel).unwrap();
    hit.insert(
        "test/test",
        "id2",
        LinkedHashMap::new(),
        IndexEntryProperty {
            id: "id".into(),
            property: "sub_items".into(),
        },
        None,
    )
    .expect("Error");
    hit.insert(
        "test/test",
        "id3",
        LinkedHashMap::new(),
        IndexEntryProperty {
            id: "id2".into(),
            property: "sub_items".into(),
        },
        None,
    )
    .expect("Error");
    hit.insert(
        "test/test",
        "id4",
        LinkedHashMap::new(),
        IndexEntryProperty {
            id: "id3".into(),
            property: "sub_items".into(),
        },
        None,
    )
    .expect("Error");
    hit.insert_reference(
        "id2",
        IndexEntryProperty {
            id: "id".into(),
            property: "references".into(),
        },
        None,
    )
    .expect("Error");
    hit.insert_reference(
        "id2",
        IndexEntryProperty {
            id: "id4".into(),
            property: "references".into(),
        },
        None,
    )
    .expect("Error");
    hit.set(
        "id3",
        "reference",
        ObjectValue::Reference(Reference { id: "id2".into() }),
    )
    .expect("Error");
    return hit;
}

#[test]
fn it_should_find_all_references() {
    let hit = create_hit_with_references();
    let references = hit.get_references("id2").expect("Error");

    let mock_object = vec![
        IndexEntryProperty {
            id: "id".into(),
            property: "references".into(),
        },
        IndexEntryProperty {
            id: "id4".into(),
            property: "references".into(),
        },
        IndexEntryProperty {
            id: "id3".into(),
            property: "reference".into(),
        },
    ];
    assert_eq!(references, mock_object);
}

#[test]
fn it_should_find_all_references_after_removal_from_array() {
    let mut hit = create_hit_with_references();
    hit.remove_reference(
        "id2".into(),
        IndexEntryProperty {
            id: "id4".into(),
            property: "references".into(),
        },
    )
    .expect("Error");
    let references = hit.get_references("id2").expect("Error");

    let mock_object = vec![
        IndexEntryProperty {
            id: "id".into(),
            property: "references".into(),
        },
        IndexEntryProperty {
            id: "id3".into(),
            property: "reference".into(),
        },
    ];
    assert_eq!(references, mock_object);
}

#[test]
fn it_should_find_all_references_after_update() {
    let mut hit = create_hit_with_references();
    hit.set(
        "id3",
        "reference",
        ObjectValue::Reference(Reference { id: "id4".into() }),
    )
    .expect("Error");
    hit.set(
        "id4",
        "reference",
        ObjectValue::Reference(Reference { id: "id2".into() }),
    )
    .expect("Error");
    let references = hit.get_references("id2").expect("Error");

    let mock_object = vec![
        IndexEntryProperty {
            id: "id".into(),
            property: "references".into(),
        },
        IndexEntryProperty {
            id: "id4".into(),
            property: "references".into(),
        },
        IndexEntryProperty {
            id: "id4".into(),
            property: "reference".into(),
        },
    ];
    assert_eq!(references, mock_object);
}

#[test]
fn it_should_find_all_references_after_set_to_null() {
    let mut hit = create_hit_with_references();
    hit.set("id3", "reference", ObjectValue::Null)
        .expect("Error");
    let references = hit.get_references("id2").expect("Error");

    let mock_object = vec![
        IndexEntryProperty {
            id: "id".into(),
            property: "references".into(),
        },
        IndexEntryProperty {
            id: "id4".into(),
            property: "references".into(),
        },
    ];
    assert_eq!(references, mock_object);
}