| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 | 2 |
| 3 """Tests for gs_utils.py. | 3 """Tests for gs_utils.py. |
| 4 | 4 |
| 5 TODO(epoger): How should we exercise these self-tests? See http://skbug.com/2751 | 5 TODO(epoger): How should we exercise these self-tests? See http://skbug.com/2751 |
| 6 """ | 6 """ |
| 7 | 7 |
| 8 # System-level imports. | 8 # System-level imports. |
| 9 import os | 9 import os |
| 10 import posixpath | 10 import posixpath |
| 11 import random | 11 import random |
| 12 import shutil | 12 import shutil |
| 13 import sys | 13 import sys |
| 14 import tempfile | 14 import tempfile |
| 15 | 15 |
| 16 # Local imports. | 16 # Local imports. |
| 17 import gs_utils | 17 import gs_utils |
| 18 | 18 |
| 19 TEST_BUCKET = 'chromium-skia-testing' |
| 20 |
| 21 |
| 22 def _get_authenticated_gs_handle(): |
| 23 """Returns an instance of GSUtils using ~/.boto for authentication.""" |
| 24 try: |
| 25 return gs_utils.GSUtils( |
| 26 boto_file_path=os.path.expanduser(os.path.join('~','.boto'))) |
| 27 except: |
| 28 print """ |
| 29 Failed to instantiate GSUtils object with default .boto file path. |
| 30 Do you have a ~/.boto file that provides the credentials needed to write |
| 31 into gs://%s? |
| 32 """ % TEST_BUCKET |
| 33 raise |
| 34 |
| 35 |
| 36 def _get_unique_posix_dir(): |
| 37 """Returns a unique directory name suitable for use in Google Storage.""" |
| 38 return 'gs_utils_manualtest/%d' % random.randint(0, sys.maxint) |
| 39 |
| 19 | 40 |
| 20 def _test_public_read(): | 41 def _test_public_read(): |
| 21 """Make sure we can read from public files without .boto file credentials.""" | 42 """Make sure we can read from public files without .boto file credentials.""" |
| 22 gs = gs_utils.GSUtils() | 43 gs = gs_utils.GSUtils() |
| 23 gs.list_bucket_contents(bucket='chromium-skia-gm-summaries', subdir=None) | 44 gs.list_bucket_contents(bucket=TEST_BUCKET, subdir=None) |
| 24 | 45 |
| 25 | 46 |
| 26 def _test_authenticated_round_trip(): | 47 def _test_authenticated_round_trip(): |
| 27 try: | 48 gs = _get_authenticated_gs_handle() |
| 28 gs = gs_utils.GSUtils( | 49 remote_dir = _get_unique_posix_dir() |
| 29 boto_file_path=os.path.expanduser(os.path.join('~','.boto'))) | |
| 30 except: | |
| 31 print """ | |
| 32 Failed to instantiate GSUtils object with default .boto file path. | |
| 33 Do you have a ~/.boto file that provides the credentials needed to read | |
| 34 and write gs://chromium-skia-gm ? | |
| 35 """ | |
| 36 raise | |
| 37 | |
| 38 bucket = 'chromium-skia-gm' | |
| 39 remote_dir = 'gs_utils_test/%d' % random.randint(0, sys.maxint) | |
| 40 subdir = 'subdir' | 50 subdir = 'subdir' |
| 41 filenames_to_upload = ['file1', 'file2'] | 51 filenames_to_upload = ['file1', 'file2'] |
| 42 | 52 |
| 43 # Upload test files to Google Storage, checking that their fine-grained | 53 # Upload test files to Google Storage, checking that their fine-grained |
| 44 # ACLs were set correctly. | 54 # ACLs were set correctly. |
| 45 id_type = gs.IdType.GROUP_BY_DOMAIN | 55 id_type = gs.IdType.GROUP_BY_DOMAIN |
| 46 id_value = 'chromium.org' | 56 id_value = 'chromium.org' |
| 47 set_permission = gs.Permission.READ | 57 set_permission = gs.Permission.READ |
| 48 local_src_dir = tempfile.mkdtemp() | 58 local_src_dir = tempfile.mkdtemp() |
| 49 os.mkdir(os.path.join(local_src_dir, subdir)) | 59 os.mkdir(os.path.join(local_src_dir, subdir)) |
| 50 try: | 60 try: |
| 51 for filename in filenames_to_upload: | 61 for filename in filenames_to_upload: |
| 52 with open(os.path.join(local_src_dir, subdir, filename), 'w') as f: | 62 with open(os.path.join(local_src_dir, subdir, filename), 'w') as f: |
| 53 f.write('contents of %s\n' % filename) | 63 f.write('contents of %s\n' % filename) |
| 54 dest_path = posixpath.join(remote_dir, subdir, filename) | 64 dest_path = posixpath.join(remote_dir, subdir, filename) |
| 55 gs.upload_file( | 65 gs.upload_file( |
| 56 source_path=os.path.join(local_src_dir, subdir, filename), | 66 source_path=os.path.join(local_src_dir, subdir, filename), |
| 57 dest_bucket=bucket, dest_path=dest_path, | 67 dest_bucket=TEST_BUCKET, dest_path=dest_path, |
| 58 fine_grained_acl_list=[(id_type, id_value, set_permission)]) | 68 fine_grained_acl_list=[(id_type, id_value, set_permission)]) |
| 59 got_permission = gs.get_acl(bucket=bucket, path=dest_path, | 69 got_permission = gs.get_acl(bucket=TEST_BUCKET, path=dest_path, |
| 60 id_type=id_type, id_value=id_value) | 70 id_type=id_type, id_value=id_value) |
| 61 assert got_permission == set_permission, '%s == %s' % ( | 71 assert got_permission == set_permission, '%s == %s' % ( |
| 62 got_permission, set_permission) | 72 got_permission, set_permission) |
| 63 finally: | 73 finally: |
| 64 shutil.rmtree(local_src_dir) | 74 shutil.rmtree(local_src_dir) |
| 65 | 75 |
| 66 # Get a list of the files we uploaded to Google Storage. | 76 # Get a list of the files we uploaded to Google Storage. |
| 67 (dirs, files) = gs.list_bucket_contents( | 77 (dirs, files) = gs.list_bucket_contents( |
| 68 bucket=bucket, subdir=remote_dir) | 78 bucket=TEST_BUCKET, subdir=remote_dir) |
| 69 assert dirs == [subdir], '%s == [%s]' % (dirs, subdir) | 79 assert dirs == [subdir], '%s == [%s]' % (dirs, subdir) |
| 70 assert files == [], '%s == []' % files | 80 assert files == [], '%s == []' % files |
| 71 (dirs, files) = gs.list_bucket_contents( | 81 (dirs, files) = gs.list_bucket_contents( |
| 72 bucket=bucket, subdir=posixpath.join(remote_dir, subdir)) | 82 bucket=TEST_BUCKET, subdir=posixpath.join(remote_dir, subdir)) |
| 73 assert dirs == [], '%s == []' % dirs | 83 assert dirs == [], '%s == []' % dirs |
| 74 assert files == filenames_to_upload, '%s == %s' % (files, filenames_to_upload) | 84 assert files == filenames_to_upload, '%s == %s' % (files, filenames_to_upload) |
| 75 | 85 |
| 76 # Manipulate ACLs on one of those files, and verify them. | 86 # Manipulate ACLs on one of those files, and verify them. |
| 77 # TODO(epoger): Test IdTypes other than GROUP_BY_DOMAIN ? | 87 # TODO(epoger): Test IdTypes other than GROUP_BY_DOMAIN ? |
| 78 # TODO(epoger): Test setting multiple ACLs on the same file? | 88 # TODO(epoger): Test setting multiple ACLs on the same file? |
| 79 id_type = gs.IdType.GROUP_BY_DOMAIN | 89 id_type = gs.IdType.GROUP_BY_DOMAIN |
| 80 id_value = 'google.com' | 90 id_value = 'google.com' |
| 81 fullpath = posixpath.join(remote_dir, subdir, filenames_to_upload[0]) | 91 fullpath = posixpath.join(remote_dir, subdir, filenames_to_upload[0]) |
| 82 # Make sure ACL is empty to start with ... | 92 # Make sure ACL is empty to start with ... |
| 83 gs.set_acl(bucket=bucket, path=fullpath, | 93 gs.set_acl(bucket=TEST_BUCKET, path=fullpath, |
| 84 id_type=id_type, id_value=id_value, permission=gs.Permission.EMPTY) | 94 id_type=id_type, id_value=id_value, permission=gs.Permission.EMPTY) |
| 85 permission = gs.get_acl(bucket=bucket, path=fullpath, | 95 permission = gs.get_acl(bucket=TEST_BUCKET, path=fullpath, |
| 86 id_type=id_type, id_value=id_value) | 96 id_type=id_type, id_value=id_value) |
| 87 assert permission == gs.Permission.EMPTY, '%s == %s' % ( | 97 assert permission == gs.Permission.EMPTY, '%s == %s' % ( |
| 88 permission, gs.Permission.EMPTY) | 98 permission, gs.Permission.EMPTY) |
| 89 # ... set it to OWNER ... | 99 # ... set it to OWNER ... |
| 90 gs.set_acl(bucket=bucket, path=fullpath, | 100 gs.set_acl(bucket=TEST_BUCKET, path=fullpath, |
| 91 id_type=id_type, id_value=id_value, permission=gs.Permission.OWNER) | 101 id_type=id_type, id_value=id_value, permission=gs.Permission.OWNER) |
| 92 permission = gs.get_acl(bucket=bucket, path=fullpath, | 102 permission = gs.get_acl(bucket=TEST_BUCKET, path=fullpath, |
| 93 id_type=id_type, id_value=id_value) | 103 id_type=id_type, id_value=id_value) |
| 94 assert permission == gs.Permission.OWNER, '%s == %s' % ( | 104 assert permission == gs.Permission.OWNER, '%s == %s' % ( |
| 95 permission, gs.Permission.OWNER) | 105 permission, gs.Permission.OWNER) |
| 96 # ... now set it to READ ... | 106 # ... now set it to READ ... |
| 97 gs.set_acl(bucket=bucket, path=fullpath, | 107 gs.set_acl(bucket=TEST_BUCKET, path=fullpath, |
| 98 id_type=id_type, id_value=id_value, permission=gs.Permission.READ) | 108 id_type=id_type, id_value=id_value, permission=gs.Permission.READ) |
| 99 permission = gs.get_acl(bucket=bucket, path=fullpath, | 109 permission = gs.get_acl(bucket=TEST_BUCKET, path=fullpath, |
| 100 id_type=id_type, id_value=id_value) | 110 id_type=id_type, id_value=id_value) |
| 101 assert permission == gs.Permission.READ, '%s == %s' % ( | 111 assert permission == gs.Permission.READ, '%s == %s' % ( |
| 102 permission, gs.Permission.READ) | 112 permission, gs.Permission.READ) |
| 103 # ... and clear it again to finish. | 113 # ... and clear it again to finish. |
| 104 gs.set_acl(bucket=bucket, path=fullpath, | 114 gs.set_acl(bucket=TEST_BUCKET, path=fullpath, |
| 105 id_type=id_type, id_value=id_value, permission=gs.Permission.EMPTY) | 115 id_type=id_type, id_value=id_value, permission=gs.Permission.EMPTY) |
| 106 permission = gs.get_acl(bucket=bucket, path=fullpath, | 116 permission = gs.get_acl(bucket=TEST_BUCKET, path=fullpath, |
| 107 id_type=id_type, id_value=id_value) | 117 id_type=id_type, id_value=id_value) |
| 108 assert permission == gs.Permission.EMPTY, '%s == %s' % ( | 118 assert permission == gs.Permission.EMPTY, '%s == %s' % ( |
| 109 permission, gs.Permission.EMPTY) | 119 permission, gs.Permission.EMPTY) |
| 110 | 120 |
| 111 # Download the files we uploaded to Google Storage, and validate contents. | 121 # Download the files we uploaded to Google Storage, and validate contents. |
| 112 local_dest_dir = tempfile.mkdtemp() | 122 local_dest_dir = tempfile.mkdtemp() |
| 113 try: | 123 try: |
| 114 for filename in filenames_to_upload: | 124 for filename in filenames_to_upload: |
| 115 gs.download_file(source_bucket=bucket, | 125 gs.download_file(source_bucket=TEST_BUCKET, |
| 116 source_path=posixpath.join(remote_dir, subdir, filename), | 126 source_path=posixpath.join(remote_dir, subdir, filename), |
| 117 dest_path=os.path.join(local_dest_dir, subdir, filename), | 127 dest_path=os.path.join(local_dest_dir, subdir, filename), |
| 118 create_subdirs_if_needed=True) | 128 create_subdirs_if_needed=True) |
| 119 with open(os.path.join(local_dest_dir, subdir, filename)) as f: | 129 with open(os.path.join(local_dest_dir, subdir, filename)) as f: |
| 120 file_contents = f.read() | 130 file_contents = f.read() |
| 121 assert file_contents == 'contents of %s\n' % filename, ( | 131 assert file_contents == 'contents of %s\n' % filename, ( |
| 122 '%s == "contents of %s\n"' % (file_contents, filename)) | 132 '%s == "contents of %s\n"' % (file_contents, filename)) |
| 123 finally: | 133 finally: |
| 124 shutil.rmtree(local_dest_dir) | 134 shutil.rmtree(local_dest_dir) |
| 125 | 135 |
| 126 # Delete all the files we uploaded to Google Storage. | 136 # Delete all the files we uploaded to Google Storage. |
| 127 for filename in filenames_to_upload: | 137 for filename in filenames_to_upload: |
| 128 gs.delete_file(bucket=bucket, | 138 gs.delete_file(bucket=TEST_BUCKET, |
| 129 path=posixpath.join(remote_dir, subdir, filename)) | 139 path=posixpath.join(remote_dir, subdir, filename)) |
| 130 | 140 |
| 131 # Confirm that we deleted all the files we uploaded to Google Storage. | 141 # Confirm that we deleted all the files we uploaded to Google Storage. |
| 132 (dirs, files) = gs.list_bucket_contents( | 142 (dirs, files) = gs.list_bucket_contents( |
| 133 bucket=bucket, subdir=posixpath.join(remote_dir, subdir)) | 143 bucket=TEST_BUCKET, subdir=posixpath.join(remote_dir, subdir)) |
| 134 assert dirs == [], '%s == []' % dirs | 144 assert dirs == [], '%s == []' % dirs |
| 135 assert files == [], '%s == []' % files | 145 assert files == [], '%s == []' % files |
| 136 | 146 |
| 137 | 147 |
| 138 def _test_dir_upload_and_download(): | 148 def _test_dir_upload_and_download(): |
| 139 """Test upload_dir_contents() and download_dir_contents().""" | 149 """Test upload_dir_contents() and download_dir_contents().""" |
| 140 try: | 150 gs = _get_authenticated_gs_handle() |
| 141 gs = gs_utils.GSUtils( | 151 remote_dir = _get_unique_posix_dir() |
| 142 boto_file_path=os.path.expanduser(os.path.join('~','.boto'))) | |
| 143 except: | |
| 144 print """ | |
| 145 Failed to instantiate GSUtils object with default .boto file path. | |
| 146 Do you have a ~/.boto file that provides the credentials needed to read | |
| 147 and write gs://chromium-skia-gm ? | |
| 148 """ | |
| 149 raise | |
| 150 | |
| 151 bucket = 'chromium-skia-gm' | |
| 152 remote_dir = 'gs_utils_test/%d' % random.randint(0, sys.maxint) | |
| 153 subdir = 'subdir' | 152 subdir = 'subdir' |
| 154 filenames = ['file1', 'file2'] | 153 filenames = ['file1', 'file2'] |
| 155 | 154 |
| 156 # Create directory tree on local disk and upload it. | 155 # Create directory tree on local disk and upload it. |
| 157 id_type = gs.IdType.GROUP_BY_DOMAIN | 156 id_type = gs.IdType.GROUP_BY_DOMAIN |
| 158 id_value = 'chromium.org' | 157 id_value = 'chromium.org' |
| 159 set_permission = gs.Permission.READ | 158 set_permission = gs.Permission.READ |
| 160 local_src_dir = tempfile.mkdtemp() | 159 local_src_dir = tempfile.mkdtemp() |
| 161 os.mkdir(os.path.join(local_src_dir, subdir)) | 160 os.mkdir(os.path.join(local_src_dir, subdir)) |
| 162 try: | 161 try: |
| 163 for filename in filenames: | 162 for filename in filenames: |
| 164 with open(os.path.join(local_src_dir, subdir, filename), 'w') as f: | 163 with open(os.path.join(local_src_dir, subdir, filename), 'w') as f: |
| 165 f.write('contents of %s\n' % filename) | 164 f.write('contents of %s\n' % filename) |
| 166 gs.upload_dir_contents( | 165 gs.upload_dir_contents( |
| 167 source_dir=local_src_dir, dest_bucket=bucket, dest_dir=remote_dir, | 166 source_dir=local_src_dir, dest_bucket=TEST_BUCKET, dest_dir=remote_dir, |
| 168 predefined_acl=gs.PredefinedACL.PRIVATE, | 167 predefined_acl=gs.PredefinedACL.PRIVATE, |
| 169 fine_grained_acl_list=[(id_type, id_value, set_permission)]) | 168 fine_grained_acl_list=[(id_type, id_value, set_permission)]) |
| 170 finally: | 169 finally: |
| 171 shutil.rmtree(local_src_dir) | 170 shutil.rmtree(local_src_dir) |
| 172 | 171 |
| 173 # Validate the list of the files we uploaded to Google Storage. | 172 # Validate the list of the files we uploaded to Google Storage. |
| 174 (dirs, files) = gs.list_bucket_contents( | 173 (dirs, files) = gs.list_bucket_contents( |
| 175 bucket=bucket, subdir=remote_dir) | 174 bucket=TEST_BUCKET, subdir=remote_dir) |
| 176 assert dirs == [subdir], '%s == [%s]' % (dirs, subdir) | 175 assert dirs == [subdir], '%s == [%s]' % (dirs, subdir) |
| 177 assert files == [], '%s == []' % files | 176 assert files == [], '%s == []' % files |
| 178 (dirs, files) = gs.list_bucket_contents( | 177 (dirs, files) = gs.list_bucket_contents( |
| 179 bucket=bucket, subdir=posixpath.join(remote_dir, subdir)) | 178 bucket=TEST_BUCKET, subdir=posixpath.join(remote_dir, subdir)) |
| 180 assert dirs == [], '%s == []' % dirs | 179 assert dirs == [], '%s == []' % dirs |
| 181 assert files == filenames, '%s == %s' % (files, filenames) | 180 assert files == filenames, '%s == %s' % (files, filenames) |
| 182 | 181 |
| 183 # Check the fine-grained ACLs we set in Google Storage. | 182 # Check the fine-grained ACLs we set in Google Storage. |
| 184 for filename in filenames: | 183 for filename in filenames: |
| 185 got_permission = gs.get_acl( | 184 got_permission = gs.get_acl( |
| 186 bucket=bucket, path=posixpath.join(remote_dir, subdir, filename), | 185 bucket=TEST_BUCKET, path=posixpath.join(remote_dir, subdir, filename), |
| 187 id_type=id_type, id_value=id_value) | 186 id_type=id_type, id_value=id_value) |
| 188 assert got_permission == set_permission, '%s == %s' % ( | 187 assert got_permission == set_permission, '%s == %s' % ( |
| 189 got_permission, set_permission) | 188 got_permission, set_permission) |
| 190 | 189 |
| 191 # Download the directory tree we just uploaded, make sure its contents | 190 # Download the directory tree we just uploaded, make sure its contents |
| 192 # are what we expect, and then delete the tree in Google Storage. | 191 # are what we expect, and then delete the tree in Google Storage. |
| 193 local_dest_dir = tempfile.mkdtemp() | 192 local_dest_dir = tempfile.mkdtemp() |
| 194 try: | 193 try: |
| 195 gs.download_dir_contents(source_bucket=bucket, source_dir=remote_dir, | 194 gs.download_dir_contents(source_bucket=TEST_BUCKET, source_dir=remote_dir, |
| 196 dest_dir=local_dest_dir) | 195 dest_dir=local_dest_dir) |
| 197 for filename in filenames: | 196 for filename in filenames: |
| 198 with open(os.path.join(local_dest_dir, subdir, filename)) as f: | 197 with open(os.path.join(local_dest_dir, subdir, filename)) as f: |
| 199 file_contents = f.read() | 198 file_contents = f.read() |
| 200 assert file_contents == 'contents of %s\n' % filename, ( | 199 assert file_contents == 'contents of %s\n' % filename, ( |
| 201 '%s == "contents of %s\n"' % (file_contents, filename)) | 200 '%s == "contents of %s\n"' % (file_contents, filename)) |
| 202 finally: | 201 finally: |
| 203 shutil.rmtree(local_dest_dir) | 202 shutil.rmtree(local_dest_dir) |
| 204 for filename in filenames: | 203 for filename in filenames: |
| 205 gs.delete_file(bucket=bucket, | 204 gs.delete_file(bucket=TEST_BUCKET, |
| 206 path=posixpath.join(remote_dir, subdir, filename)) | 205 path=posixpath.join(remote_dir, subdir, filename)) |
| 207 | 206 |
| 208 | 207 |
| 209 if __name__ == '__main__': | 208 if __name__ == '__main__': |
| 210 _test_public_read() | 209 _test_public_read() |
| 211 _test_authenticated_round_trip() | 210 _test_authenticated_round_trip() |
| 212 _test_dir_upload_and_download() | 211 _test_dir_upload_and_download() |
| 213 # TODO(epoger): Add _test_unauthenticated_access() to make sure we raise | 212 # TODO(epoger): Add _test_unauthenticated_access() to make sure we raise |
| 214 # an exception when we try to access without needed credentials. | 213 # an exception when we try to access without needed credentials. |
| OLD | NEW |