Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: third_party/gsutil/boto/tests/unit/glacier/test_utils.py

Issue 12317103: Added gsutil to depot tools (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: added readme Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2012 Amazon.com, Inc. or its affiliates. All Rights Reserved
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the
5 # "Software"), to deal in the Software without restriction, including
6 # without limitation the rights to use, copy, modify, merge, publish, dis-
7 # tribute, sublicense, and/or sell copies of the Software, and to permit
8 # persons to whom the Software is furnished to do so, subject to the fol-
9 # lowing conditions:
10 #
11 # The above copyright notice and this permission notice shall be included
12 # in all copies or substantial portions of the Software.
13 #
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
16 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
17 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 # IN THE SOFTWARE.
21 #
22 import time
23 import logging
24 from hashlib import sha256
25 from tests.unit import unittest
26
27 from boto.glacier.utils import minimum_part_size, chunk_hashes, tree_hash, \
28 bytes_to_hex
29
30
31 class TestPartSizeCalculations(unittest.TestCase):
32 def test_small_values_still_use_default_part_size(self):
33 self.assertEqual(minimum_part_size(1), 4 * 1024 * 1024)
34
35 def test_under_the_maximum_value(self):
36 # If we're under the maximum, we can use 4MB part sizes.
37 self.assertEqual(minimum_part_size(8 * 1024 * 1024),
38 4 * 1024 * 1024)
39
40 def test_gigabyte_size(self):
41 # If we're over the maximum default part size, we go up to the next
42 # power of two until we find a part size that keeps us under 10,000
43 # parts.
44 self.assertEqual(minimum_part_size(8 * 1024 * 1024 * 10000),
45 8 * 1024 * 1024)
46
47 def test_terabyte_size(self):
48 # For a 4 TB file we need at least a 512 MB part size.
49 self.assertEqual(minimum_part_size(4 * 1024 * 1024 * 1024 * 1024),
50 512 * 1024 * 1024)
51
52 def test_file_size_too_large(self):
53 with self.assertRaises(ValueError):
54 minimum_part_size((40000 * 1024 * 1024 * 1024) + 1)
55
56 def test_default_part_size_can_be_specified(self):
57 default_part_size = 2 * 1024 * 1024
58 self.assertEqual(minimum_part_size(8 * 1024 * 1024, default_part_size),
59 default_part_size)
60
61
62 class TestChunking(unittest.TestCase):
63 def test_chunk_hashes_exact(self):
64 chunks = chunk_hashes('a' * (2 * 1024 * 1024))
65 self.assertEqual(len(chunks), 2)
66 self.assertEqual(chunks[0], sha256('a' * 1024 * 1024).digest())
67
68 def test_chunks_with_leftovers(self):
69 bytestring = 'a' * (2 * 1024 * 1024 + 20)
70 chunks = chunk_hashes(bytestring)
71 self.assertEqual(len(chunks), 3)
72 self.assertEqual(chunks[0], sha256('a' * 1024 * 1024).digest())
73 self.assertEqual(chunks[1], sha256('a' * 1024 * 1024).digest())
74 self.assertEqual(chunks[2], sha256('a' * 20).digest())
75
76 def test_less_than_one_chunk(self):
77 chunks = chunk_hashes('aaaa')
78 self.assertEqual(len(chunks), 1)
79 self.assertEqual(chunks[0], sha256('aaaa').digest())
80
81
82 class TestTreeHash(unittest.TestCase):
83 # For these tests, a set of reference tree hashes were computed.
84 # This will at least catch any regressions to the tree hash
85 # calculations.
86 def calculate_tree_hash(self, bytestring):
87 start = time.time()
88 calculated = bytes_to_hex(tree_hash(chunk_hashes(bytestring)))
89 end = time.time()
90 logging.debug("Tree hash calc time for length %s: %s",
91 len(bytestring), end - start)
92 return calculated
93
94 def test_tree_hash_calculations(self):
95 one_meg_bytestring = 'a' * (1 * 1024 * 1024)
96 two_meg_bytestring = 'a' * (2 * 1024 * 1024)
97 four_meg_bytestring = 'a' * (4 * 1024 * 1024)
98 bigger_bytestring = four_meg_bytestring + 'a' * 20
99
100 self.assertEqual(
101 self.calculate_tree_hash(one_meg_bytestring),
102 '9bc1b2a288b26af7257a36277ae3816a7d4f16e89c1e7e77d0a5c48bad62b360')
103 self.assertEqual(
104 self.calculate_tree_hash(two_meg_bytestring),
105 '560c2c9333c719cb00cfdffee3ba293db17f58743cdd1f7e4055373ae6300afa')
106 self.assertEqual(
107 self.calculate_tree_hash(four_meg_bytestring),
108 '9491cb2ed1d4e7cd53215f4017c23ec4ad21d7050a1e6bb636c4f67e8cddb844')
109 self.assertEqual(
110 self.calculate_tree_hash(bigger_bytestring),
111 '12f3cbd6101b981cde074039f6f728071da8879d6f632de8afc7cdf00661b08f')
112
113 def test_empty_tree_hash(self):
114 self.assertEqual(
115 self.calculate_tree_hash(''),
116 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698