コード例 #1
0
def test_clear_objects():
    obj_storage = object_storage.ObjectStorage()

    x = torch.tensor(1)
    obj_storage.set_obj(x)

    objs = obj_storage.current_objects()

    assert len(objs) == 1
    assert objs[x.id] == x

    ret_val = obj_storage.clear_objects()

    objs = obj_storage.current_objects()
    assert len(objs) == 0
    assert ret_val == obj_storage
コード例 #2
0
def test_clear_objects_return_None():
    obj_storage = object_storage.ObjectStorage()

    x = torch.tensor(1)
    obj_storage.set_obj(x)

    objs = obj_storage.current_objects()

    assert len(objs) == 1
    assert objs[x.id] == x

    ret_val = obj_storage.clear_objects(return_self=False)

    objs = obj_storage.current_objects()
    assert len(objs) == 0
    assert ret_val is None
コード例 #3
0
ファイル: test_object_storage.py プロジェクト: mybian/PySyft
def test_clear_objects_return_None():
    """
    Checks the clear_objects method when no return is required
    """
    obj_storage = object_storage.ObjectStorage()

    x = torch.tensor(1)
    obj_storage.set_obj(x)

    objs = obj_storage.current_objects()

    assert len(objs) == 1
    assert objs[x.id] == x

    ret_val = obj_storage.clear_objects(return_self=False)

    objs = obj_storage.current_objects()
    assert len(objs) == 0
    assert ret_val is None
コード例 #4
0
def test_clear_objects():
    """
    Checks the clear_objects method
    """
    obj_storage = (
        object_storage.ObjectStorage()
    )  #  obj_storage is a wrapper object to a collection of objects

    x = torch.tensor(1)
    obj_storage.set_obj(x)

    objs = obj_storage.current_objects()  # Returns a copy of the objects in obj_storage(here:x)

    assert len(objs) == 1
    assert objs[x.id] == x

    ret_val = obj_storage.clear_objects()  # Completely removes all objects from obj_storage

    objs = obj_storage.current_objects()
    assert len(objs) == 0
    assert ret_val == obj_storage