コード例 #1
0
def test_diff(populated_digraph):
    A = populated_digraph
    B = A.copy()

    # remove node C. Will consequently also remove edges (A, C) and (B, C)
    B.remove_node('3cd197c2cf5e42dc9ccd0c2adcaf4bc2')

    node_d = B.add_node(
        {"type": "D"},
        'da30015efe3c44dbb0b3b3862cef704a')  # add a new node of type D
    da = B.add_edge(node_d, '3caaa8c09148493dbdf02c574b95526c',
                    {"type": "irregular"})  # add an edge from D to A
    B.remove_edge('5f5f44ec7c0144e29c5b7d513f92d9ab')  # remove (A, B)
    # change node A to type Z to check for modifications
    B.set_node_attribute('3caaa8c09148493dbdf02c574b95526c', 'type', 'Z')

    D = sn.diff(A, B, mods=True)  # compute the diff graph D

    correct_nodes = {
        uuid.UUID('3caaa8c09148493dbdf02c574b95526c'): {
            'id': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'type': "Z",
            'diffstatus': 'modified'
        },
        uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'): {
            'id': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'type': "B",
            'diffstatus': 'same'
        },
        uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'): {
            'id': uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'),
            'type': "C",
            'diffstatus': 'removed'
        },
        node_d: {
            'id': node_d,
            'type': "D",
            'diffstatus': 'added'
        }
    }
    assert D.get_nodes() == correct_nodes

    correct_edges = {
        # (A, B)
        uuid.UUID('5f5f44ec7c0144e29c5b7d513f92d9ab'): {
            'id': uuid.UUID('5f5f44ec7c0144e29c5b7d513f92d9ab'),
            'src': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'dst': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'type': 'normal',
            'diffstatus': 'removed'
        },
        # (B, A)
        uuid.UUID('f3674fcc691848ebbd478b1bfb3e84c3'): {
            'id': uuid.UUID('f3674fcc691848ebbd478b1bfb3e84c3'),
            'src': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'dst': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'type': 'normal',
            'diffstatus': 'same'
        },
        # (A, C)
        uuid.UUID('7eb91be54d3746b89a61a282bcc207bb'): {
            'id': uuid.UUID('7eb91be54d3746b89a61a282bcc207bb'),
            'src': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'dst': uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'),
            'type': 'normal',
            'diffstatus': 'removed'
        },
        # (B, C)
        uuid.UUID('c172a3599b7d4ef3bbb688277276b763'): {
            'id': uuid.UUID('c172a3599b7d4ef3bbb688277276b763'),
            'src': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'dst': uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'),
            'type': 'irregular',
            'diffstatus': 'removed'
        },
        # (D, A)
        da: {
            'id': da,
            'src': uuid.UUID('da30015efe3c44dbb0b3b3862cef704a'),
            'dst': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'type': 'irregular',
            'diffstatus': 'added'
        },
    }
    assert D.get_edges() == correct_edges
