Exemple #1
0
def test_move_one_object_in_root(mock_bucket, capsys):
    mock_bucket.return_value = bucket_contents()

    move_object(
        origin_files=["empty.txt"],
        destination_path="source2",
        rename=None,
        permission=access_types.ACLTypes.public_read,
        threads=1,
    )

    list_keys(
        limit=0,
        prefix="source2/",
        delimiter="",
        max_keys=1,
        all=False,
        http_prefix=False,
        key_methods=object_methods.ObjectMethods.key,
    )

    assert mock_bucket.called == True
    captured = capsys.readouterr()
    print(captured.out)
    assert captured.out == "source2/empty.txt\n"
Exemple #2
0
def test_move_and_rename_one_object_many_sublevels(mock_bucket, capsys):
    mock_bucket.return_value = bucket_contents()

    move_object(
        origin_files=["delimiter/delimiter/empty2.txt"],
        destination_path=
        "",  # destination_path should be overriden when renaming
        rename="new_empty.txt",
        threads=1,
        permission=access_types.ACLTypes.public_read,
    )

    list_keys(
        limit=0,
        prefix="delimiter/",
        delimiter="",
        max_keys=1,
        all=False,
        http_prefix=False,
        key_methods=object_methods.ObjectMethods.key,
    )

    assert mock_bucket.called == True
    captured = capsys.readouterr()
    assert captured.out == "delimiter/delimiter/new_empty.txt\n"
Exemple #3
0
def test_move_one_object_empty_destination(mock_bucket):
    mock_bucket.return_value = bucket_contents()

    with pytest.raises(Exception):
        move_object(
            origin_files=["source/empty.txt"],
            destination_path="",
            rename=None,
            permission=access_types.ACLTypes.public_read,
            threads=1,
        )
Exemple #4
0
def test_move_and_rename_more_than_one_object(mock_bucket):
    mock_bucket.return_value = bucket_contents()

    with pytest.raises(Exception):
        move_object(
            origin_files=[
                "source/empty.txt", "delimiter/delimiter/empty2.txt"
            ],
            destination_path="source",
            rename="new_empty.txt",
            threads=1,
            permission=access_types.ACLTypes.public_read,
        )
Exemple #5
0
def test_fail_move_non_existing_object(mock_bucket):
    mock_bucket.return_value = bucket_contents()

    # Should hit a typer.Exit Exception
    with pytest.raises(Exception):
        move_object(
            origin_files=["sourcez/empty.txt"],
            destination_path="source2",
            rename=None,
            permission=access_types.ACLTypes.public_read,
            threads=1,
        )

        assert mock_bucket.called == True
Exemple #6
0
def test_fail_on_destination_path_with_delimiter(mock_bucket, capsys):
    mock_bucket.return_value = bucket_contents()

    with pytest.raises(Exception):
        move_object(
            origin_files=["source/empty.txt"],
            destination_path="source2/",
            permission=access_types.ACLTypes.public_read,
            threads=1,
        )

        assert mock_bucket.called == True
        captured = capsys.readouterr()

        assert captured.out == "Destination path should not end with '/'\n"
Exemple #7
0
def test_delete_origin_object(mock_bucket, capsys):
    mock_bucket.return_value = bucket_contents()

    move_object(
        origin_files=["source/empty.txt"],
        destination_path="source2",
        rename=None,
        permission=access_types.ACLTypes.public_read,
        threads=1,
    )

    list_keys_v2(
        prefix="source/empty.txt",
        delimiter="",
        max_keys=1,
        http_prefix=False,
        key_methods=object_methods.ObjectMethods.key,
    )

    assert mock_bucket.called == True
    captured = capsys.readouterr()
    assert captured.out == "No key was found!\n"