Пример #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