Exemplo n.º 1
0
def test_same_node_cant_be_added_to_dag_twice():

    with FeatureDAG() as dag:
        a = FeatureNode(name="query")

    with pytest.raises(ValueError):
        dag.add_node(a)
Exemplo n.º 2
0
def test_assign_node_to_self_fail():

    with FeatureDAG():

        a = FeatureNode(name="query a")

        with pytest.raises(ValueError):
            a >> a
Exemplo n.º 3
0
def test_state_stored():

    with FeatureDAG() as dag:
        a = FeatureNode(name="query a")

    assert a.is_node_stale is True

    # Mock the run function to ensure it's called
    a.run = Mock()

    dag.run_feature_graph()

    a.run.assert_called_once()

    assert a.is_node_stale is False

    # Re-run DAG and ensure node is no re-run
    a.run.reset_mock()
    dag.run_feature_graph()
    a.run.assert_not_called()
Exemplo n.º 4
0
def test_state_stored_with_file():

    state_db = "./dag_state.sqlite"
    if os.path.exists(state_db):
        os.remove(state_db)

    with FeatureDAG(state_db=state_db) as dag:
        a = FeatureNode(name="query a")

    assert a.is_node_stale is True

    dag.run_feature_graph()

    assert a.is_node_stale is False

    del a, dag

    with FeatureDAG(state_db=state_db):
        a = FeatureNode(name="query a")

    assert a.is_node_stale is False

    os.remove(state_db)
Exemplo n.º 5
0
def test_compact_state():

    with FeatureDAG() as dag:
        a = FeatureNode(name="query a")

    dag.run_feature_graph()

    dag._nodes.remove(a)

    assert a.node_id in dag._state_dict.keys()

    dag.compact_state()

    assert a.node_id not in dag._state_dict.keys()
Exemplo n.º 6
0
def test_bracket_middle_dag():

    with FeatureDAG():
        a = FeatureNode(name="query a")
        b = FeatureNode(name="query b")
        c = FeatureNode(name="query c")
        d = FeatureNode(name="query d")

        a >> [b, c] >> d

    assert b in a.children
    assert c in a.children
    assert a in b.parents
    assert a in c.parents
    assert d in b.children
    assert d in c.children
    assert b in d.parents
    assert c in d.parents

    del a, b, c, d

    with FeatureDAG():
        a = FeatureNode(name="query a")
        b = FeatureNode(name="query b")
        c = FeatureNode(name="query c")
        d = FeatureNode(name="query d")

        a >> b
        b >> c
        [c, a] >> d

    assert b in a.children
    assert c in b.children
    assert a in b.parents
    assert b in c.parents
    assert d in a.children
    assert d in c.children
    assert a in d.parents
    assert c in d.parents
Exemplo n.º 7
0
def test_two_nodes_cant_have_same_name():

    with FeatureDAG():
        _ = FeatureNode(name="query")
        with pytest.raises(ValueError):
            _ = FeatureNode(name="query")
Exemplo n.º 8
0
def test_no_dag_setup():

    with pytest.raises(EnvironmentError):
        _ = FeatureNode(name="query a")