コード例 #2
0
def test_diff(populated_digraph):
    A = populated_digraph
    B = A.copy()

    # remove node C. Will consequently also remove edges (A, C) and (B, C)
    B.remove_node('3cd197c2cf5e42dc9ccd0c2adcaf4bc2')

    node_d = B.add_node({"type": "D"}, 'da30015efe3c44dbb0b3b3862cef704a') # add a new node of type D
    da = B.add_edge(node_d, '3caaa8c09148493dbdf02c574b95526c', {"type": "irregular"}) # add an edge from D to A
    B.remove_edge('5f5f44ec7c0144e29c5b7d513f92d9ab') # remove (A, B)
    # change node A to type Z to check for modifications
    B.set_node_attribute('3caaa8c09148493dbdf02c574b95526c', 'type', 'Z')

    D = sn.diff(A, B, mods=True) # compute the diff graph D

    correct_nodes = {
        uuid.UUID('3caaa8c09148493dbdf02c574b95526c'): {
            'id': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'type': "Z",
            'diffstatus': 'modified'
        },
        uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'): {
            'id': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'type': "B",
            'diffstatus': 'same'
        },
        uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'): {
            'id': uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'),
            'type': "C",
            'diffstatus': 'removed'
        },
        node_d: {
            'id': node_d,
            'type': "D",
            'diffstatus': 'added'
        }
    }
    assert D.get_nodes() == correct_nodes

    correct_edges = {
        # (A, B)
        uuid.UUID('5f5f44ec7c0144e29c5b7d513f92d9ab'): {
            'id': uuid.UUID('5f5f44ec7c0144e29c5b7d513f92d9ab'),
            'src': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'dst': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'type': 'normal',
            'diffstatus': 'removed'
        },
        # (B, A)
        uuid.UUID('f3674fcc691848ebbd478b1bfb3e84c3'): {
            'id': uuid.UUID('f3674fcc691848ebbd478b1bfb3e84c3'),
            'src': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'dst': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'type': 'normal',
            'diffstatus': 'same'
        },
        # (A, C)
        uuid.UUID('7eb91be54d3746b89a61a282bcc207bb'): {
            'id': uuid.UUID('7eb91be54d3746b89a61a282bcc207bb'),
            'src': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'dst': uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'),
            'type': 'normal',
            'diffstatus': 'removed'
        },
        # (B, C)
        uuid.UUID('c172a3599b7d4ef3bbb688277276b763'): {
            'id': uuid.UUID('c172a3599b7d4ef3bbb688277276b763'),
            'src': uuid.UUID('2cdfebf3bf9547f19f0412ccdfbe03b7'),
            'dst': uuid.UUID('3cd197c2cf5e42dc9ccd0c2adcaf4bc2'),
            'type': 'irregular',
            'diffstatus': 'removed'
        },
        # (D, A)
        da: {
            'id': da,
            'src': uuid.UUID('da30015efe3c44dbb0b3b3862cef704a'),
            'dst': uuid.UUID('3caaa8c09148493dbdf02c574b95526c'),
            'type': 'irregular',
            'diffstatus': 'added'
        },
    }
    assert D.get_edges() == correct_edges
コード例 #3
0
ファイル: diff.py プロジェクト: LoganDing/semanticnet
    else:
        a_obj = args.old_graph
        b_obj = args.new_graph

    A = sn.Graph() if args.undirected else sn.DiGraph()
    A.load_json(a_obj)

    B = sn.Graph() if args.undirected else sn.DiGraph()
    B.load_json(b_obj)

    print("Performing diff...")
    if args.context:
        print("and filtering out clutter...")
    print

    D = sn.diff(A, B, args.context, args.modifications)
    print("Nodes added: {}".format(len([n for n, attrs in D.get_nodes().items() if attrs['diffstatus'] == 'added'])))
    print("Nodes removed: {}".format(len([n for n, attrs in D.get_nodes().items() if attrs['diffstatus'] == 'removed'])))

    if args.modifications:
        print("Nodes modified: {}".format(len([n for n, attrs in D.get_nodes().items() if attrs['diffstatus'] == 'modified'])))

    print("Edges added: {}".format(len([e for e, attrs in D.get_edges().items() if attrs['diffstatus'] == 'added'])))
    print("Edges removed: {}".format(len([e for e, attrs in D.get_edges().items() if attrs['diffstatus'] == 'removed'])))

    if args.modifications:
        print("Edges modified: {}".format(len([e for e, attrs in D.get_edges().items() if attrs['diffstatus'] == 'modified'])))

    print("Writing results to {}".format(args.outfile))
    D.save_json(args.outfile)
コード例 #4
0
    else:
        a_obj = args.old_graph
        b_obj = args.new_graph

    A = sn.Graph() if args.undirected else sn.DiGraph()
    A.load_json(a_obj)

    B = sn.Graph() if args.undirected else sn.DiGraph()
    B.load_json(b_obj)

    print("Performing diff...")
    if args.context:
        print("and filtering out clutter...")
    print

    D = sn.diff(A, B, args.context, args.modifications)
    print("Nodes added: {}".format(
        len([
            n for n, attrs in D.get_nodes().items()
            if attrs['diffstatus'] == 'added'
        ])))
    print("Nodes removed: {}".format(
        len([
            n for n, attrs in D.get_nodes().items()
            if attrs['diffstatus'] == 'removed'
        ])))

    if args.modifications:
        print("Nodes modified: {}".format(
            len([
                n for n, attrs in D.get_nodes().items()