File size: 30,682 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 |
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import base64
import hashlib
import http.client
import io
import os
import urllib.parse
import pytest # type: ignore
from unittest import mock
from google.resumable_media import common
from google import resumable_media
import google.resumable_media.requests as resumable_requests
from google.resumable_media import _helpers
from tests.system import utils
from google.resumable_media import _upload
CURR_DIR = os.path.dirname(os.path.realpath(__file__))
DATA_DIR = os.path.join(CURR_DIR, "..", "..", "data")
ICO_FILE = os.path.realpath(os.path.join(DATA_DIR, "favicon.ico"))
IMAGE_FILE = os.path.realpath(os.path.join(DATA_DIR, "image1.jpg"))
ICO_CONTENT_TYPE = "image/x-icon"
JPEG_CONTENT_TYPE = "image/jpeg"
BYTES_CONTENT_TYPE = "application/octet-stream"
BAD_CHUNK_SIZE_MSG = (
b"Invalid request. The number of bytes uploaded is required to be equal "
b"or greater than 262144, except for the final request (it's recommended "
b"to be the exact multiple of 262144). The received request contained "
b"1024 bytes, which does not meet this requirement."
)
@pytest.fixture
def cleanup():
to_delete = []
def add_cleanup(blob_name, transport):
to_delete.append((blob_name, transport))
yield add_cleanup
for blob_name, transport in to_delete:
metadata_url = utils.METADATA_URL_TEMPLATE.format(blob_name=blob_name)
response = utils.retry_transient_errors(transport.delete)(metadata_url)
assert response.status_code == http.client.NO_CONTENT
@pytest.fixture
def img_stream():
"""Open-file as a fixture.
This is so that an entire test can execute in the context of
the context manager without worrying about closing the file.
"""
with open(IMAGE_FILE, "rb") as file_obj:
yield file_obj
def get_md5(data):
hash_obj = hashlib.md5(data)
return base64.b64encode(hash_obj.digest())
def get_upload_id(upload_url):
parse_result = urllib.parse.urlparse(upload_url)
parsed_query = urllib.parse.parse_qs(parse_result.query)
# NOTE: We are unpacking here, so asserting exactly one match.
(upload_id,) = parsed_query["upload_id"]
return upload_id
def get_num_chunks(total_bytes, chunk_size):
expected_chunks, remainder = divmod(total_bytes, chunk_size)
if remainder > 0:
expected_chunks += 1
return expected_chunks
def check_response(
response,
blob_name,
actual_contents=None,
total_bytes=None,
metadata=None,
content_type=ICO_CONTENT_TYPE,
):
assert response.status_code == http.client.OK
json_response = response.json()
assert json_response["bucket"] == utils.BUCKET_NAME
assert json_response["contentType"] == content_type
if actual_contents is not None:
md5_hash = json_response["md5Hash"].encode("ascii")
assert md5_hash == get_md5(actual_contents)
total_bytes = len(actual_contents)
assert json_response["metageneration"] == "1"
assert json_response["name"] == blob_name
assert json_response["size"] == "{:d}".format(total_bytes)
assert json_response["storageClass"] == "STANDARD"
if metadata is None:
assert "metadata" not in json_response
else:
assert json_response["metadata"] == metadata
def check_content(blob_name, expected_content, transport, headers=None):
media_url = utils.DOWNLOAD_URL_TEMPLATE.format(blob_name=blob_name)
download = resumable_requests.Download(media_url, headers=headers)
response = download.consume(transport)
assert response.status_code == http.client.OK
assert response.content == expected_content
def check_tombstoned(upload, transport, *args):
assert upload.finished
basic_types = (resumable_requests.SimpleUpload, resumable_requests.MultipartUpload)
if isinstance(upload, basic_types):
with pytest.raises(ValueError):
upload.transmit(transport, *args)
else:
with pytest.raises(ValueError):
upload.transmit_next_chunk(transport, *args)
def check_does_not_exist(transport, blob_name):
metadata_url = utils.METADATA_URL_TEMPLATE.format(blob_name=blob_name)
# Make sure we are creating a **new** object.
response = transport.get(metadata_url)
assert response.status_code == http.client.NOT_FOUND
def check_initiate(response, upload, stream, transport, metadata):
assert response.status_code == http.client.OK
assert response.content == b""
upload_id = get_upload_id(upload.resumable_url)
assert response.headers["x-guploader-uploadid"] == upload_id
assert stream.tell() == 0
# Make sure the upload cannot be re-initiated.
with pytest.raises(ValueError) as exc_info:
upload.initiate(transport, stream, metadata, JPEG_CONTENT_TYPE)
exc_info.match("This upload has already been initiated.")
def check_bad_chunk(upload, transport):
with pytest.raises(resumable_media.InvalidResponse) as exc_info:
upload.transmit_next_chunk(transport)
error = exc_info.value
response = error.response
assert response.status_code == http.client.BAD_REQUEST
assert response.content == BAD_CHUNK_SIZE_MSG
def transmit_chunks(
upload, transport, blob_name, metadata, num_chunks=0, content_type=JPEG_CONTENT_TYPE
):
while not upload.finished:
num_chunks += 1
response = upload.transmit_next_chunk(transport)
if upload.finished:
assert upload.bytes_uploaded == upload.total_bytes
check_response(
response,
blob_name,
total_bytes=upload.total_bytes,
metadata=metadata,
content_type=content_type,
)
else:
assert upload.bytes_uploaded == num_chunks * upload.chunk_size
assert response.status_code == http.client.PERMANENT_REDIRECT
return num_chunks
def test_simple_upload(authorized_transport, bucket, cleanup):
with open(ICO_FILE, "rb") as file_obj:
actual_contents = file_obj.read()
blob_name = os.path.basename(ICO_FILE)
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.SIMPLE_UPLOAD_TEMPLATE.format(blob_name=blob_name)
upload = resumable_requests.SimpleUpload(upload_url)
# Transmit the resource.
response = upload.transmit(authorized_transport, actual_contents, ICO_CONTENT_TYPE)
check_response(response, blob_name, actual_contents=actual_contents)
# Download the content to make sure it's "working as expected".
check_content(blob_name, actual_contents, authorized_transport)
# Make sure the upload is tombstoned.
check_tombstoned(upload, authorized_transport, actual_contents, ICO_CONTENT_TYPE)
def test_simple_upload_with_headers(authorized_transport, bucket, cleanup):
blob_name = "some-stuff.bin"
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.SIMPLE_UPLOAD_TEMPLATE.format(blob_name=blob_name)
headers = utils.get_encryption_headers()
upload = resumable_requests.SimpleUpload(upload_url, headers=headers)
# Transmit the resource.
data = b"Binary contents\x00\x01\x02."
response = upload.transmit(authorized_transport, data, BYTES_CONTENT_TYPE)
check_response(
response, blob_name, actual_contents=data, content_type=BYTES_CONTENT_TYPE
)
# Download the content to make sure it's "working as expected".
check_content(blob_name, data, authorized_transport, headers=headers)
# Make sure the upload is tombstoned.
check_tombstoned(upload, authorized_transport, data, BYTES_CONTENT_TYPE)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_multipart_upload(authorized_transport, bucket, cleanup, checksum):
with open(ICO_FILE, "rb") as file_obj:
actual_contents = file_obj.read()
blob_name = os.path.basename(ICO_FILE)
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.MULTIPART_UPLOAD
upload = resumable_requests.MultipartUpload(upload_url, checksum=checksum)
# Transmit the resource.
metadata = {"name": blob_name, "metadata": {"color": "yellow"}}
response = upload.transmit(
authorized_transport, actual_contents, metadata, ICO_CONTENT_TYPE
)
check_response(
response,
blob_name,
actual_contents=actual_contents,
metadata=metadata["metadata"],
)
# Download the content to make sure it's "working as expected".
check_content(blob_name, actual_contents, authorized_transport)
# Make sure the upload is tombstoned.
check_tombstoned(
upload, authorized_transport, actual_contents, metadata, ICO_CONTENT_TYPE
)
@pytest.mark.parametrize("checksum", ["md5", "crc32c"])
def test_multipart_upload_with_bad_checksum(authorized_transport, checksum, bucket):
with open(ICO_FILE, "rb") as file_obj:
actual_contents = file_obj.read()
blob_name = os.path.basename(ICO_FILE)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.MULTIPART_UPLOAD
upload = resumable_requests.MultipartUpload(upload_url, checksum=checksum)
# Transmit the resource.
metadata = {"name": blob_name, "metadata": {"color": "yellow"}}
fake_checksum_object = _helpers._get_checksum_object(checksum)
fake_checksum_object.update(b"bad data")
fake_prepared_checksum_digest = _helpers.prepare_checksum_digest(
fake_checksum_object.digest()
)
with mock.patch.object(
_helpers, "prepare_checksum_digest", return_value=fake_prepared_checksum_digest
):
with pytest.raises(common.InvalidResponse) as exc_info:
response = upload.transmit(
authorized_transport, actual_contents, metadata, ICO_CONTENT_TYPE
)
response = exc_info.value.response
message = response.json()["error"]["message"]
# Attempt to verify that this is a checksum mismatch error.
assert checksum.upper() in message
assert fake_prepared_checksum_digest in message
# Make sure the upload is tombstoned.
check_tombstoned(
upload, authorized_transport, actual_contents, metadata, ICO_CONTENT_TYPE
)
def test_multipart_upload_with_headers(authorized_transport, bucket, cleanup):
blob_name = "some-multipart-stuff.bin"
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.MULTIPART_UPLOAD
headers = utils.get_encryption_headers()
upload = resumable_requests.MultipartUpload(upload_url, headers=headers)
# Transmit the resource.
metadata = {"name": blob_name}
data = b"Other binary contents\x03\x04\x05."
response = upload.transmit(authorized_transport, data, metadata, BYTES_CONTENT_TYPE)
check_response(
response, blob_name, actual_contents=data, content_type=BYTES_CONTENT_TYPE
)
# Download the content to make sure it's "working as expected".
check_content(blob_name, data, authorized_transport, headers=headers)
# Make sure the upload is tombstoned.
check_tombstoned(upload, authorized_transport, data, metadata, BYTES_CONTENT_TYPE)
def _resumable_upload_helper(
authorized_transport, stream, cleanup, headers=None, checksum=None
):
blob_name = os.path.basename(stream.name)
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
chunk_size = resumable_media.UPLOAD_CHUNK_SIZE
upload = resumable_requests.ResumableUpload(
utils.RESUMABLE_UPLOAD, chunk_size, headers=headers, checksum=checksum
)
# Initiate the upload.
metadata = {"name": blob_name, "metadata": {"direction": "north"}}
response = upload.initiate(
authorized_transport, stream, metadata, JPEG_CONTENT_TYPE
)
# Make sure ``initiate`` succeeded and did not mangle the stream.
check_initiate(response, upload, stream, authorized_transport, metadata)
# Actually upload the file in chunks.
num_chunks = transmit_chunks(
upload, authorized_transport, blob_name, metadata["metadata"]
)
assert num_chunks == get_num_chunks(upload.total_bytes, chunk_size)
# Download the content to make sure it's "working as expected".
stream.seek(0)
actual_contents = stream.read()
check_content(blob_name, actual_contents, authorized_transport, headers=headers)
# Make sure the upload is tombstoned.
check_tombstoned(upload, authorized_transport)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_resumable_upload(authorized_transport, img_stream, bucket, cleanup, checksum):
_resumable_upload_helper(
authorized_transport, img_stream, cleanup, checksum=checksum
)
def test_resumable_upload_with_headers(
authorized_transport, img_stream, bucket, cleanup
):
headers = utils.get_encryption_headers()
_resumable_upload_helper(authorized_transport, img_stream, cleanup, headers=headers)
@pytest.mark.parametrize("checksum", ["md5", "crc32c"])
def test_resumable_upload_with_bad_checksum(
authorized_transport, img_stream, bucket, cleanup, checksum
):
fake_checksum_object = _helpers._get_checksum_object(checksum)
fake_checksum_object.update(b"bad data")
fake_prepared_checksum_digest = _helpers.prepare_checksum_digest(
fake_checksum_object.digest()
)
with mock.patch.object(
_helpers, "prepare_checksum_digest", return_value=fake_prepared_checksum_digest
):
with pytest.raises(common.DataCorruption) as exc_info:
_resumable_upload_helper(
authorized_transport, img_stream, cleanup, checksum=checksum
)
expected_checksums = {"md5": "1bsd83IYNug8hd+V1ING3Q==", "crc32c": "YQGPxA=="}
expected_message = _upload._UPLOAD_CHECKSUM_MISMATCH_MESSAGE.format(
checksum.upper(), fake_prepared_checksum_digest, expected_checksums[checksum]
)
assert exc_info.value.args[0] == expected_message
def test_resumable_upload_bad_chunk_size(authorized_transport, img_stream):
blob_name = os.path.basename(img_stream.name)
# Create the actual upload object.
upload = resumable_requests.ResumableUpload(
utils.RESUMABLE_UPLOAD, resumable_media.UPLOAD_CHUNK_SIZE
)
# Modify the ``upload`` **after** construction so we can
# use a bad chunk size.
upload._chunk_size = 1024
assert upload._chunk_size < resumable_media.UPLOAD_CHUNK_SIZE
# Initiate the upload.
metadata = {"name": blob_name}
response = upload.initiate(
authorized_transport, img_stream, metadata, JPEG_CONTENT_TYPE
)
# Make sure ``initiate`` succeeded and did not mangle the stream.
check_initiate(response, upload, img_stream, authorized_transport, metadata)
# Make the first request and verify that it fails.
check_bad_chunk(upload, authorized_transport)
# Reset the chunk size (and the stream) and verify the "resumable"
# URL is unusable.
upload._chunk_size = resumable_media.UPLOAD_CHUNK_SIZE
img_stream.seek(0)
upload._invalid = False
check_bad_chunk(upload, authorized_transport)
def sabotage_and_recover(upload, stream, transport, chunk_size):
assert upload.bytes_uploaded == chunk_size
assert stream.tell() == chunk_size
# "Fake" that the instance is in an invalid state.
upload._invalid = True
stream.seek(0) # Seek to the wrong place.
upload._bytes_uploaded = 0 # Make ``bytes_uploaded`` wrong as well.
# Recover the (artifically) invalid upload.
response = upload.recover(transport)
assert response.status_code == http.client.PERMANENT_REDIRECT
assert not upload.invalid
assert upload.bytes_uploaded == chunk_size
assert stream.tell() == chunk_size
def _resumable_upload_recover_helper(
authorized_transport, cleanup, headers=None, checksum=None
):
blob_name = "some-bytes.bin"
chunk_size = resumable_media.UPLOAD_CHUNK_SIZE
data = b"123" * chunk_size # 3 chunks worth.
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload = resumable_requests.ResumableUpload(
utils.RESUMABLE_UPLOAD, chunk_size, headers=headers, checksum=checksum
)
# Initiate the upload.
metadata = {"name": blob_name}
stream = io.BytesIO(data)
response = upload.initiate(
authorized_transport, stream, metadata, BYTES_CONTENT_TYPE
)
# Make sure ``initiate`` succeeded and did not mangle the stream.
check_initiate(response, upload, stream, authorized_transport, metadata)
# Make the first request.
response = upload.transmit_next_chunk(authorized_transport)
assert response.status_code == http.client.PERMANENT_REDIRECT
# Call upload.recover().
sabotage_and_recover(upload, stream, authorized_transport, chunk_size)
# Now stream what remains.
num_chunks = transmit_chunks(
upload,
authorized_transport,
blob_name,
None,
num_chunks=1,
content_type=BYTES_CONTENT_TYPE,
)
assert num_chunks == 3
# Download the content to make sure it's "working as expected".
actual_contents = stream.getvalue()
check_content(blob_name, actual_contents, authorized_transport, headers=headers)
# Make sure the upload is tombstoned.
check_tombstoned(upload, authorized_transport)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_resumable_upload_recover(authorized_transport, bucket, cleanup, checksum):
_resumable_upload_recover_helper(authorized_transport, cleanup, checksum=checksum)
def test_resumable_upload_recover_with_headers(authorized_transport, bucket, cleanup):
headers = utils.get_encryption_headers()
_resumable_upload_recover_helper(authorized_transport, cleanup, headers=headers)
class TestResumableUploadUnknownSize(object):
@staticmethod
def _check_range_sent(response, start, end, total):
headers_sent = response.request.headers
if start is None and end is None:
expected_content_range = "bytes */{:d}".format(total)
else:
# Allow total to be an int or a string "*"
expected_content_range = "bytes {:d}-{:d}/{}".format(start, end, total)
assert headers_sent["content-range"] == expected_content_range
@staticmethod
def _check_range_received(response, size):
assert response.headers["range"] == "bytes=0-{:d}".format(size - 1)
def _check_partial(self, upload, response, chunk_size, num_chunks):
start_byte = (num_chunks - 1) * chunk_size
end_byte = num_chunks * chunk_size - 1
assert not upload.finished
assert upload.bytes_uploaded == end_byte + 1
assert response.status_code == http.client.PERMANENT_REDIRECT
assert response.content == b""
self._check_range_sent(response, start_byte, end_byte, "*")
self._check_range_received(response, end_byte + 1)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_smaller_than_chunk_size(
self, authorized_transport, bucket, cleanup, checksum
):
blob_name = os.path.basename(ICO_FILE)
chunk_size = resumable_media.UPLOAD_CHUNK_SIZE
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Make sure the blob is smaller than the chunk size.
total_bytes = os.path.getsize(ICO_FILE)
assert total_bytes < chunk_size
# Create the actual upload object.
upload = resumable_requests.ResumableUpload(
utils.RESUMABLE_UPLOAD, chunk_size, checksum=checksum
)
# Initiate the upload.
metadata = {"name": blob_name}
with open(ICO_FILE, "rb") as stream:
response = upload.initiate(
authorized_transport,
stream,
metadata,
ICO_CONTENT_TYPE,
stream_final=False,
)
# Make sure ``initiate`` succeeded and did not mangle the stream.
check_initiate(response, upload, stream, authorized_transport, metadata)
# Make sure total bytes was never set.
assert upload.total_bytes is None
# Make the **ONLY** request.
response = upload.transmit_next_chunk(authorized_transport)
self._check_range_sent(response, 0, total_bytes - 1, total_bytes)
check_response(response, blob_name, total_bytes=total_bytes)
# Download the content to make sure it's "working as expected".
stream.seek(0)
actual_contents = stream.read()
check_content(blob_name, actual_contents, authorized_transport)
# Make sure the upload is tombstoned.
check_tombstoned(upload, authorized_transport)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_finish_at_chunk(self, authorized_transport, bucket, cleanup, checksum):
blob_name = "some-clean-stuff.bin"
chunk_size = resumable_media.UPLOAD_CHUNK_SIZE
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Make sure the blob size is an exact multiple of the chunk size.
data = b"ab" * chunk_size
total_bytes = len(data)
stream = io.BytesIO(data)
# Create the actual upload object.
upload = resumable_requests.ResumableUpload(
utils.RESUMABLE_UPLOAD, chunk_size, checksum=checksum
)
# Initiate the upload.
metadata = {"name": blob_name}
response = upload.initiate(
authorized_transport,
stream,
metadata,
BYTES_CONTENT_TYPE,
stream_final=False,
)
# Make sure ``initiate`` succeeded and did not mangle the stream.
check_initiate(response, upload, stream, authorized_transport, metadata)
# Make sure total bytes was never set.
assert upload.total_bytes is None
# Make three requests.
response0 = upload.transmit_next_chunk(authorized_transport)
self._check_partial(upload, response0, chunk_size, 1)
response1 = upload.transmit_next_chunk(authorized_transport)
self._check_partial(upload, response1, chunk_size, 2)
response2 = upload.transmit_next_chunk(authorized_transport)
assert upload.finished
# Verify the "clean-up" request.
assert upload.bytes_uploaded == 2 * chunk_size
check_response(
response2,
blob_name,
actual_contents=data,
total_bytes=total_bytes,
content_type=BYTES_CONTENT_TYPE,
)
self._check_range_sent(response2, None, None, 2 * chunk_size)
@staticmethod
def _add_bytes(stream, data):
curr_pos = stream.tell()
stream.write(data)
# Go back to where we were before the write.
stream.seek(curr_pos)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_interleave_writes(self, authorized_transport, bucket, cleanup, checksum):
blob_name = "some-moar-stuff.bin"
chunk_size = resumable_media.UPLOAD_CHUNK_SIZE
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Start out the blob as a single chunk (but we will add to it).
stream = io.BytesIO(b"Z" * chunk_size)
# Create the actual upload object.
upload = resumable_requests.ResumableUpload(
utils.RESUMABLE_UPLOAD, chunk_size, checksum=checksum
)
# Initiate the upload.
metadata = {"name": blob_name}
response = upload.initiate(
authorized_transport,
stream,
metadata,
BYTES_CONTENT_TYPE,
stream_final=False,
)
# Make sure ``initiate`` succeeded and did not mangle the stream.
check_initiate(response, upload, stream, authorized_transport, metadata)
# Make sure total bytes was never set.
assert upload.total_bytes is None
# Make three requests.
response0 = upload.transmit_next_chunk(authorized_transport)
self._check_partial(upload, response0, chunk_size, 1)
# Add another chunk before sending.
self._add_bytes(stream, b"K" * chunk_size)
response1 = upload.transmit_next_chunk(authorized_transport)
self._check_partial(upload, response1, chunk_size, 2)
# Add more bytes, but make sure less than a full chunk.
last_chunk = 155
self._add_bytes(stream, b"r" * last_chunk)
response2 = upload.transmit_next_chunk(authorized_transport)
assert upload.finished
# Verify the "clean-up" request.
total_bytes = 2 * chunk_size + last_chunk
assert upload.bytes_uploaded == total_bytes
check_response(
response2,
blob_name,
actual_contents=stream.getvalue(),
total_bytes=total_bytes,
content_type=BYTES_CONTENT_TYPE,
)
self._check_range_sent(response2, 2 * chunk_size, total_bytes - 1, total_bytes)
@pytest.mark.parametrize("checksum", ["md5", "crc32c", None])
def test_XMLMPU(authorized_transport, bucket, cleanup, checksum):
with open(ICO_FILE, "rb") as file_obj:
actual_contents = file_obj.read()
blob_name = os.path.basename(ICO_FILE)
# Make sure to clean up the uploaded blob when we are done.
cleanup(blob_name, authorized_transport)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.XML_UPLOAD_URL_TEMPLATE.format(bucket=bucket, blob=blob_name)
container = resumable_requests.XMLMPUContainer(upload_url, blob_name)
# Initiate
container.initiate(authorized_transport, ICO_CONTENT_TYPE)
assert container.upload_id
part = resumable_requests.XMLMPUPart(
upload_url,
container.upload_id,
ICO_FILE,
0,
len(actual_contents),
1,
checksum=checksum,
)
part.upload(authorized_transport)
assert part.etag
container.register_part(1, part.etag)
container.finalize(authorized_transport)
assert container.finished
# Download the content to make sure it's "working as expected".
check_content(blob_name, actual_contents, authorized_transport)
@pytest.mark.parametrize("checksum", ["md5", "crc32c"])
def test_XMLMPU_with_bad_checksum(authorized_transport, bucket, checksum):
with open(ICO_FILE, "rb") as file_obj:
actual_contents = file_obj.read()
blob_name = os.path.basename(ICO_FILE)
# No need to clean up, since the upload will not be finalized successfully.
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.XML_UPLOAD_URL_TEMPLATE.format(bucket=bucket, blob=blob_name)
container = resumable_requests.XMLMPUContainer(upload_url, blob_name)
# Initiate
container.initiate(authorized_transport, ICO_CONTENT_TYPE)
assert container.upload_id
try:
part = resumable_requests.XMLMPUPart(
upload_url,
container.upload_id,
ICO_FILE,
0,
len(actual_contents),
1,
checksum=checksum,
)
fake_checksum_object = _helpers._get_checksum_object(checksum)
fake_checksum_object.update(b"bad data")
fake_prepared_checksum_digest = _helpers.prepare_checksum_digest(
fake_checksum_object.digest()
)
with mock.patch.object(
_helpers,
"prepare_checksum_digest",
return_value=fake_prepared_checksum_digest,
):
with pytest.raises(common.DataCorruption):
part.upload(authorized_transport)
finally:
utils.retry_transient_errors(authorized_transport.delete)(
upload_url + "?uploadId=" + str(container.upload_id)
)
def test_XMLMPU_cancel(authorized_transport, bucket):
with open(ICO_FILE, "rb") as file_obj:
actual_contents = file_obj.read()
blob_name = os.path.basename(ICO_FILE)
check_does_not_exist(authorized_transport, blob_name)
# Create the actual upload object.
upload_url = utils.XML_UPLOAD_URL_TEMPLATE.format(bucket=bucket, blob=blob_name)
container = resumable_requests.XMLMPUContainer(upload_url, blob_name)
# Initiate
container.initiate(authorized_transport, ICO_CONTENT_TYPE)
assert container.upload_id
part = resumable_requests.XMLMPUPart(
upload_url,
container.upload_id,
ICO_FILE,
0,
len(actual_contents),
1,
)
part.upload(authorized_transport)
assert part.etag
container.register_part(1, part.etag)
container.cancel(authorized_transport)
# Validate the cancel worked by expecting a 404 on finalize.
with pytest.raises(resumable_media.InvalidResponse):
container.finalize(authorized_transport)
|