示例#1
0
def test_cannot_join_one_of_other_type():
    foo = "foo"
    with pytest.raises(TypeError):
        Node.join(alice, foo)
示例#2
0
def test_cannot_join_other_types():
    foo = "foo"
    with pytest.raises(TypeError):
        Node.join(foo, foo)
示例#3
0
def test_can_join_equal_pointers():
    assert Node.join(pointer_1, NodePointer(pointer_1.address)) == pointer_1
示例#4
0
def test_can_join_pointer_and_node():
    assert Node.join(pointer_1, None) is pointer_1
示例#5
0
def test_cannot_join_different_pointers():
    with pytest.raises(JoinError):
        Node.join(pointer_1, pointer_2)
示例#6
0
def test_can_join_node_and_none():
    assert Node.join(alice, None) is alice
示例#7
0
def test_cannot_join_different_nodes():
    with pytest.raises(JoinError):
        Node.join(alice, bob)
示例#8
0
def test_can_join_same_nodes():
    assert Node.join(alice, alice) is alice
示例#9
0
def test_cannot_join_different_nodes():
    with pytest.raises(UnjoinableError):
        Node.join(alice, bob)
示例#10
0
def test_can_join_none_and_node():
    assert Node.join(None, alice) is alice
示例#11
0
def test_can_join_node_and_none():
    assert Node.join(alice, None) is alice
示例#12
0
def test_can_join_none_and_none():
    assert Node.join(None, None) is None
示例#13
0
def test_can_join_equal_pointers():
    assert Node.join(pointer_1, NodePointer(pointer_1.address)) == pointer_1
示例#14
0
def test_can_join_similar_bound_nodes():
    alice.bind("http://localhost:7474/db/data/node/1")
    Node.cache.clear()
    alice_2 = Node(name="Alice")
    alice_2.bind(alice.uri)
    assert Node.join(alice, alice_2) == alice
示例#15
0
def test_can_join_none_and_none():
    assert Node.join(None, None) is None
示例#16
0
def test_can_join_none_and_pointer():
    assert Node.join(None, pointer_1) is pointer_1
示例#17
0
def test_can_join_none_and_node():
    assert Node.join(None, alice) is alice
示例#18
0
def test_can_join_pointer_and_node():
    assert Node.join(pointer_1, None) is pointer_1
示例#19
0
def test_can_join_same_nodes():
    assert Node.join(alice, alice) is alice
示例#20
0
def test_can_join_same_pointers():
    assert Node.join(pointer_1, pointer_1) is pointer_1
示例#21
0
def test_can_join_none_and_pointer():
    assert Node.join(None, pointer_1) is pointer_1
示例#22
0
def test_cannot_join_different_pointers():
    with pytest.raises(UnjoinableError):
        Node.join(pointer_1, pointer_2)
示例#23
0
def test_can_join_same_pointers():
    assert Node.join(pointer_1, pointer_1) is pointer_1
示例#24
0
def test_cannot_join_node_and_pointer():
    with pytest.raises(UnjoinableError):
        Node.join(alice, pointer_2)
示例#25
0
def test_cannot_join_node_and_pointer():
    with pytest.raises(JoinError):
        Node.join(alice, pointer_2)
示例#26
0
def test_cannot_join_other_types():
    foo = "foo"
    with pytest.raises(TypeError):
        Node.join(foo, foo)
示例#27
0
def test_cannot_join_one_of_other_type():
    foo = "foo"
    with pytest.raises(TypeError):
        Node.join(alice, foo)
示例#28
0
def test_can_join_similar_bound_nodes():
    alice.bind("http://localhost:7474/db/data/node/1")
    Node.cache.clear()
    alice_2 = Node(name="Alice")
    alice_2.bind(alice.uri)
    assert Node.join(alice, alice_2) == alice